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

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE4KzA1JTNBNDMlM0EwOC4xMDgzMDIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xOCswNSUzQTQ3JTNBNTkuNjM2MTA2JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-18T05:47:59.636106Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~um22/15.embed",
            "fid": "um22:15",
            "filename": "plot from API (7)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/um22:15/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/um22:15/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/um22:15/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/um22:15/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/um22:15",
                "plots": "https://api.plotly.com/v2/plots/um22:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=um22"
            },
            "owner": "um22",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Icecube",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~um22/15/icecube/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:48:00.288Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~um22/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "807de389-2017-4a77-9037-547a6852ede5",
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "um22:16:d1b1e1",
                        "ysrc": "um22:16:994ff6",
                        "zsrc": "um22:16:94aa54",
                        "marker": {
                            "size": 3
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Icecube"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~um22",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.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": "2018-10-07 13:54:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "um22",
                "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-18T05:47:31.112482Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~drseankim/4.embed",
            "fid": "drseankim:4",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/drseankim:4/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/drseankim:4/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/drseankim:4/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/drseankim:4/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/drseankim:4",
                "plots": "https://api.plotly.com/v2/plots/drseankim:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=drseankim"
            },
            "owner": "drseankim",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time series with range slider and selectors",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~drseankim/4/time-series-with-range-slider-and-selectors/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:47:31.733Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~drseankim/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "8e5e3d86-918c-11e9-9a40-8c85908a41d6",
                        "type": "scatter",
                        "xsrc": "drseankim:5:a9d588",
                        "ysrc": "drseankim:5:2e5b52"
                    }
                ],
                "layout": {
                    "title": "Time series with range slider and selectors",
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~drseankim",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/23.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": "2019-06-17 10:26:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "drseankim",
                "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-18T05:47:02.208899Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~babit13/9.embed",
            "fid": "babit13:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/babit13/9/9_1IOEIV25ZJ5GV49MVSA0TV22JZ2VYA.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/babit13/9/2_MI198K9DXGSXEC9WGBOHG980XUJGZA.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/9/8_HYSX2TYDZ9N4YMER1R72P3SFOU5LXU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/9/9_1IOEIV25ZJ5GV49MVSA0TV22JZ2VYA.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/babit13:9",
                "plots": "https://api.plotly.com/v2/plots/babit13:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=babit13"
            },
            "owner": "babit13",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 17,
            "web_url": "https://chart-studio.plotly.com/~babit13/9/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:47:02.223Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~babit13/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "Turnover",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:8:1b2bb2",
                        "ysrc": "babit13:8:d62c9b"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        }
                    },
                    "xaxis": {
                        "type": "date",
                        "range": [
                            "1992-04-01",
                            "1994-03-01"
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            14357.676689959892,
                            18017.055247728167
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~babit13",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "babit13",
                "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-18T05:46:46.453316Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiay123/2.embed",
            "fid": "kiay123:2",
            "filename": "line-mode",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiay123:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kiay123/2/2_P2E4Y60UDYEM3YFBFNMJ1NF6TR8WLB.png",
                "block-thumb": "https://api.plotly.com/v2/files/kiay123:2/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiay123:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiay123:2",
                "plots": "https://api.plotly.com/v2/plots/kiay123:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiay123"
            },
            "owner": "kiay123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Price (ราคา) vs Week (สัปดาห์)",
            "views": 8,
            "web_url": "https://chart-studio.plotly.com/~kiay123/2/price-vs-week/",
            "world_readable": true,
            "date_modified": "2019-06-19T15:41:46.689Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiay123/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b830a5b4-81cd-4963-abfc-bcf67f467131",
                        "mode": "lines",
                        "name": "Q-Shave",
                        "type": "scatter",
                        "xsrc": "kiay123:3:d645ef",
                        "ysrc": "kiay123:3:cefc0f"
                    },
                    {
                        "uid": "4cfacfc8-1c58-49d1-89ba-43afa410c1ac",
                        "mode": "lines",
                        "name": "Gillette Vector",
                        "type": "scatter",
                        "xsrc": "kiay123:3:d645ef",
                        "ysrc": "kiay123:3:c59d1b"
                    },
                    {
                        "uid": "1ed2c4ef-7631-45a9-9bdf-95fac9c41ed8",
                        "mode": "lines",
                        "name": "Philips รุ่น PQ206/18",
                        "type": "scatter",
                        "xsrc": "kiay123:3:d645ef",
                        "ysrc": "kiay123:3:da6ee8"
                    }
                ],
                "layout": {
                    "xaxis": {
                        "title": {
                            "text": "Week (สัปดาห์)"
                        },
                        "showgrid": true,
                        "showline": true,
                        "zeroline": true,
                        "gridcolor": "#B7B7B7"
                    },
                    "yaxis": {
                        "title": {
                            "text": "Price (ราคา)"
                        },
                        "showgrid": true,
                        "showline": true,
                        "zeroline": true,
                        "gridcolor": "#B7B7B7"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiay123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-18 05:44:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiay123",
                "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-18T05:46:23.583163Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~sougatGanguly/1.embed",
            "fid": "sougatGanguly:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/sougatGanguly:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/sougatGanguly:1/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/sougatGanguly:1/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/sougatGanguly:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/sougatGanguly:1",
                "plots": "https://api.plotly.com/v2/plots/sougatGanguly:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=sougatGanguly"
            },
            "owner": "sougatGanguly",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~sougatGanguly/1/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:46:23.602Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~sougatGanguly/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "markers",
                        "type": "scatter3d",
                        "xsrc": "sougatGanguly:0:c1381c",
                        "ysrc": "sougatGanguly:0:50f431",
                        "zsrc": "sougatGanguly:0:b103dc"
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.6797804782330207,
                                "y": 2.7106388809807775,
                                "z": 2.4765510400481205
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            26.722473604826547,
                            86.27752639517345
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            -28.18081343943413,
                            333.18081343943413
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~sougatGanguly",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.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-18 05:29:33",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "sougatGanguly",
                "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-18T05:45:46.760885Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kiay123/0.embed",
            "fid": "kiay123:0",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/kiay123:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/kiay123:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/kiay123:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/kiay123:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kiay123:0",
                "plots": "https://api.plotly.com/v2/plots/kiay123:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=kiay123"
            },
            "owner": "kiay123",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kiay123/0/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:45:47.296Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kiay123/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a039888e-335c-4790-ba51-13b1053dc1f1",
                        "type": "scatter",
                        "xsrc": "kiay123:1:ae45a9",
                        "ysrc": "kiay123:1:2e877c"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kiay123",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/51.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-18 05:44:22",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kiay123",
                "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-18T05:45:42.425565Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~30417009/2.embed",
            "fid": "30417009:2",
            "filename": "Plot 2",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/30417009:2/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/30417009/2/2_VRQVVUZ1R5789PU26Z9XJQRXZSQD41.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/30417009/2/8_JZYUU1ZBAAO9ZZKYQEWQASSEIBYAAV.png",
                "list-thumb": "https://api.plotly.com/v2/files/30417009:2/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/30417009:2",
                "plots": "https://api.plotly.com/v2/plots/30417009:2",
                "parent": "https://api.plotly.com/v2/folders/home?user=30417009"
            },
            "owner": "30417009",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 21,
            "web_url": "https://chart-studio.plotly.com/~30417009/2/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:45:42.440Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~30417009/2/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c5f257",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(104,226,86,0.2)",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "catboost_info;test;0;;;;;;",
                        "xsrc": "30417009:1:0d83b3",
                        "ysrc": "30417009:1:356e68",
                        "hoveron": "points",
                        "visible": true,
                        "hoverinfo": "skip",
                        "connectgaps": true,
                        "hovertextsrc": "30417009:1:a1fe4f"
                    },
                    {
                        "uid": "8868e6",
                        "line": {
                            "dash": "solid",
                            "color": "rgba(104,226,86,1)",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "catboost_info;test;0;smoothed;;;;;",
                        "xsrc": "30417009:1:0d83b3",
                        "ysrc": "30417009:1:a6276a",
                        "hoveron": "points",
                        "visible": true,
                        "hoverinfo": "text+x",
                        "connectgaps": true,
                        "hovertextsrc": "30417009:1:c913a5"
                    },
                    {
                        "uid": "3497ab",
                        "mode": "markers",
                        "name": "catboost_info;test;0;;best_pount;;;;",
                        "type": "scatter",
                        "xsrc": "30417009:1:3e798e",
                        "ysrc": "30417009:1:0afe63",
                        "marker": {
                            "color": "rgba(104,226,86,1)",
                            "width": 2
                        },
                        "visible": true,
                        "hoverinfo": "text",
                        "hovertextsrc": "30417009:1:8dc564"
                    },
                    {
                        "uid": "061568",
                        "line": {
                            "dash": "dot",
                            "color": "rgba(104,226,86,0.2)",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "catboost_info;learn;0;;;;;;",
                        "xsrc": "30417009:1:0d83b3",
                        "ysrc": "30417009:1:14210f",
                        "hoveron": "points",
                        "visible": true,
                        "hoverinfo": "skip",
                        "connectgaps": true,
                        "hovertextsrc": "30417009:1:087d8f"
                    },
                    {
                        "uid": "1a547a",
                        "line": {
                            "dash": "dot",
                            "color": "rgba(104,226,86,1)",
                            "width": 1
                        },
                        "mode": "lines",
                        "name": "catboost_info;learn;0;smoothed;;;;;",
                        "xsrc": "30417009:1:0d83b3",
                        "ysrc": "30417009:1:6199f5",
                        "hoveron": "points",
                        "visible": true,
                        "hoverinfo": "text+x",
                        "connectgaps": true,
                        "hovertextsrc": "30417009:1:276d6d"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            100
                        ],
                        "showgrid": false,
                        "tickmode": "auto",
                        "zeroline": false,
                        "spikedash": "longdashdot",
                        "spikemode": "across",
                        "showspikes": true,
                        "spikethickness": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.9172113290277778,
                            1.0043572984722222
                        ],
                        "zeroline": false,
                        "autorange": true
                    },
                    "margin": {
                        "b": 30,
                        "l": 38,
                        "r": 0,
                        "t": 35
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#506784"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#2a3f5f"
                                        },
                                        "line": {
                                            "color": "rgb(17,17,17)"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    },
                                    "baxis": {
                                        "gridcolor": "#506784",
                                        "linecolor": "#506784",
                                        "endlinecolor": "#A2B1C6",
                                        "minorgridcolor": "#506784",
                                        "startlinecolor": "#A2B1C6"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "rgb(17,17,17)",
                                "showland": true,
                                "lakecolor": "rgb(17,17,17)",
                                "landcolor": "rgb(17,17,17)",
                                "showlakes": true,
                                "subunitcolor": "#506784"
                            },
                            "font": {
                                "color": "#f2f5fa"
                            },
                            "polar": {
                                "bgcolor": "rgb(17,17,17)",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "gridwidth": 2,
                                    "linecolor": "#506784",
                                    "zerolinecolor": "#C8D4E3",
                                    "showbackground": true,
                                    "backgroundcolor": "rgb(17,17,17)"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#283442",
                                "linecolor": "#506784",
                                "automargin": true,
                                "zerolinecolor": "#283442",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#506784",
                                    "linecolor": "#506784"
                                },
                                "bgcolor": "rgb(17,17,17)"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "rgb(17,17,17)",
                            "paper_bgcolor": "rgb(17,17,17)",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#f2f5fa"
                            },
                            "sliderdefaults": {
                                "bgcolor": "#C8D4E3",
                                "tickwidth": 0,
                                "bordercolor": "rgb(17,17,17)",
                                "borderwidth": 1
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#f2f5fa",
                                "arrowwidth": 1
                            },
                            "updatemenudefaults": {
                                "bgcolor": "#506784",
                                "borderwidth": 0
                            }
                        },
                        "themeRef": "PLOTLY_DARK"
                    },
                    "separators": ". ",
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~30417009",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/20.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 02:50:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "30417009",
                "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-18T05:45:34.165668Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~surpass1988/10.embed",
            "fid": "surpass1988:10",
            "filename": "facet by col",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/surpass1988:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/surpass1988:10/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/surpass1988:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/surpass1988:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/surpass1988:10",
                "plots": "https://api.plotly.com/v2/plots/surpass1988:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=surpass1988"
            },
            "owner": "surpass1988",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~surpass1988/10/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:47:13.340Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~surpass1988/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "63e18ba3-4e98-4f8c-afeb-c8369cb49bba",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:03d2e2",
                        "ysrc": "surpass1988:11:ae942d",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    },
                    {
                        "uid": "4876d631-1196-42c6-b9e1-9141921aa00e",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:217416",
                        "ysrc": "surpass1988:11:ae942d",
                        "xaxis": "x",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    },
                    {
                        "uid": "f0df34f6-6d0b-42e1-a03d-10b4ace73101",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:c8a820",
                        "ysrc": "surpass1988:11:ae942d",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    },
                    {
                        "uid": "c2d5694a-8294-4501-84e8-5a51d7d37930",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:399b68",
                        "ysrc": "surpass1988:11:ae942d",
                        "xaxis": "x",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    },
                    {
                        "uid": "38ac918d-272d-4443-9a36-1c1d9d14c25d",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:4daf6f",
                        "ysrc": "surpass1988:11:6cfb79",
                        "xaxis": "x",
                        "yaxis": "y5",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    },
                    {
                        "uid": "83eaefbe-d1c9-4c89-8cb7-fbf158b7bd6c",
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "surpass1988:11:64d8be",
                        "ysrc": "surpass1988:11:6f83b8",
                        "xaxis": "x",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "color": "darkgrey",
                                "width": 1
                            },
                            "size": 8,
                            "color": "rgb(31, 119, 180)"
                        },
                        "opacity": 0.6
                    }
                ],
                "layout": {
                    "title": {
                        "text": ""
                    },
                    "width": 600,
                    "xaxis": {
                        "dtick": 1,
                        "anchor": "y6",
                        "domain": [
                            0.0,
                            1.0
                        ],
                        "ticklen": 0,
                        "zeroline": false
                    },
                    "yaxis": {
                        "dtick": 1,
                        "anchor": "free",
                        "domain": [
                            0.8458333333333333,
                            1.0
                        ],
                        "ticklen": 0,
                        "position": 0.0,
                        "zeroline": false
                    },
                    "height": 600,
                    "legend": {
                        "x": 1.05,
                        "y": 1,
                        "bgcolor": "#efefef",
                        "yanchor": "top",
                        "borderwidth": 1
                    },
                    "yaxis2": {
                        "dtick": 1,
                        "anchor": "free",
                        "domain": [
                            0.6766666666666667,
                            0.8308333333333334
                        ],
                        "ticklen": 0,
                        "position": 0.0,
                        "zeroline": false
                    },
                    "yaxis3": {
                        "dtick": 1,
                        "anchor": "free",
                        "domain": [
                            0.5075000000000001,
                            0.6616666666666667
                        ],
                        "ticklen": 0,
                        "position": 0.0,
                        "zeroline": false
                    },
                    "yaxis4": {
                        "dtick": 1,
                        "anchor": "free",
                        "domain": [
                            0.3383333333333334,
                            0.49250000000000005
                        ],
                        "ticklen": 0,
                        "position": 0.0,
                        "zeroline": false
                    },
                    "yaxis5": {
                        "dtick": 1,
                        "anchor": "free",
                        "domain": [
                            0.1691666666666667,
                            0.32333333333333336
                        ],
                        "ticklen": 0,
                        "position": 0.0,
                        "zeroline": false
                    },
                    "yaxis6": {
                        "dtick": 1,
                        "anchor": "x",
                        "domain": [
                            0.0,
                            0.15416666666666667
                        ],
                        "ticklen": 0,
                        "zeroline": false
                    },
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 1.03,
                            "y": 0.9229166666666668,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-22",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 1.03,
                            "y": 0.7537500000000001,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-24",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 1.03,
                            "y": 0.5845833333333335,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-25",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 1.03,
                            "y": 0.4154166666666667,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-26",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 1.03,
                            "y": 0.24625000000000002,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-27",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 1.03,
                            "y": 0.07708333333333334,
                            "font": {
                                "size": 13,
                                "color": "#0f0f0f"
                            },
                            "text": "2019-04-28",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 90
                        },
                        {
                            "x": 0.5,
                            "y": -0.1,
                            "font": {
                                "size": 12,
                                "color": "#000000"
                            },
                            "text": "starttime",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": -0.1,
                            "y": 0.5,
                            "font": {
                                "size": 12,
                                "color": "#000000"
                            },
                            "text": "value",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "middle",
                            "showarrow": false,
                            "textangle": -90
                        }
                    ],
                    "paper_bgcolor": "rgb(251, 251, 251)"
                }
            },
            "height": 600,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~surpass1988",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/75.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": "2019-04-16 02:23:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "surpass1988",
                "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-18T05:44:21.772948Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jeff20628m/10.embed",
            "fid": "jeff20628m:10",
            "filename": "parcoords-advanced",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jeff20628m:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jeff20628m/10/2_BJE33NACC8YIVPT6WT526MIS7D9H21.png",
                "block-thumb": "https://api.plotly.com/v2/files/jeff20628m:10/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jeff20628m:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jeff20628m:10",
                "plots": "https://api.plotly.com/v2/plots/jeff20628m:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=jeff20628m"
            },
            "owner": "jeff20628m",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jeff20628m/10/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:44:22.295Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jeff20628m/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "c1cecd83-15d2-4b26-a12b-fcee4630bae8",
                        "line": {
                            "cmax": -100,
                            "cmin": -4000,
                            "colorsrc": "jeff20628m:11:fadff6",
                            "showscale": true,
                            "colorscale": "Jet",
                            "reversescale": true
                        },
                        "type": "parcoords",
                        "dimensions": [
                            {
                                "label": "Block Height",
                                "range": [
                                    32000,
                                    227900
                                ],
                                "values": [
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    32000.0,
                                    162666.0,
                                    86600.0,
                                    163400.0,
                                    162600.0,
                                    90000.0,
                                    93100.0,
                                    163000.0,
                                    140500.0,
                                    130000.0,
                                    100700.0,
                                    164500.0,
                                    147700.0,
                                    121700.0,
                                    107500.0,
                                    176600.0,
                                    133600.0,
                                    111100.0,
                                    93100.0,
                                    72400.0,
                                    130100.0,
                                    54500.0,
                                    182600.0,
                                    160300.0,
                                    218100.0,
                                    66500.0,
                                    95800.0,
                                    164800.0,
                                    107200.0,
                                    101600.0,
                                    91100.0,
                                    91100.0,
                                    78100.0,
                                    63300.0,
                                    75700.0,
                                    69600.0,
                                    88500.0,
                                    115800.0,
                                    195700.0,
                                    88900.0,
                                    74800.0,
                                    65400.0,
                                    74900.0,
                                    115300.0,
                                    91400.0,
                                    67800.0,
                                    85300.0,
                                    171300.0,
                                    32000.0,
                                    227900.0,
                                    163200.0,
                                    122899.0,
                                    112300.0,
                                    101500.0,
                                    111199.0,
                                    73300.0,
                                    120800.0,
                                    93100.0,
                                    117200.0,
                                    118500.0,
                                    104800.0,
                                    108500.0,
                                    146500.0,
                                    90300.0,
                                    32000.0,
                                    93000.0,
                                    110700.0,
                                    103500.0,
                                    93300.0,
                                    106300.0,
                                    118500.0,
                                    93000.0,
                                    67600.0,
                                    51400.0,
                                    89000.0,
                                    94000.0,
                                    88200.0,
                                    109600.0,
                                    102100.0,
                                    123600.0,
                                    81900.0,
                                    100000.0,
                                    218100.0,
                                    223200.0,
                                    97300.0,
                                    162100.0,
                                    97400.0,
                                    145800.0,
                                    67400.0,
                                    156500.0,
                                    201900.0,
                                    94300.0,
                                    67800.0,
                                    76100.0,
                                    98300.0,
                                    112400.0,
                                    141800.0,
                                    111400.0,
                                    74700.0,
                                    67300.0,
                                    71100.0,
                                    68900.0,
                                    62100.0,
                                    73800.0,
                                    85500.0,
                                    94400.0,
                                    68300.0,
                                    79400.0,
                                    96300.0,
                                    70400.0,
                                    67300.0,
                                    67300.0,
                                    128400.0,
                                    80800.0,
                                    87600.0,
                                    165900.0,
                                    35900.0,
                                    76200.0,
                                    79000.0,
                                    38900.0,
                                    157200.0,
                                    64400.0,
                                    67700.0,
                                    65700.0,
                                    125800.0,
                                    59300.0,
                                    66100.0,
                                    198700.0,
                                    96100.0,
                                    65600.0,
                                    70300.0,
                                    69200.0,
                                    65500.0,
                                    129300.0,
                                    62600.0,
                                    64200.0,
                                    61800.0,
                                    60800.0,
                                    83100.0,
                                    58800.0,
                                    69600.0,
                                    60400.0,
                                    63500.0,
                                    63500.0,
                                    59300.0,
                                    56600.0,
                                    77200.0,
                                    62900.0,
                                    57300.0,
                                    68000.0,
                                    227900.0,
                                    53099.0,
                                    59100.0,
                                    63099.0,
                                    65900.0,
                                    60500.0,
                                    158100.0,
                                    60199.0,
                                    66600.0,
                                    57699.0,
                                    58900.0,
                                    62699.0,
                                    62000.0,
                                    58600.0,
                                    78700.0,
                                    60700.0,
                                    60400.0,
                                    66000.0,
                                    66000.0,
                                    133300.0,
                                    60800.0,
                                    63200.0,
                                    60400.0,
                                    68400.0,
                                    64600.0,
                                    61400.0,
                                    61900.0,
                                    59000.0,
                                    155600.0,
                                    53500.0,
                                    62000.0,
                                    60599.0,
                                    63700.0,
                                    118500.0,
                                    48000.0,
                                    57400.0,
                                    58200.0,
                                    56800.0,
                                    62300.0,
                                    54500.0,
                                    61300.0,
                                    62200.0,
                                    53200.0,
                                    51600.0,
                                    88500.0,
                                    125100.0,
                                    60800.0,
                                    61500.0,
                                    59200.0,
                                    56300.0,
                                    60800.0,
                                    179300.0,
                                    58300.0,
                                    199500.0,
                                    102100.0,
                                    60800.0,
                                    183200.0,
                                    58800.0,
                                    125000.0,
                                    56900.0,
                                    58600.0,
                                    53700.0,
                                    56100.0,
                                    127600.0,
                                    96100.0,
                                    56700.0,
                                    120500.0,
                                    58600.0,
                                    53600.0,
                                    59000.0,
                                    113800.0,
                                    59000.0,
                                    59200.0,
                                    54500.0,
                                    135700.0,
                                    161200.0,
                                    57300.0,
                                    53000.0,
                                    127000.0,
                                    54600.0,
                                    55300.0,
                                    89700.0,
                                    59400.0,
                                    54900.0,
                                    64700.0,
                                    56200.0,
                                    127100.0,
                                    57000.0,
                                    35400.0,
                                    51800.0,
                                    170100.0,
                                    54000.0,
                                    56700.0,
                                    73600.0,
                                    83200.0,
                                    53000.0,
                                    60500.0,
                                    52699.0,
                                    51600.0,
                                    92100.0,
                                    56600.0,
                                    57400.0,
                                    65500.0,
                                    58400.0,
                                    97600.0,
                                    52900.0,
                                    56700.0,
                                    207600.0,
                                    221900.0,
                                    56500.0,
                                    57600.0,
                                    63900.0,
                                    54700.0,
                                    56900.0,
                                    56000.0,
                                    49700.0,
                                    51600.0,
                                    53400.0,
                                    58500.0,
                                    65000.0,
                                    57100.0,
                                    55900.0,
                                    56100.0,
                                    59800.0,
                                    55300.0,
                                    57699.0,
                                    57600.0,
                                    53200.0,
                                    53900.0,
                                    63000.0,
                                    58400.0,
                                    57500.0,
                                    61200.0,
                                    62699.0,
                                    61000.0,
                                    60199.0,
                                    57600.0,
                                    128800.0,
                                    57699.0,
                                    59900.0,
                                    94200.0,
                                    60900.0,
                                    55100.0,
                                    56300.0,
                                    54100.0,
                                    61400.0,
                                    55000.0,
                                    223100.0,
                                    57699.0,
                                    52200.0,
                                    55300.0,
                                    54000.0,
                                    61000.0,
                                    54800.0,
                                    59500.0,
                                    59000.0,
                                    54400.0,
                                    57800.0,
                                    57100.0,
                                    53200.0,
                                    56300.0,
                                    58300.0,
                                    56100.0,
                                    53900.0,
                                    55100.0,
                                    54100.0,
                                    59500.0,
                                    188900.0,
                                    92300.0,
                                    105500.0,
                                    67100.0,
                                    100000.0,
                                    202500.0,
                                    101800.0,
                                    55900.0,
                                    86800.0,
                                    55300.0,
                                    56700.0,
                                    59400.0,
                                    51400.0,
                                    49000.0,
                                    54600.0,
                                    49400.0,
                                    65300.0,
                                    56800.0,
                                    55599.0,
                                    184500.0,
                                    55000.0,
                                    55000.0,
                                    86900.0,
                                    60100.0,
                                    89700.0,
                                    52500.0,
                                    52500.0,
                                    55500.0,
                                    91700.0,
                                    104600.0,
                                    67500.0,
                                    50700.0,
                                    63300.0,
                                    55400.0,
                                    54500.0,
                                    62600.0,
                                    52699.0,
                                    54100.0,
                                    53400.0,
                                    54800.0,
                                    53200.0,
                                    59900.0,
                                    74500.0,
                                    134800.0,
                                    52400.0,
                                    105300.0,
                                    53700.0,
                                    215200.0,
                                    101700.0,
                                    57200.0,
                                    54400.0,
                                    60300.0,
                                    50800.0,
                                    129400.0,
                                    55100.0,
                                    165700.0,
                                    55000.0,
                                    51700.0,
                                    56000.0,
                                    54000.0,
                                    56500.0,
                                    54500.0,
                                    56000.0,
                                    78600.0,
                                    56300.0,
                                    54700.0,
                                    59600.0,
                                    58300.0,
                                    58800.0,
                                    52400.0,
                                    54500.0,
                                    57100.0,
                                    119100.0,
                                    50100.0,
                                    56500.0,
                                    58900.0,
                                    66500.0,
                                    55599.0,
                                    225400.0,
                                    57699.0,
                                    97200.0,
                                    57000.0,
                                    212900.0,
                                    57300.0,
                                    101600.0,
                                    216500.0,
                                    55400.0,
                                    65800.0,
                                    53000.0,
                                    164200.0,
                                    124600.0,
                                    86300.0,
                                    56000.0,
                                    95200.0,
                                    152700.0,
                                    208299.0,
                                    32000.0,
                                    60400.0,
                                    60700.0,
                                    196600.0,
                                    55000.0,
                                    77200.0,
                                    37500.0,
                                    52000.0,
                                    55300.0,
                                    54100.0,
                                    53500.0,
                                    52800.0,
                                    55100.0,
                                    60100.0,
                                    125000.0,
                                    62400.0,
                                    63700.0,
                                    106900.0,
                                    54300.0,
                                    54100.0,
                                    217500.0,
                                    56400.0,
                                    69700.0,
                                    101000.0,
                                    57500.0,
                                    55100.0,
                                    153500.0,
                                    53700.0,
                                    54700.0,
                                    58099.0,
                                    53900.0,
                                    37000.0,
                                    53200.0,
                                    62000.0,
                                    52100.0,
                                    53900.0,
                                    54500.0,
                                    61600.0,
                                    59700.0,
                                    218200.0,
                                    54700.0,
                                    189200.0,
                                    55599.0,
                                    70600.0,
                                    63700.0,
                                    107100.0,
                                    68800.0,
                                    55700.0,
                                    56400.0,
                                    57400.0,
                                    32000.0,
                                    83200.0,
                                    61200.0,
                                    217900.0,
                                    62100.0,
                                    62400.0,
                                    60900.0,
                                    60700.0,
                                    56300.0,
                                    57600.0,
                                    105399.0,
                                    60000.0,
                                    56700.0,
                                    221200.0,
                                    157700.0,
                                    58200.0,
                                    58099.0,
                                    54700.0,
                                    60900.0,
                                    61300.0,
                                    162600.0,
                                    60900.0,
                                    224600.0,
                                    57699.0,
                                    52699.0,
                                    59600.0,
                                    71200.0,
                                    52100.0,
                                    57500.0,
                                    60500.0,
                                    134900.0,
                                    67200.0,
                                    63700.0,
                                    55000.0,
                                    65199.0,
                                    161600.0,
                                    80300.0,
                                    70000.0,
                                    73300.0,
                                    56200.0,
                                    68400.0,
                                    183700.0,
                                    180100.0,
                                    56400.0,
                                    77600.0,
                                    197800.0,
                                    215799.0,
                                    56600.0,
                                    73300.0,
                                    57500.0,
                                    57500.0,
                                    55199.0,
                                    54800.0,
                                    55900.0,
                                    63300.0,
                                    106400.0,
                                    163200.0,
                                    70800.0,
                                    71900.0,
                                    166000.0,
                                    114100.0,
                                    100900.0,
                                    164300.0,
                                    93600.0,
                                    150000.0,
                                    98200.0,
                                    161400.0,
                                    200400.0,
                                    92600.0,
                                    127600.0,
                                    97600.0,
                                    84400.0,
                                    96600.0,
                                    55599.0,
                                    100500.0,
                                    112000.0,
                                    110000.0,
                                    89800.0,
                                    97700.0,
                                    84200.0,
                                    79600.0,
                                    102400.0,
                                    84800.0,
                                    86900.0,
                                    166600.0,
                                    91300.0,
                                    79600.0,
                                    78100.0,
                                    85800.0,
                                    88200.0,
                                    104200.0,
                                    76600.0,
                                    83300.0,
                                    110800.0,
                                    75600.0,
                                    76100.0,
                                    113800.0,
                                    86400.0,
                                    86800.0,
                                    74800.0,
                                    77100.0,
                                    95200.0,
                                    86900.0,
                                    172300.0,
                                    69700.0,
                                    87500.0,
                                    79600.0,
                                    65300.0,
                                    80800.0,
                                    82400.0,
                                    67100.0,
                                    79400.0,
                                    78500.0,
                                    84800.0,
                                    76100.0,
                                    47200.0,
                                    79400.0,
                                    78200.0,
                                    220300.0,
                                    66100.0,
                                    78300.0,
                                    85900.0,
                                    92100.0,
                                    80800.0,
                                    74500.0,
                                    72800.0,
                                    36200.0,
                                    75800.0,
                                    77400.0,
                                    69600.0,
                                    62600.0,
                                    90700.0,
                                    70700.0,
                                    93100.0,
                                    40400.0,
                                    62600.0,
                                    94400.0,
                                    73600.0,
                                    72000.0,
                                    138200.0,
                                    75400.0,
                                    73300.0,
                                    170700.0,
                                    75500.0,
                                    144500.0,
                                    76600.0,
                                    72000.0,
                                    78200.0,
                                    33200.0,
                                    74100.0,
                                    67900.0,
                                    35300.0,
                                    72000.0,
                                    69900.0,
                                    68600.0,
                                    69400.0,
                                    74300.0,
                                    73400.0,
                                    128400.0,
                                    71800.0,
                                    217399.0,
                                    86500.0,
                                    174200.0,
                                    67800.0,
                                    86500.0,
                                    136800.0,
                                    125399.0,
                                    75200.0,
                                    108000.0,
                                    72700.0,
                                    223900.0,
                                    67300.0,
                                    73600.0,
                                    86500.0,
                                    83800.0,
                                    70900.0,
                                    72900.0,
                                    71300.0,
                                    71800.0,
                                    88600.0,
                                    60300.0,
                                    77200.0,
                                    65300.0,
                                    63300.0,
                                    68900.0,
                                    127100.0,
                                    70700.0,
                                    223600.0,
                                    68700.0,
                                    66000.0,
                                    70800.0,
                                    69000.0,
                                    60599.0,
                                    65700.0,
                                    64200.0,
                                    150700.0,
                                    65000.0,
                                    68700.0,
                                    75800.0,
                                    154200.0,
                                    63300.0,
                                    103400.0,
                                    70200.0,
                                    66400.0,
                                    69200.0,
                                    71000.0,
                                    65700.0,
                                    62300.0,
                                    70100.0,
                                    72200.0,
                                    68700.0,
                                    64600.0,
                                    67600.0,
                                    61800.0,
                                    68100.0,
                                    129200.0,
                                    54900.0,
                                    77600.0,
                                    169700.0,
                                    67100.0,
                                    64100.0,
                                    69300.0,
                                    65700.0,
                                    64600.0,
                                    71800.0,
                                    65199.0,
                                    61800.0,
                                    198400.0,
                                    208800.0,
                                    72100.0,
                                    59800.0,
                                    66200.0,
                                    62900.0,
                                    152500.0,
                                    72200.0,
                                    57600.0,
                                    61300.0,
                                    61900.0,
                                    54900.0,
                                    177200.0,
                                    79500.0,
                                    60800.0,
                                    67000.0,
                                    61100.0,
                                    155600.0,
                                    63400.0,
                                    61500.0,
                                    65100.0,
                                    150000.0,
                                    64500.0,
                                    56800.0,
                                    59600.0,
                                    59000.0,
                                    63000.0,
                                    59000.0,
                                    56700.0,
                                    59000.0,
                                    58400.0,
                                    60700.0,
                                    56700.0,
                                    56900.0,
                                    54900.0,
                                    54800.0,
                                    52200.0,
                                    54700.0,
                                    54800.0,
                                    62000.0,
                                    134700.0,
                                    115700.0,
                                    59700.0,
                                    51500.0,
                                    66900.0,
                                    55599.0,
                                    56400.0,
                                    52900.0,
                                    56800.0,
                                    52900.0,
                                    58200.0,
                                    57699.0,
                                    59100.0,
                                    53200.0,
                                    55800.0,
                                    53300.0,
                                    60400.0,
                                    58200.0,
                                    107500.0,
                                    55500.0,
                                    56800.0,
                                    54400.0,
                                    56100.0,
                                    201400.0,
                                    56600.0,
                                    176200.0,
                                    84400.0,
                                    54100.0,
                                    214700.0,
                                    55800.0,
                                    123699.0,
                                    173700.0,
                                    73600.0,
                                    55199.0,
                                    169200.0,
                                    82600.0,
                                    56500.0,
                                    62300.0,
                                    59100.0,
                                    151900.0,
                                    122700.0,
                                    66700.0,
                                    58200.0,
                                    56400.0,
                                    57400.0,
                                    55000.0,
                                    56000.0,
                                    111900.0,
                                    60400.0,
                                    149700.0,
                                    71700.0,
                                    56600.0,
                                    93800.0,
                                    178700.0,
                                    80900.0,
                                    54700.0,
                                    87700.0,
                                    118900.0,
                                    52300.0,
                                    195900.0,
                                    190200.0,
                                    58000.0,
                                    51300.0,
                                    211300.0,
                                    54500.0,
                                    56600.0,
                                    56900.0,
                                    111800.0,
                                    54900.0,
                                    79400.0,
                                    69700.0,
                                    62800.0,
                                    78600.0,
                                    57600.0,
                                    55199.0,
                                    57000.0,
                                    56600.0,
                                    57200.0,
                                    68600.0,
                                    53800.0,
                                    53900.0,
                                    54900.0,
                                    122500.0,
                                    63500.0,
                                    179300.0,
                                    57800.0,
                                    55700.0,
                                    89400.0,
                                    61800.0,
                                    32000.0,
                                    79000.0,
                                    214100.0,
                                    61400.0,
                                    56000.0,
                                    54900.0,
                                    61900.0,
                                    55100.0,
                                    58800.0,
                                    54400.0,
                                    82600.0,
                                    176300.0,
                                    56600.0,
                                    55100.0,
                                    59100.0,
                                    141700.0,
                                    60100.0,
                                    54500.0,
                                    71700.0,
                                    58900.0,
                                    58800.0,
                                    52100.0,
                                    60000.0,
                                    56900.0,
                                    77700.0,
                                    62600.0,
                                    57900.0,
                                    53300.0,
                                    52400.0,
                                    59800.0,
                                    218900.0,
                                    70700.0,
                                    218200.0,
                                    144700.0,
                                    53300.0,
                                    57200.0,
                                    53900.0,
                                    54000.0,
                                    55400.0,
                                    107700.0,
                                    53800.0,
                                    121300.0,
                                    52400.0,
                                    54600.0,
                                    199500.0,
                                    118200.0,
                                    80900.0,
                                    202900.0,
                                    56600.0,
                                    53400.0,
                                    52100.0,
                                    56600.0,
                                    222600.0,
                                    50300.0,
                                    65100.0,
                                    54200.0,
                                    54600.0,
                                    60199.0,
                                    183700.0,
                                    134800.0,
                                    146300.0,
                                    62500.0,
                                    52600.0,
                                    56500.0,
                                    53099.0,
                                    180700.0,
                                    57800.0,
                                    53500.0,
                                    52000.0,
                                    54300.0,
                                    87300.0,
                                    57699.0,
                                    54300.0,
                                    64400.0,
                                    68500.0,
                                    213299.0,
                                    57300.0,
                                    51800.0,
                                    56300.0,
                                    50000.0,
                                    67200.0,
                                    49500.0,
                                    51100.0,
                                    63500.0,
                                    62400.0,
                                    165500.0,
                                    49300.0,
                                    51200.0,
                                    58099.0,
                                    77700.0,
                                    40800.0,
                                    55000.0,
                                    63500.0,
                                    78000.0,
                                    208000.0,
                                    56900.0,
                                    58099.0,
                                    53900.0,
                                    83600.0,
                                    55599.0,
                                    53800.0,
                                    86300.0,
                                    55100.0,
                                    55700.0,
                                    58400.0,
                                    59100.0,
                                    206600.0,
                                    55000.0,
                                    51100.0,
                                    61600.0,
                                    187000.0,
                                    54400.0,
                                    57699.0,
                                    55700.0,
                                    56800.0,
                                    54000.0,
                                    52200.0,
                                    53700.0,
                                    57100.0,
                                    55100.0,
                                    56600.0,
                                    76700.0,
                                    56400.0,
                                    58700.0,
                                    58200.0,
                                    58900.0,
                                    56300.0,
                                    182300.0,
                                    59500.0,
                                    57200.0,
                                    52300.0,
                                    54600.0,
                                    77100.0,
                                    54300.0,
                                    57400.0,
                                    54200.0,
                                    54200.0,
                                    55100.0,
                                    54600.0,
                                    57400.0,
                                    57500.0,
                                    55900.0,
                                    54900.0,
                                    54400.0,
                                    54400.0,
                                    54600.0,
                                    82300.0,
                                    54400.0,
                                    41600.0,
                                    56500.0,
                                    54000.0,
                                    55900.0,
                                    53400.0,
                                    55100.0,
                                    57300.0,
                                    55199.0,
                                    53500.0,
                                    56300.0,
                                    57500.0,
                                    55800.0,
                                    64600.0,
                                    53900.0,
                                    54100.0,
                                    58500.0,
                                    49700.0,
                                    53400.0,
                                    59500.0,
                                    53700.0,
                                    56900.0,
                                    53700.0,
                                    57000.0,
                                    53800.0,
                                    51100.0,
                                    55900.0,
                                    54700.0,
                                    47900.0,
                                    53500.0,
                                    57400.0,
                                    54700.0,
                                    88600.0,
                                    58400.0,
                                    56900.0,
                                    53200.0,
                                    127200.0,
                                    58900.0,
                                    57400.0,
                                    56600.0,
                                    52600.0,
                                    121800.0,
                                    56900.0,
                                    44700.0,
                                    120600.0,
                                    90300.0,
                                    61300.0,
                                    60700.0,
                                    58900.0,
                                    56800.0,
                                    120300.0,
                                    57600.0,
                                    54700.0,
                                    56800.0,
                                    62600.0,
                                    85700.0,
                                    86700.0,
                                    52400.0,
                                    83900.0,
                                    51800.0,
                                    64500.0,
                                    51100.0,
                                    59200.0,
                                    56100.0,
                                    43000.0,
                                    53700.0,
                                    56000.0,
                                    63600.0,
                                    56900.0,
                                    57800.0,
                                    54100.0,
                                    53700.0,
                                    116199.0,
                                    52200.0,
                                    73800.0,
                                    56100.0,
                                    157600.0,
                                    54400.0,
                                    54600.0,
                                    53300.0,
                                    68400.0,
                                    55100.0,
                                    198900.0,
                                    54500.0,
                                    52800.0,
                                    51600.0,
                                    225100.0,
                                    129100.0,
                                    63800.0,
                                    55400.0,
                                    157100.0,
                                    54300.0,
                                    53800.0,
                                    69400.0,
                                    55700.0,
                                    72100.0,
                                    54600.0,
                                    71900.0,
                                    54300.0,
                                    53800.0,
                                    55700.0,
                                    53900.0,
                                    60900.0,
                                    52300.0,
                                    53000.0,
                                    56300.0,
                                    53400.0,
                                    54300.0,
                                    179100.0,
                                    57500.0,
                                    54300.0,
                                    84000.0,
                                    53300.0,
                                    53500.0,
                                    51500.0,
                                    54300.0,
                                    37700.0,
                                    105600.0,
                                    55100.0,
                                    53600.0,
                                    206700.0,
                                    51700.0,
                                    54200.0,
                                    64900.0,
                                    52600.0,
                                    57699.0,
                                    79900.0,
                                    52500.0,
                                    51300.0,
                                    53900.0,
                                    54100.0,
                                    59300.0,
                                    54100.0,
                                    55800.0,
                                    57100.0,
                                    63800.0,
                                    56800.0,
                                    65900.0,
                                    54400.0,
                                    56900.0,
                                    79000.0,
                                    59300.0,
                                    44200.0,
                                    53099.0,
                                    57500.0,
                                    49300.0,
                                    123600.0,
                                    180700.0,
                                    112500.0,
                                    97500.0,
                                    58600.0,
                                    220400.0,
                                    54000.0,
                                    55300.0,
                                    53500.0,
                                    51900.0,
                                    172200.0,
                                    58600.0,
                                    99300.0,
                                    65900.0,
                                    54800.0,
                                    52900.0,
                                    148300.0,
                                    53099.0,
                                    65300.0,
                                    50500.0,
                                    86100.0,
                                    54500.0,
                                    109600.0,
                                    60400.0,
                                    90200.0,
                                    56500.0,
                                    56500.0,
                                    73100.0,
                                    153500.0,
                                    120900.0,
                                    118300.0,
                                    144300.0,
                                    57100.0,
                                    52500.0,
                                    53400.0,
                                    51300.0,
                                    98900.0,
                                    54800.0,
                                    53400.0,
                                    54600.0,
                                    101100.0,
                                    54500.0,
                                    136800.0,
                                    54700.0,
                                    50500.0,
                                    55599.0,
                                    52200.0,
                                    54000.0,
                                    57699.0,
                                    46900.0,
                                    208800.0,
                                    105399.0,
                                    55500.0,
                                    32100.0,
                                    174200.0,
                                    32599.0,
                                    52100.0,
                                    104700.0,
                                    137900.0,
                                    61300.0,
                                    46100.0,
                                    151600.0,
                                    55700.0,
                                    191100.0,
                                    168600.0,
                                    107500.0,
                                    59500.0,
                                    58300.0,
                                    83100.0,
                                    65400.0,
                                    60100.0,
                                    65300.0,
                                    73500.0,
                                    63900.0,
                                    59600.0,
                                    58700.0,
                                    57800.0,
                                    175200.0,
                                    159100.0,
                                    56100.0,
                                    61600.0,
                                    57800.0,
                                    58000.0,
                                    204800.0,
                                    52500.0,
                                    60800.0,
                                    51200.0,
                                    56900.0,
                                    158200.0,
                                    193900.0,
                                    56200.0,
                                    154800.0,
                                    58500.0,
                                    54100.0,
                                    45400.0,
                                    53500.0,
                                    57000.0,
                                    58900.0,
                                    57600.0,
                                    55100.0,
                                    130399.0,
                                    59800.0,
                                    57400.0,
                                    59600.0,
                                    161700.0,
                                    52600.0,
                                    57800.0,
                                    57600.0,
                                    57400.0,
                                    55900.0,
                                    55500.0,
                                    59600.0,
                                    138800.0,
                                    212200.0,
                                    102300.0,
                                    66700.0,
                                    39800.0,
                                    128400.0,
                                    53300.0,
                                    75600.0,
                                    59000.0,
                                    45300.0,
                                    65100.0,
                                    55700.0,
                                    59100.0,
                                    160900.0,
                                    111500.0,
                                    170700.0,
                                    56600.0,
                                    57500.0,
                                    61000.0,
                                    53300.0,
                                    42900.0,
                                    82100.0,
                                    54700.0,
                                    197200.0,
                                    141700.0,
                                    53800.0,
                                    72400.0,
                                    72800.0,
                                    227900.0,
                                    183900.0,
                                    53700.0,
                                    120700.0,
                                    92600.0,
                                    51800.0,
                                    54100.0,
                                    57100.0,
                                    120700.0,
                                    99900.0,
                                    52600.0,
                                    65300.0,
                                    59900.0,
                                    112899.0,
                                    56800.0,
                                    53300.0,
                                    57200.0,
                                    139700.0,
                                    63500.0,
                                    65800.0,
                                    64600.0,
                                    50500.0,
                                    55700.0,
                                    55900.0,
                                    55800.0,
                                    45800.0,
                                    63800.0,
                                    56400.0,
                                    151500.0,
                                    200100.0,
                                    51100.0,
                                    56100.0,
                                    55599.0,
                                    64500.0,
                                    192300.0,
                                    76100.0,
                                    55300.0,
                                    55199.0,
                                    48000.0,
                                    65800.0,
                                    66300.0,
                                    64400.0,
                                    127100.0,
                                    54300.0,
                                    57000.0,
                                    56100.0,
                                    52000.0,
                                    91000.0,
                                    51800.0,
                                    206800.0,
                                    91900.0,
                                    196200.0,
                                    65199.0,
                                    220500.0,
                                    214899.0,
                                    85700.0,
                                    50800.0,
                                    56000.0,
                                    57699.0,
                                    188500.0,
                                    72100.0,
                                    67200.0,
                                    67000.0,
                                    53000.0,
                                    86100.0,
                                    147100.0,
                                    92600.0,
                                    63500.0,
                                    99800.0,
                                    209400.0,
                                    32000.0,
                                    66500.0,
                                    113699.0,
                                    86800.0,
                                    65100.0,
                                    64000.0,
                                    62400.0,
                                    60300.0,
                                    144700.0,
                                    73100.0,
                                    67200.0,
                                    42100.0,
                                    78400.0,
                                    58600.0,
                                    61800.0,
                                    67900.0,
                                    56500.0,
                                    56400.0,
                                    59700.0,
                                    59000.0,
                                    51900.0,
                                    60100.0,
                                    58300.0,
                                    54900.0,
                                    67800.0,
                                    55700.0,
                                    55599.0,
                                    58400.0,
                                    59800.0,
                                    62400.0,
                                    51300.0,
                                    59800.0,
                                    41700.0,
                                    51400.0,
                                    59700.0,
                                    61700.0,
                                    56500.0,
                                    147400.0,
                                    56500.0,
                                    98300.0,
                                    183500.0,
                                    58200.0,
                                    56200.0,
                                    56800.0,
                                    82700.0,
                                    52900.0,
                                    50700.0,
                                    55700.0,
                                    53500.0,
                                    58500.0,
                                    117100.0,
                                    180400.0,
                                    61500.0,
                                    154900.0,
                                    54900.0,
                                    225000.0,
                                    59900.0,
                                    123300.0,
                                    99300.0,
                                    63000.0,
                                    136000.0,
                                    57300.0,
                                    93900.0,
                                    127000.0,
                                    50800.0,
                                    102700.0,
                                    133500.0,
                                    93200.0,
                                    150900.0,
                                    113300.0,
                                    111000.0,
                                    53300.0,
                                    85600.0,
                                    68800.0,
                                    54000.0,
                                    181900.0,
                                    193000.0,
                                    76500.0,
                                    70500.0,
                                    50900.0,
                                    62100.0,
                                    113600.0,
                                    66700.0,
                                    49800.0,
                                    182900.0,
                                    51300.0,
                                    71000.0,
                                    67100.0,
                                    51800.0,
                                    61300.0,
                                    68500.0,
                                    67500.0,
                                    153900.0,
                                    98200.0,
                                    69700.0,
                                    101100.0,
                                    61700.0,
                                    55700.0,
                                    62800.0,
                                    61100.0,
                                    57600.0,
                                    204200.0,
                                    57400.0,
                                    56400.0,
                                    56800.0,
                                    188400.0,
                                    79500.0,
                                    115600.0,
                                    46300.0,
                                    62300.0,
                                    63200.0,
                                    60500.0,
                                    61200.0,
                                    94900.0,
                                    59400.0,
                                    85900.0,
                                    63800.0,
                                    61100.0,
                                    131300.0,
                                    86500.0,
                                    59400.0,
                                    80800.0,
                                    64100.0,
                                    58000.0,
                                    59100.0,
                                    47300.0,
                                    67400.0,
                                    57500.0,
                                    62400.0,
                                    95200.0,
                                    65600.0,
                                    57600.0,
                                    171100.0,
                                    62300.0,
                                    54100.0,
                                    60900.0,
                                    97200.0,
                                    65000.0,
                                    45800.0,
                                    61200.0,
                                    64300.0,
                                    43300.0,
                                    32700.0,
                                    62100.0,
                                    69500.0,
                                    58400.0,
                                    61600.0,
                                    223700.0,
                                    41200.0,
                                    60800.0,
                                    91500.0,
                                    226800.0,
                                    58200.0,
                                    89200.0,
                                    64800.0,
                                    63200.0,
                                    71900.0,
                                    52400.0,
                                    59600.0,
                                    52000.0,
                                    39700.0,
                                    65600.0,
                                    148900.0,
                                    59600.0,
                                    50000.0,
                                    136800.0,
                                    62900.0,
                                    64100.0,
                                    58900.0,
                                    135400.0,
                                    63099.0,
                                    58600.0,
                                    53200.0,
                                    55599.0,
                                    117800.0,
                                    73300.0,
                                    70900.0,
                                    72100.0,
                                    55100.0,
                                    72400.0,
                                    67200.0,
                                    53600.0,
                                    55000.0,
                                    63800.0,
                                    56000.0,
                                    53600.0,
                                    54000.0,
                                    68900.0,
                                    51200.0,
                                    57500.0,
                                    56700.0,
                                    54700.0,
                                    56100.0,
                                    53700.0,
                                    58200.0,
                                    135500.0,
                                    57300.0,
                                    182200.0,
                                    57900.0,
                                    85200.0,
                                    121100.0,
                                    58600.0,
                                    111300.0,
                                    60199.0,
                                    55300.0,
                                    57500.0,
                                    118400.0,
                                    222000.0,
                                    123200.0,
                                    193400.0,
                                    131300.0,
                                    77300.0,
                                    57800.0,
                                    70300.0,
                                    58400.0,
                                    63099.0,
                                    118900.0,
                                    79200.0,
                                    52800.0,
                                    74600.0,
                                    58600.0,
                                    172100.0,
                                    86500.0,
                                    55400.0,
                                    65300.0,
                                    57500.0,
                                    60100.0,
                                    50000.0,
                                    110200.0,
                                    54400.0,
                                    49600.0,
                                    51900.0,
                                    62100.0,
                                    66100.0,
                                    63000.0,
                                    44900.0,
                                    67200.0,
                                    59400.0,
                                    54800.0,
                                    56200.0,
                                    179700.0,
                                    56600.0,
                                    63900.0,
                                    56900.0,
                                    54900.0,
                                    59800.0,
                                    58500.0,
                                    55100.0,
                                    55000.0,
                                    56100.0,
                                    57100.0,
                                    146400.0,
                                    83200.0,
                                    54500.0,
                                    57600.0,
                                    53600.0,
                                    56600.0,
                                    57200.0,
                                    56200.0,
                                    110200.0,
                                    51700.0,
                                    87300.0,
                                    57200.0,
                                    73700.0,
                                    57000.0,
                                    58600.0,
                                    58700.0,
                                    177800.0,
                                    54400.0,
                                    60599.0,
                                    58000.0,
                                    53000.0,
                                    68400.0,
                                    147200.0,
                                    103600.0,
                                    53900.0,
                                    56100.0,
                                    54700.0,
                                    57699.0,
                                    155400.0,
                                    57400.0,
                                    225799.0,
                                    56100.0,
                                    202000.0,
                                    52100.0,
                                    55900.0,
                                    80100.0,
                                    59300.0,
                                    59000.0,
                                    89200.0,
                                    65300.0,
                                    86100.0,
                                    78400.0,
                                    58900.0,
                                    63500.0,
                                    63900.0,
                                    55000.0,
                                    55599.0,
                                    64700.0,
                                    68200.0,
                                    53200.0,
                                    60900.0,
                                    93600.0,
                                    132900.0,
                                    67000.0,
                                    61400.0,
                                    64600.0,
                                    42600.0,
                                    93500.0,
                                    54800.0,
                                    55900.0,
                                    56100.0,
                                    54900.0,
                                    59600.0,
                                    58800.0,
                                    137400.0,
                                    87500.0,
                                    59300.0,
                                    54400.0,
                                    51500.0,
                                    183200.0,
                                    57200.0,
                                    55900.0,
                                    65000.0,
                                    58000.0,
                                    50500.0,
                                    48700.0,
                                    58600.0,
                                    60500.0,
                                    140700.0,
                                    122500.0,
                                    192500.0,
                                    65300.0,
                                    122600.0,
                                    59600.0,
                                    162700.0,
                                    106700.0,
                                    61300.0,
                                    60599.0,
                                    57699.0,
                                    74400.0,
                                    55100.0,
                                    49600.0,
                                    49800.0,
                                    190300.0,
                                    80200.0,
                                    81600.0,
                                    58000.0,
                                    128100.0,
                                    40300.0,
                                    64900.0,
                                    81300.0,
                                    61900.0,
                                    55199.0,
                                    59900.0,
                                    59100.0,
                                    57000.0,
                                    55800.0,
                                    57600.0,
                                    56300.0,
                                    68800.0,
                                    69300.0,
                                    58800.0,
                                    145700.0,
                                    58600.0,
                                    164700.0,
                                    61000.0,
                                    55700.0,
                                    168000.0,
                                    139200.0,
                                    167700.0,
                                    172000.0,
                                    65600.0,
                                    155200.0,
                                    46200.0,
                                    84200.0,
                                    64000.0,
                                    54000.0,
                                    51600.0,
                                    54200.0,
                                    95000.0,
                                    47200.0,
                                    58900.0,
                                    140400.0,
                                    53400.0,
                                    52400.0,
                                    56500.0,
                                    51500.0,
                                    223800.0,
                                    181600.0,
                                    65800.0,
                                    92700.0,
                                    114800.0,
                                    169200.0,
                                    138500.0,
                                    59300.0,
                                    60300.0,
                                    87100.0,
                                    63600.0,
                                    83000.0,
                                    53600.0,
                                    55300.0,
                                    53600.0,
                                    140500.0,
                                    155100.0,
                                    66700.0,
                                    56000.0,
                                    57699.0,
                                    60900.0,
                                    173700.0,
                                    84700.0,
                                    86100.0,
                                    104700.0,
                                    65700.0,
                                    61300.0,
                                    38600.0,
                                    57500.0,
                                    59000.0,
                                    61100.0,
                                    57100.0,
                                    57000.0,
                                    77500.0,
                                    58800.0,
                                    173800.0,
                                    73600.0,
                                    71200.0,
                                    69400.0,
                                    61200.0,
                                    60400.0,
                                    55100.0,
                                    60599.0,
                                    53800.0,
                                    58500.0,
                                    57400.0,
                                    59200.0,
                                    58099.0,
                                    62600.0,
                                    57699.0,
                                    168800.0,
                                    72600.0,
                                    58800.0,
                                    65400.0,
                                    35800.0,
                                    152500.0,
                                    32000.0,
                                    60100.0,
                                    60300.0,
                                    57200.0,
                                    223900.0,
                                    55900.0,
                                    54200.0,
                                    147200.0,
                                    55700.0,
                                    57300.0,
                                    68800.0,
                                    56800.0,
                                    60100.0,
                                    58200.0,
                                    58600.0,
                                    56100.0,
                                    74800.0,
                                    54500.0,
                                    70600.0,
                                    49400.0,
                                    132700.0,
                                    56700.0,
                                    57300.0,
                                    57000.0,
                                    189800.0,
                                    46300.0,
                                    86100.0,
                                    58700.0,
                                    62500.0,
                                    38900.0,
                                    74000.0,
                                    65500.0,
                                    73200.0,
                                    188900.0,
                                    71000.0,
                                    60199.0,
                                    81700.0,
                                    50100.0,
                                    221900.0,
                                    52500.0,
                                    53099.0,
                                    163500.0,
                                    61000.0,
                                    69000.0,
                                    51800.0,
                                    51200.0,
                                    197600.0,
                                    56600.0,
                                    61600.0,
                                    68800.0,
                                    56900.0,
                                    59700.0,
                                    47800.0,
                                    54600.0,
                                    54800.0,
                                    62200.0,
                                    69300.0,
                                    52300.0,
                                    36000.0,
                                    213600.0,
                                    56600.0,
                                    94200.0,
                                    52500.0,
                                    39100.0,
                                    49600.0,
                                    181000.0,
                                    64200.0,
                                    57300.0,
                                    60100.0,
                                    169800.0,
                                    54400.0,
                                    55400.0,
                                    62600.0,
                                    112700.0,
                                    118500.0,
                                    58000.0,
                                    61100.0,
                                    52600.0,
                                    85800.0,
                                    84400.0,
                                    57600.0,
                                    58800.0,
                                    62200.0,
                                    75200.0,
                                    95900.0,
                                    51800.0,
                                    60100.0,
                                    56500.0,
                                    87300.0,
                                    54300.0,
                                    56300.0,
                                    51500.0,
                                    68300.0,
                                    56700.0,
                                    49100.0,
                                    56800.0,
                                    127700.0,
                                    59400.0,
                                    54100.0,
                                    66900.0,
                                    50900.0,
                                    94900.0,
                                    62900.0,
                                    56700.0,
                                    71300.0,
                                    55700.0,
                                    57600.0,
                                    184300.0,
                                    100500.0,
                                    63000.0,
                                    39000.0,
                                    69400.0,
                                    65100.0,
                                    32000.0,
                                    69300.0,
                                    113500.0,
                                    60000.0,
                                    80100.0,
                                    87600.0,
                                    62100.0,
                                    216000.0,
                                    74700.0,
                                    64300.0,
                                    65500.0,
                                    61700.0,
                                    54100.0,
                                    135300.0,
                                    73100.0,
                                    55100.0,
                                    61500.0,
                                    59200.0,
                                    60900.0,
                                    63600.0,
                                    62200.0,
                                    105800.0,
                                    63500.0,
                                    49500.0,
                                    214600.0,
                                    63400.0,
                                    59900.0,
                                    95600.0,
                                    62000.0,
                                    64000.0,
                                    58099.0,
                                    63300.0,
                                    35500.0,
                                    58700.0,
                                    63300.0,
                                    44200.0,
                                    55599.0,
                                    56000.0,
                                    32000.0,
                                    60199.0,
                                    57000.0,
                                    86100.0,
                                    74700.0,
                                    49600.0,
                                    59100.0,
                                    57400.0,
                                    65400.0,
                                    55900.0,
                                    60700.0,
                                    53200.0,
                                    177300.0,
                                    53200.0,
                                    52100.0,
                                    92700.0,
                                    74300.0,
                                    73900.0,
                                    129600.0,
                                    64500.0,
                                    52699.0,
                                    56000.0,
                                    60800.0,
                                    58300.0,
                                    76400.0,
                                    57000.0,
                                    65500.0,
                                    177100.0,
                                    66800.0,
                                    49900.0,
                                    58900.0,
                                    57300.0,
                                    66700.0,
                                    58200.0,
                                    61600.0,
                                    62100.0,
                                    68200.0,
                                    55199.0,
                                    64300.0,
                                    53500.0,
                                    60199.0,
                                    60700.0,
                                    47600.0,
                                    57000.0,
                                    94400.0,
                                    95200.0,
                                    59600.0,
                                    61200.0,
                                    161400.0,
                                    51800.0,
                                    56900.0,
                                    59000.0,
                                    165500.0,
                                    69500.0,
                                    61800.0,
                                    62600.0,
                                    205200.0,
                                    52600.0,
                                    58800.0,
                                    61100.0,
                                    55599.0,
                                    58600.0,
                                    53900.0,
                                    60400.0,
                                    53400.0,
                                    115399.0,
                                    50100.0,
                                    58700.0,
                                    56300.0,
                                    37900.0,
                                    61800.0,
                                    63400.0,
                                    75100.0,
                                    52400.0,
                                    59800.0,
                                    113300.0,
                                    210700.0,
                                    55800.0,
                                    138900.0,
                                    59600.0,
                                    185300.0,
                                    102700.0,
                                    42100.0,
                                    54900.0,
                                    87200.0,
                                    40900.0,
                                    58200.0,
                                    135400.0,
                                    51700.0,
                                    62500.0,
                                    171300.0,
                                    109000.0,
                                    59800.0,
                                    102700.0,
                                    62600.0,
                                    77800.0,
                                    198400.0,
                                    61200.0,
                                    65400.0,
                                    55100.0,
                                    153700.0,
                                    165900.0,
                                    62000.0,
                                    58600.0,
                                    71000.0,
                                    56500.0,
                                    63099.0,
                                    40900.0,
                                    83200.0,
                                    60599.0,
                                    73800.0,
                                    59800.0,
                                    70900.0,
                                    58500.0,
                                    61300.0,
                                    56300.0,
                                    55100.0,
                                    58000.0,
                                    57800.0,
                                    38000.0,
                                    53500.0,
                                    61800.0,
                                    53800.0,
                                    55500.0,
                                    54300.0,
                                    56000.0,
                                    54700.0,
                                    55700.0,
                                    71500.0,
                                    179800.0,
                                    53500.0,
                                    64100.0,
                                    58400.0,
                                    63700.0,
                                    55500.0,
                                    54600.0,
                                    60800.0,
                                    64300.0,
                                    58800.0,
                                    56600.0,
                                    186600.0,
                                    58200.0,
                                    61500.0,
                                    35100.0,
                                    60100.0,
                                    212399.0,
                                    58600.0,
                                    171800.0,
                                    58300.0,
                                    96700.0,
                                    56900.0,
                                    66400.0,
                                    60300.0,
                                    58500.0,
                                    71300.0,
                                    65100.0,
                                    56300.0,
                                    59600.0,
                                    196000.0,
                                    57800.0,
                                    60000.0,
                                    42600.0,
                                    181600.0,
                                    57300.0,
                                    195500.0,
                                    54200.0,
                                    55400.0,
                                    61500.0,
                                    44500.0,
                                    55000.0,
                                    56300.0,
                                    66700.0,
                                    52699.0,
                                    143500.0,
                                    54400.0,
                                    58400.0,
                                    56300.0,
                                    53300.0,
                                    191900.0,
                                    38000.0,
                                    76000.0,
                                    111000.0,
                                    198900.0,
                                    160900.0,
                                    54500.0,
                                    55400.0,
                                    56100.0,
                                    55000.0,
                                    81500.0,
                                    57100.0,
                                    119400.0,
                                    74200.0,
                                    55700.0,
                                    70200.0,
                                    57600.0,
                                    58600.0,
                                    134700.0,
                                    53000.0,
                                    55100.0,
                                    60199.0,
                                    224100.0,
                                    58000.0,
                                    62500.0,
                                    56500.0,
                                    134200.0,
                                    60300.0,
                                    73800.0,
                                    209400.0,
                                    57000.0,
                                    55900.0,
                                    62200.0,
                                    55900.0,
                                    57500.0,
                                    159200.0,
                                    61200.0,
                                    55300.0,
                                    168000.0,
                                    55700.0,
                                    55300.0,
                                    219200.0,
                                    76600.0,
                                    128800.0,
                                    211000.0,
                                    87500.0,
                                    58600.0,
                                    57500.0,
                                    56300.0,
                                    202600.0,
                                    56200.0,
                                    61100.0,
                                    56800.0,
                                    153900.0,
                                    88400.0,
                                    97400.0,
                                    166600.0,
                                    54900.0,
                                    220000.0,
                                    81800.0,
                                    98600.0,
                                    66900.0,
                                    86500.0,
                                    152300.0,
                                    59100.0,
                                    86400.0,
                                    73100.0,
                                    55000.0,
                                    57100.0,
                                    54800.0,
                                    65500.0,
                                    138200.0,
                                    177700.0,
                                    51600.0,
                                    108699.0,
                                    67000.0,
                                    61500.0,
                                    45500.0,
                                    58500.0,
                                    55400.0,
                                    133800.0,
                                    59200.0,
                                    213100.0,
                                    66600.0,
                                    122100.0,
                                    97100.0,
                                    92100.0,
                                    135300.0,
                                    49600.0,
                                    73000.0,
                                    58200.0,
                                    51900.0,
                                    61400.0,
                                    60700.0,
                                    58099.0,
                                    53300.0,
                                    192600.0,
                                    55800.0,
                                    121500.0,
                                    139700.0,
                                    40100.0,
                                    115700.0,
                                    54300.0,
                                    56000.0,
                                    58400.0,
                                    54400.0,
                                    57699.0,
                                    98800.0,
                                    214800.0,
                                    161400.0,
                                    39300.0,
                                    56900.0,
                                    41700.0,
                                    57000.0,
                                    39600.0,
                                    65600.0,
                                    56600.0,
                                    65900.0,
                                    219100.0,
                                    55800.0,
                                    54300.0,
                                    56300.0,
                                    52600.0,
                                    61100.0,
                                    60800.0,
                                    65500.0,
                                    53700.0,
                                    57100.0,
                                    54800.0,
                                    52500.0,
                                    46500.0,
                                    50900.0,
                                    55199.0,
                                    46300.0,
                                    57100.0,
                                    56300.0,
                                    58900.0,
                                    53500.0,
                                    59800.0,
                                    217399.0,
                                    59300.0,
                                    185900.0,
                                    43300.0,
                                    59000.0,
                                    51700.0,
                                    133000.0,
                                    75300.0,
                                    58000.0,
                                    57699.0,
                                    97800.0,
                                    117400.0,
                                    57200.0,
                                    185500.0,
                                    53800.0,
                                    56700.0,
                                    115600.0,
                                    170200.0,
                                    65900.0,
                                    79000.0,
                                    55199.0,
                                    100000.0,
                                    96700.0,
                                    123699.0,
                                    76700.0,
                                    169400.0,
                                    136700.0,
                                    71400.0,
                                    61000.0,
                                    127400.0,
                                    58800.0,
                                    62400.0,
                                    48400.0,
                                    44200.0,
                                    55599.0,
                                    91600.0,
                                    67000.0,
                                    55599.0,
                                    62800.0,
                                    58000.0,
                                    65600.0,
                                    61700.0,
                                    59300.0,
                                    54300.0,
                                    201700.0,
                                    62699.0,
                                    108400.0,
                                    64100.0,
                                    71100.0,
                                    59900.0,
                                    56300.0,
                                    227900.0,
                                    54100.0,
                                    53900.0,
                                    61700.0,
                                    165200.0,
                                    59100.0,
                                    115800.0,
                                    62400.0,
                                    92400.0,
                                    55599.0,
                                    59500.0,
                                    58800.0,
                                    60500.0,
                                    57400.0,
                                    80700.0,
                                    58500.0,
                                    56500.0,
                                    59800.0,
                                    60400.0,
                                    63300.0,
                                    55199.0,
                                    118900.0,
                                    63500.0,
                                    195000.0,
                                    54700.0,
                                    53099.0,
                                    67100.0,
                                    55700.0,
                                    219200.0,
                                    56900.0,
                                    70300.0,
                                    156000.0,
                                    83600.0,
                                    95100.0,
                                    210200.0,
                                    67000.0,
                                    48000.0,
                                    56700.0,
                                    172100.0,
                                    59400.0,
                                    62800.0,
                                    195400.0,
                                    133800.0,
                                    44800.0,
                                    54900.0,
                                    57300.0,
                                    63000.0,
                                    95000.0,
                                    57600.0,
                                    32000.0,
                                    138600.0,
                                    71000.0,
                                    61200.0,
                                    73500.0,
                                    53400.0,
                                    194800.0,
                                    56900.0,
                                    49200.0,
                                    51900.0,
                                    60300.0,
                                    60900.0,
                                    57000.0,
                                    116100.0,
                                    61300.0,
                                    81000.0,
                                    205000.0,
                                    57800.0,
                                    117000.0,
                                    61300.0,
                                    51800.0,
                                    54300.0,
                                    58600.0,
                                    57800.0,
                                    61500.0,
                                    82400.0,
                                    55900.0,
                                    156600.0,
                                    59300.0,
                                    227800.0,
                                    55000.0,
                                    54400.0,
                                    52000.0,
                                    58900.0,
                                    54100.0,
                                    55599.0,
                                    177500.0,
                                    92500.0,
                                    57100.0,
                                    148600.0,
                                    53400.0,
                                    52200.0,
                                    113200.0,
                                    57300.0,
                                    87100.0,
                                    227100.0,
                                    215200.0,
                                    195700.0,
                                    144300.0,
                                    91500.0,
                                    148700.0,
                                    91100.0,
                                    198200.0,
                                    52600.0,
                                    108500.0,
                                    90700.0,
                                    68600.0,
                                    56500.0,
                                    174600.0,
                                    103400.0,
                                    215600.0,
                                    60500.0,
                                    41600.0,
                                    102899.0,
                                    81100.0,
                                    121300.0,
                                    79200.0,
                                    67400.0,
                                    64400.0,
                                    109400.0,
                                    57000.0,
                                    61400.0,
                                    54800.0,
                                    56300.0,
                                    41500.0,
                                    175700.0,
                                    140300.0,
                                    61000.0,
                                    68200.0,
                                    59700.0,
                                    84600.0,
                                    43300.0,
                                    82600.0,
                                    112300.0,
                                    34900.0,
                                    168200.0,
                                    71700.0,
                                    79800.0,
                                    60800.0,
                                    79500.0,
                                    61700.0,
                                    60800.0,
                                    54800.0,
                                    69300.0,
                                    60100.0,
                                    64100.0,
                                    64500.0,
                                    52100.0,
                                    58600.0,
                                    58900.0,
                                    56200.0,
                                    65500.0,
                                    58700.0,
                                    70400.0,
                                    216700.0,
                                    103400.0,
                                    62699.0,
                                    64600.0,
                                    66600.0,
                                    56300.0,
                                    66300.0,
                                    73800.0,
                                    50500.0,
                                    170100.0,
                                    122000.0,
                                    55300.0,
                                    56000.0,
                                    58099.0,
                                    126500.0,
                                    52200.0,
                                    147000.0,
                                    65900.0,
                                    193200.0,
                                    115300.0,
                                    62600.0,
                                    65900.0,
                                    202300.0,
                                    52800.0,
                                    53900.0,
                                    101000.0,
                                    95000.0,
                                    53700.0,
                                    73300.0,
                                    84400.0,
                                    227900.0,
                                    54300.0,
                                    93200.0,
                                    60500.0,
                                    38400.0,
                                    57300.0,
                                    61400.0,
                                    170400.0,
                                    224500.0,
                                    57100.0,
                                    95000.0,
                                    53400.0,
                                    208900.0,
                                    138800.0,
                                    73200.0,
                                    59600.0,
                                    223600.0,
                                    70400.0,
                                    111900.0,
                                    72900.0,
                                    100500.0,
                                    76000.0,
                                    71600.0,
                                    68000.0,
                                    71100.0,
                                    67700.0,
                                    75900.0,
                                    74200.0,
                                    72800.0,
                                    66500.0,
                                    69400.0,
                                    66200.0,
                                    59400.0,
                                    61000.0,
                                    52300.0,
                                    62900.0,
                                    71200.0,
                                    55400.0,
                                    67000.0,
                                    59300.0,
                                    63200.0,
                                    64500.0,
                                    65100.0,
                                    222600.0,
                                    183400.0,
                                    59600.0,
                                    40400.0,
                                    55599.0,
                                    58500.0,
                                    125000.0,
                                    64700.0,
                                    115399.0,
                                    66400.0,
                                    54500.0,
                                    81700.0,
                                    124400.0,
                                    60500.0,
                                    56300.0,
                                    53900.0,
                                    32000.0,
                                    64200.0,
                                    64800.0,
                                    58300.0,
                                    56800.0,
                                    65000.0,
                                    62800.0,
                                    62300.0,
                                    53200.0,
                                    58300.0,
                                    61300.0,
                                    58600.0,
                                    64400.0,
                                    58099.0,
                                    55700.0,
                                    158400.0,
                                    155100.0,
                                    49700.0,
                                    170000.0,
                                    213500.0,
                                    75600.0,
                                    162300.0,
                                    59900.0,
                                    47000.0,
                                    223600.0,
                                    187300.0
                                ],
                                "constraintrange": [
                                    100000,
                                    150000
                                ]
                            },
                            {
                                "label": "Block Width",
                                "range": [
                                    0,
                                    700000
                                ],
                                "values": [
                                    268630.0,
                                    489543.0,
                                    379086.0,
                                    600000.0,
                                    489543.0,
                                    268630.0,
                                    600000.0,
                                    379086.0,
                                    268630.0,
                                    489543.0,
                                    379086.0,
                                    600000.0,
                                    489543.0,
                                    268630.0,
                                    600000.0,
                                    379086.0,
                                    268630.0,
                                    489543.0,
                                    379086.0,
                                    600000.0,
                                    489543.0,
                                    268630.0,
                                    600000.0,
                                    379086.0,
                                    268630.0,
                                    489543.0,
                                    436900.0,
                                    373600.0,
                                    268630.0,
                                    439000.0,
                                    381800.0,
                                    491200.0,
                                    402800.0,
                                    381400.0,
                                    485600.0,
                                    600000.0,
                                    372200.0,
                                    394700.0,
                                    383800.0,
                                    401100.0,
                                    356500.0,
                                    313200.0,
                                    487100.0,
                                    490700.0,
                                    432299.0,
                                    530300.0,
                                    521500.0,
                                    456700.0,
                                    333800.0,
                                    343200.0,
                                    394000.0,
                                    328200.0,
                                    487700.0,
                                    383600.0,
                                    317700.0,
                                    324600.0,
                                    482900.0,
                                    515100.0,
                                    500100.0,
                                    562700.0,
                                    486000.0,
                                    453400.0,
                                    352900.0,
                                    331300.0,
                                    496200.0,
                                    469099.0,
                                    472500.0,
                                    354700.0,
                                    507700.0,
                                    509000.0,
                                    439300.0,
                                    525300.0,
                                    347600.0,
                                    379000.0,
                                    432800.0,
                                    378800.0,
                                    383200.0,
                                    523800.0,
                                    600000.0,
                                    313600.0,
                                    497700.0,
                                    411300.0,
                                    420000.0,
                                    381100.0,
                                    342800.0,
                                    385900.0,
                                    268630.0,
                                    495800.0,
                                    488000.0,
                                    446400.0,
                                    397900.0,
                                    373300.0,
                                    385700.0,
                                    396500.0,
                                    475700.0,
                                    510600.0,
                                    586800.0,
                                    596000.0,
                                    407600.0,
                                    439200.0,
                                    440800.0,
                                    393100.0,
                                    274600.0,
                                    291900.0,
                                    509799.0,
                                    432800.0,
                                    303000.0,
                                    530600.0,
                                    515900.0,
                                    376800.0,
                                    377400.0,
                                    553500.0,
                                    433600.0,
                                    270800.0,
                                    288000.0,
                                    488000.0,
                                    306800.0,
                                    418000.0,
                                    456900.0,
                                    526300.0,
                                    524500.0,
                                    524000.0,
                                    418800.0,
                                    442800.0,
                                    443200.0,
                                    497200.0,
                                    427500.0,
                                    510300.0,
                                    476000.0,
                                    382700.0,
                                    472200.0,
                                    380400.0,
                                    472900.0,
                                    541100.0,
                                    528200.0,
                                    441599.0,
                                    374600.0,
                                    414099.0,
                                    437299.0,
                                    272500.0,
                                    550000.0,
                                    417299.0,
                                    443700.0,
                                    268630.0,
                                    545800.0,
                                    403400.0,
                                    534400.0,
                                    557200.0,
                                    545200.0,
                                    537400.0,
                                    464300.0,
                                    571200.0,
                                    589400.0,
                                    564000.0,
                                    466500.0,
                                    514500.0,
                                    433200.0,
                                    293600.0,
                                    550100.0,
                                    466599.0,
                                    450100.0,
                                    557200.0,
                                    489000.0,
                                    512200.0,
                                    445600.0,
                                    531000.0,
                                    504400.0,
                                    459799.0,
                                    528800.0,
                                    579800.0,
                                    352900.0,
                                    520700.0,
                                    532000.0,
                                    477900.0,
                                    395600.0,
                                    478900.0,
                                    461300.0,
                                    481400.0,
                                    507500.0,
                                    487200.0,
                                    522299.0,
                                    496000.0,
                                    499600.0,
                                    485200.0,
                                    491500.0,
                                    548300.0,
                                    526000.0,
                                    489600.0,
                                    444000.0,
                                    500900.0,
                                    527600.0,
                                    533200.0,
                                    450000.0,
                                    566500.0,
                                    486300.0,
                                    500700.0,
                                    534900.0,
                                    493000.0,
                                    481100.0,
                                    482500.0,
                                    490900.0,
                                    510200.0,
                                    584700.0,
                                    560700.0,
                                    492000.0,
                                    474600.0,
                                    495300.0,
                                    594100.0,
                                    433700.0,
                                    522500.0,
                                    513100.0,
                                    507500.0,
                                    488100.0,
                                    506400.0,
                                    510400.0,
                                    482700.0,
                                    500400.0,
                                    532000.0,
                                    477700.0,
                                    369600.0,
                                    491200.0,
                                    499400.0,
                                    489200.0,
                                    509099.0,
                                    513600.0,
                                    479600.0,
                                    507299.0,
                                    547600.0,
                                    415300.0,
                                    485900.0,
                                    410400.0,
                                    507700.0,
                                    546700.0,
                                    503300.0,
                                    503600.0,
                                    547700.0,
                                    509200.0,
                                    522400.0,
                                    319700.0,
                                    517200.0,
                                    473000.0,
                                    506800.0,
                                    511400.0,
                                    559200.0,
                                    537900.0,
                                    515300.0,
                                    487500.0,
                                    519000.0,
                                    361100.0,
                                    270800.0,
                                    519000.0,
                                    518200.0,
                                    508200.0,
                                    503900.0,
                                    516500.0,
                                    508600.0,
                                    504900.0,
                                    506500.0,
                                    505300.0,
                                    522000.0,
                                    507500.0,
                                    521400.0,
                                    504600.0,
                                    521400.0,
                                    418700.0,
                                    516700.0,
                                    508400.0,
                                    515400.0,
                                    387000.0,
                                    522299.0,
                                    557300.0,
                                    516599.0,
                                    510600.0,
                                    383600.0,
                                    514700.0,
                                    516700.0,
                                    515600.0,
                                    528200.0,
                                    491500.0,
                                    517900.0,
                                    505000.0,
                                    430300.0,
                                    425300.0,
                                    517800.0,
                                    512600.0,
                                    511599.0,
                                    511300.0,
                                    501599.0,
                                    519099.0,
                                    359700.0,
                                    522400.0,
                                    510400.0,
                                    501100.0,
                                    524600.0,
                                    516000.0,
                                    513800.0,
                                    503100.0,
                                    517000.0,
                                    511400.0,
                                    513700.0,
                                    504000.0,
                                    506900.0,
                                    517000.0,
                                    535700.0,
                                    572700.0,
                                    497900.0,
                                    501900.0,
                                    512600.0,
                                    513800.0,
                                    515000.0,
                                    520700.0,
                                    295100.0,
                                    509700.0,
                                    522299.0,
                                    338800.0,
                                    521300.0,
                                    517200.0,
                                    519500.0,
                                    520800.0,
                                    509300.0,
                                    520700.0,
                                    356000.0,
                                    523000.0,
                                    513600.0,
                                    525100.0,
                                    515700.0,
                                    510000.0,
                                    528300.0,
                                    565200.0,
                                    509300.0,
                                    515500.0,
                                    526900.0,
                                    514200.0,
                                    522200.0,
                                    518500.0,
                                    557400.0,
                                    565100.0,
                                    530700.0,
                                    511100.0,
                                    538200.0,
                                    483700.0,
                                    588800.0,
                                    285200.0,
                                    569100.0,
                                    520800.0,
                                    406300.0,
                                    278300.0,
                                    569500.0,
                                    513900.0,
                                    289000.0,
                                    519600.0,
                                    513600.0,
                                    526900.0,
                                    525500.0,
                                    530300.0,
                                    502000.0,
                                    480000.0,
                                    518500.0,
                                    513000.0,
                                    516900.0,
                                    507000.0,
                                    534300.0,
                                    520400.0,
                                    488500.0,
                                    536000.0,
                                    518900.0,
                                    519000.0,
                                    509400.0,
                                    535500.0,
                                    533600.0,
                                    384900.0,
                                    542700.0,
                                    517200.0,
                                    535700.0,
                                    520500.0,
                                    517100.0,
                                    538700.0,
                                    525900.0,
                                    524200.0,
                                    517100.0,
                                    523600.0,
                                    512900.0,
                                    542400.0,
                                    306800.0,
                                    544600.0,
                                    516599.0,
                                    582200.0,
                                    519900.0,
                                    510900.0,
                                    427200.0,
                                    521300.0,
                                    525900.0,
                                    438200.0,
                                    523500.0,
                                    480000.0,
                                    519600.0,
                                    325400.0,
                                    523300.0,
                                    525200.0,
                                    526500.0,
                                    516400.0,
                                    523800.0,
                                    525400.0,
                                    518700.0,
                                    530800.0,
                                    526400.0,
                                    524400.0,
                                    566400.0,
                                    519500.0,
                                    519700.0,
                                    518400.0,
                                    580400.0,
                                    520600.0,
                                    567600.0,
                                    585000.0,
                                    519300.0,
                                    524300.0,
                                    520800.0,
                                    520900.0,
                                    533400.0,
                                    529500.0,
                                    583500.0,
                                    531400.0,
                                    450000.0,
                                    557600.0,
                                    420700.0,
                                    402900.0,
                                    524500.0,
                                    518700.0,
                                    521800.0,
                                    316400.0,
                                    497100.0,
                                    518900.0,
                                    504400.0,
                                    539400.0,
                                    507000.0,
                                    339700.0,
                                    493800.0,
                                    496700.0,
                                    517500.0,
                                    523400.0,
                                    524400.0,
                                    526200.0,
                                    311300.0,
                                    519200.0,
                                    327600.0,
                                    520400.0,
                                    524800.0,
                                    526400.0,
                                    519200.0,
                                    485200.0,
                                    361000.0,
                                    519300.0,
                                    574400.0,
                                    330400.0,
                                    511800.0,
                                    511200.0,
                                    592800.0,
                                    520900.0,
                                    390400.0,
                                    322200.0,
                                    524600.0,
                                    513300.0,
                                    542400.0,
                                    517200.0,
                                    527300.0,
                                    512700.0,
                                    516100.0,
                                    570800.0,
                                    508900.0,
                                    523500.0,
                                    543500.0,
                                    513700.0,
                                    519700.0,
                                    469000.0,
                                    557400.0,
                                    515000.0,
                                    511000.0,
                                    382700.0,
                                    521400.0,
                                    497900.0,
                                    571100.0,
                                    514099.0,
                                    461100.0,
                                    505600.0,
                                    563300.0,
                                    509200.0,
                                    446300.0,
                                    458000.0,
                                    518000.0,
                                    316500.0,
                                    525600.0,
                                    515700.0,
                                    468600.0,
                                    516300.0,
                                    515400.0,
                                    499000.0,
                                    487500.0,
                                    486900.0,
                                    519099.0,
                                    270200.0,
                                    290900.0,
                                    518000.0,
                                    509900.0,
                                    519300.0,
                                    517299.0,
                                    468700.0,
                                    582300.0,
                                    517200.0,
                                    461100.0,
                                    558600.0,
                                    490500.0,
                                    499099.0,
                                    507100.0,
                                    517600.0,
                                    535200.0,
                                    512100.0,
                                    375300.0,
                                    506100.0,
                                    502200.0,
                                    519600.0,
                                    559900.0,
                                    531200.0,
                                    508100.0,
                                    553600.0,
                                    510700.0,
                                    538600.0,
                                    525200.0,
                                    286400.0,
                                    581800.0,
                                    534900.0,
                                    503500.0,
                                    345400.0,
                                    428300.0,
                                    539400.0,
                                    552000.0,
                                    523400.0,
                                    516300.0,
                                    514099.0,
                                    519200.0,
                                    515800.0,
                                    508000.0,
                                    500400.0,
                                    374900.0,
                                    529900.0,
                                    527100.0,
                                    600000.0,
                                    309600.0,
                                    583500.0,
                                    600000.0,
                                    376000.0,
                                    473900.0,
                                    484799.0,
                                    419300.0,
                                    287200.0,
                                    596600.0,
                                    464600.0,
                                    398900.0,
                                    383900.0,
                                    487000.0,
                                    431900.0,
                                    490700.0,
                                    600000.0,
                                    381100.0,
                                    515800.0,
                                    381500.0,
                                    540900.0,
                                    539100.0,
                                    416500.0,
                                    428800.0,
                                    439300.0,
                                    441300.0,
                                    496000.0,
                                    550800.0,
                                    414300.0,
                                    422100.0,
                                    598200.0,
                                    387800.0,
                                    561100.0,
                                    364000.0,
                                    359700.0,
                                    523400.0,
                                    455300.0,
                                    600000.0,
                                    380400.0,
                                    424000.0,
                                    458600.0,
                                    382500.0,
                                    401100.0,
                                    425100.0,
                                    550500.0,
                                    436599.0,
                                    493200.0,
                                    393200.0,
                                    437900.0,
                                    401100.0,
                                    386300.0,
                                    432299.0,
                                    444799.0,
                                    428200.0,
                                    368800.0,
                                    415700.0,
                                    369900.0,
                                    413400.0,
                                    413000.0,
                                    482100.0,
                                    436000.0,
                                    368600.0,
                                    369300.0,
                                    401300.0,
                                    400400.0,
                                    418300.0,
                                    432299.0,
                                    278800.0,
                                    436100.0,
                                    411800.0,
                                    431300.0,
                                    551100.0,
                                    406300.0,
                                    541500.0,
                                    404200.0,
                                    547200.0,
                                    437000.0,
                                    390200.0,
                                    417900.0,
                                    415800.0,
                                    460600.0,
                                    434900.0,
                                    442600.0,
                                    309300.0,
                                    452000.0,
                                    272200.0,
                                    459700.0,
                                    423300.0,
                                    414799.0,
                                    468900.0,
                                    429300.0,
                                    436700.0,
                                    427400.0,
                                    438800.0,
                                    421100.0,
                                    421700.0,
                                    434000.0,
                                    470700.0,
                                    474799.0,
                                    521599.0,
                                    414400.0,
                                    307300.0,
                                    416700.0,
                                    579600.0,
                                    432400.0,
                                    566100.0,
                                    416200.0,
                                    432500.0,
                                    483100.0,
                                    373200.0,
                                    494799.0,
                                    507400.0,
                                    489700.0,
                                    440800.0,
                                    389200.0,
                                    436599.0,
                                    418000.0,
                                    446500.0,
                                    450700.0,
                                    445200.0,
                                    594100.0,
                                    443900.0,
                                    489000.0,
                                    493300.0,
                                    448900.0,
                                    449700.0,
                                    406000.0,
                                    437400.0,
                                    278100.0,
                                    453400.0,
                                    509500.0,
                                    433000.0,
                                    431200.0,
                                    308600.0,
                                    507500.0,
                                    452500.0,
                                    524700.0,
                                    451700.0,
                                    468700.0,
                                    423600.0,
                                    447200.0,
                                    472600.0,
                                    418500.0,
                                    466000.0,
                                    457000.0,
                                    442299.0,
                                    455000.0,
                                    458400.0,
                                    463800.0,
                                    450900.0,
                                    452900.0,
                                    544200.0,
                                    456500.0,
                                    521700.0,
                                    490900.0,
                                    457200.0,
                                    502500.0,
                                    499099.0,
                                    446800.0,
                                    597000.0,
                                    440600.0,
                                    478700.0,
                                    428700.0,
                                    556900.0,
                                    498300.0,
                                    442000.0,
                                    437900.0,
                                    419000.0,
                                    486000.0,
                                    490700.0,
                                    463000.0,
                                    505500.0,
                                    496700.0,
                                    486200.0,
                                    528300.0,
                                    434200.0,
                                    502600.0,
                                    502400.0,
                                    477800.0,
                                    470500.0,
                                    533400.0,
                                    520700.0,
                                    508400.0,
                                    346400.0,
                                    498900.0,
                                    511300.0,
                                    486900.0,
                                    499300.0,
                                    508100.0,
                                    545700.0,
                                    458400.0,
                                    524300.0,
                                    504700.0,
                                    497299.0,
                                    454300.0,
                                    501100.0,
                                    499900.0,
                                    497800.0,
                                    506900.0,
                                    494500.0,
                                    501000.0,
                                    515300.0,
                                    515000.0,
                                    505300.0,
                                    520200.0,
                                    524099.0,
                                    502600.0,
                                    483000.0,
                                    413400.0,
                                    562300.0,
                                    511700.0,
                                    523500.0,
                                    478800.0,
                                    514600.0,
                                    511100.0,
                                    505500.0,
                                    505300.0,
                                    519099.0,
                                    499600.0,
                                    506900.0,
                                    510500.0,
                                    519900.0,
                                    512400.0,
                                    520400.0,
                                    504500.0,
                                    500900.0,
                                    433200.0,
                                    515900.0,
                                    500700.0,
                                    517100.0,
                                    508200.0,
                                    505900.0,
                                    498900.0,
                                    274800.0,
                                    523200.0,
                                    518100.0,
                                    434600.0,
                                    491100.0,
                                    439900.0,
                                    508300.0,
                                    338800.0,
                                    513900.0,
                                    464600.0,
                                    524000.0,
                                    511100.0,
                                    565900.0,
                                    503700.0,
                                    331700.0,
                                    484200.0,
                                    533800.0,
                                    530700.0,
                                    519799.0,
                                    544000.0,
                                    513200.0,
                                    466100.0,
                                    484799.0,
                                    537100.0,
                                    541300.0,
                                    513500.0,
                                    515100.0,
                                    495600.0,
                                    580400.0,
                                    514600.0,
                                    517000.0,
                                    519600.0,
                                    552000.0,
                                    538400.0,
                                    399700.0,
                                    448000.0,
                                    522100.0,
                                    503600.0,
                                    353100.0,
                                    511300.0,
                                    515700.0,
                                    487700.0,
                                    421700.0,
                                    509200.0,
                                    600000.0,
                                    422400.0,
                                    523700.0,
                                    526700.0,
                                    513000.0,
                                    521500.0,
                                    516400.0,
                                    518100.0,
                                    513300.0,
                                    516700.0,
                                    524400.0,
                                    499099.0,
                                    517299.0,
                                    428600.0,
                                    514700.0,
                                    540300.0,
                                    507500.0,
                                    517200.0,
                                    464900.0,
                                    519099.0,
                                    512100.0,
                                    537200.0,
                                    440900.0,
                                    507900.0,
                                    522500.0,
                                    514799.0,
                                    513900.0,
                                    523500.0,
                                    510100.0,
                                    525100.0,
                                    548400.0,
                                    361100.0,
                                    512700.0,
                                    518100.0,
                                    524400.0,
                                    588900.0,
                                    527800.0,
                                    528500.0,
                                    341500.0,
                                    500100.0,
                                    510300.0,
                                    516000.0,
                                    504200.0,
                                    502900.0,
                                    424200.0,
                                    506599.0,
                                    502700.0,
                                    511000.0,
                                    512200.0,
                                    524099.0,
                                    595200.0,
                                    415700.0,
                                    460400.0,
                                    361800.0,
                                    519700.0,
                                    514300.0,
                                    527300.0,
                                    516900.0,
                                    512900.0,
                                    532100.0,
                                    514900.0,
                                    312800.0,
                                    510400.0,
                                    515100.0,
                                    518500.0,
                                    383900.0,
                                    269400.0,
                                    547800.0,
                                    515000.0,
                                    515100.0,
                                    514300.0,
                                    518700.0,
                                    316300.0,
                                    508700.0,
                                    503200.0,
                                    512700.0,
                                    511599.0,
                                    515500.0,
                                    506599.0,
                                    384900.0,
                                    362200.0,
                                    527700.0,
                                    527500.0,
                                    515600.0,
                                    510100.0,
                                    289800.0,
                                    517400.0,
                                    510600.0,
                                    531900.0,
                                    513800.0,
                                    530100.0,
                                    517600.0,
                                    522700.0,
                                    522900.0,
                                    525700.0,
                                    376000.0,
                                    520100.0,
                                    512100.0,
                                    513900.0,
                                    512400.0,
                                    528600.0,
                                    521900.0,
                                    498500.0,
                                    530200.0,
                                    514700.0,
                                    494200.0,
                                    315900.0,
                                    527900.0,
                                    514700.0,
                                    521599.0,
                                    521599.0,
                                    526700.0,
                                    516400.0,
                                    507900.0,
                                    542600.0,
                                    518600.0,
                                    521500.0,
                                    523500.0,
                                    459700.0,
                                    513400.0,
                                    517900.0,
                                    515400.0,
                                    521400.0,
                                    512900.0,
                                    517600.0,
                                    522100.0,
                                    274700.0,
                                    520800.0,
                                    511599.0,
                                    517000.0,
                                    428600.0,
                                    520500.0,
                                    519799.0,
                                    522800.0,
                                    526400.0,
                                    506700.0,
                                    514000.0,
                                    513100.0,
                                    517900.0,
                                    520200.0,
                                    517600.0,
                                    583600.0,
                                    526800.0,
                                    524400.0,
                                    523900.0,
                                    515900.0,
                                    523300.0,
                                    498700.0,
                                    524200.0,
                                    519200.0,
                                    517500.0,
                                    525100.0,
                                    549400.0,
                                    526000.0,
                                    517200.0,
                                    516900.0,
                                    520700.0,
                                    521000.0,
                                    521300.0,
                                    525700.0,
                                    527200.0,
                                    519400.0,
                                    518600.0,
                                    516900.0,
                                    519600.0,
                                    517400.0,
                                    496300.0,
                                    527400.0,
                                    322400.0,
                                    518300.0,
                                    519200.0,
                                    518400.0,
                                    523400.0,
                                    523100.0,
                                    516599.0,
                                    516100.0,
                                    517900.0,
                                    512500.0,
                                    514600.0,
                                    519500.0,
                                    514200.0,
                                    517600.0,
                                    520200.0,
                                    519200.0,
                                    515200.0,
                                    520100.0,
                                    517000.0,
                                    519600.0,
                                    509900.0,
                                    520900.0,
                                    519799.0,
                                    519900.0,
                                    518200.0,
                                    512400.0,
                                    517700.0,
                                    526200.0,
                                    516700.0,
                                    519799.0,
                                    519900.0,
                                    382200.0,
                                    518900.0,
                                    520000.0,
                                    518200.0,
                                    488700.0,
                                    523600.0,
                                    522299.0,
                                    522299.0,
                                    521900.0,
                                    295200.0,
                                    511599.0,
                                    499400.0,
                                    526900.0,
                                    572800.0,
                                    478500.0,
                                    570100.0,
                                    520000.0,
                                    516599.0,
                                    530600.0,
                                    509799.0,
                                    526000.0,
                                    512000.0,
                                    491599.0,
                                    530200.0,
                                    581800.0,
                                    525800.0,
                                    529700.0,
                                    522200.0,
                                    598700.0,
                                    517400.0,
                                    508500.0,
                                    510200.0,
                                    428700.0,
                                    522200.0,
                                    507100.0,
                                    517299.0,
                                    527600.0,
                                    534400.0,
                                    526500.0,
                                    520700.0,
                                    486900.0,
                                    526200.0,
                                    525600.0,
                                    514799.0,
                                    510400.0,
                                    514900.0,
                                    529600.0,
                                    520100.0,
                                    330400.0,
                                    520800.0,
                                    401100.0,
                                    520600.0,
                                    516000.0,
                                    525100.0,
                                    388800.0,
                                    404700.0,
                                    525800.0,
                                    526400.0,
                                    480100.0,
                                    525700.0,
                                    515300.0,
                                    391100.0,
                                    518100.0,
                                    431599.0,
                                    527800.0,
                                    430300.0,
                                    517400.0,
                                    518700.0,
                                    523500.0,
                                    512400.0,
                                    514300.0,
                                    516100.0,
                                    517299.0,
                                    508200.0,
                                    520900.0,
                                    527200.0,
                                    296700.0,
                                    514400.0,
                                    520100.0,
                                    289600.0,
                                    513900.0,
                                    528000.0,
                                    522700.0,
                                    527600.0,
                                    308500.0,
                                    415200.0,
                                    522800.0,
                                    527500.0,
                                    402800.0,
                                    521400.0,
                                    523300.0,
                                    518800.0,
                                    521200.0,
                                    522200.0,
                                    547400.0,
                                    525300.0,
                                    522800.0,
                                    518000.0,
                                    524800.0,
                                    518300.0,
                                    518300.0,
                                    534100.0,
                                    518400.0,
                                    530400.0,
                                    512800.0,
                                    520500.0,
                                    524900.0,
                                    522500.0,
                                    520200.0,
                                    537200.0,
                                    307300.0,
                                    517200.0,
                                    527300.0,
                                    514099.0,
                                    557900.0,
                                    521599.0,
                                    525600.0,
                                    492800.0,
                                    533800.0,
                                    359300.0,
                                    522299.0,
                                    546000.0,
                                    514200.0,
                                    401500.0,
                                    475200.0,
                                    523900.0,
                                    394000.0,
                                    517800.0,
                                    525400.0,
                                    517600.0,
                                    382800.0,
                                    513200.0,
                                    414900.0,
                                    519000.0,
                                    517100.0,
                                    525300.0,
                                    421700.0,
                                    515300.0,
                                    453800.0,
                                    522299.0,
                                    525300.0,
                                    522200.0,
                                    297000.0,
                                    402100.0,
                                    440400.0,
                                    462900.0,
                                    517700.0,
                                    514200.0,
                                    522299.0,
                                    526700.0,
                                    382000.0,
                                    513200.0,
                                    519799.0,
                                    521000.0,
                                    436200.0,
                                    516400.0,
                                    490400.0,
                                    514099.0,
                                    526800.0,
                                    510600.0,
                                    513400.0,
                                    509900.0,
                                    518900.0,
                                    512400.0,
                                    500400.0,
                                    521700.0,
                                    517100.0,
                                    390400.0,
                                    589900.0,
                                    327700.0,
                                    517100.0,
                                    499799.0,
                                    565300.0,
                                    522299.0,
                                    589000.0,
                                    495000.0,
                                    519099.0,
                                    502299.0,
                                    433100.0,
                                    413000.0,
                                    540000.0,
                                    503200.0,
                                    563400.0,
                                    521599.0,
                                    553100.0,
                                    511500.0,
                                    503200.0,
                                    558600.0,
                                    510200.0,
                                    499799.0,
                                    510100.0,
                                    308500.0,
                                    410700.0,
                                    518400.0,
                                    522700.0,
                                    532000.0,
                                    502400.0,
                                    386700.0,
                                    512700.0,
                                    538900.0,
                                    522900.0,
                                    516300.0,
                                    396900.0,
                                    545300.0,
                                    517400.0,
                                    393900.0,
                                    495600.0,
                                    529600.0,
                                    552900.0,
                                    516900.0,
                                    519300.0,
                                    521800.0,
                                    495100.0,
                                    513500.0,
                                    583300.0,
                                    516800.0,
                                    516300.0,
                                    526400.0,
                                    550500.0,
                                    526300.0,
                                    517100.0,
                                    516800.0,
                                    510400.0,
                                    525000.0,
                                    526500.0,
                                    518200.0,
                                    414300.0,
                                    548400.0,
                                    395800.0,
                                    447800.0,
                                    419799.0,
                                    530100.0,
                                    532300.0,
                                    493200.0,
                                    522600.0,
                                    373100.0,
                                    445500.0,
                                    530000.0,
                                    520500.0,
                                    560400.0,
                                    440000.0,
                                    297700.0,
                                    524200.0,
                                    526100.0,
                                    518600.0,
                                    528400.0,
                                    400700.0,
                                    503000.0,
                                    508600.0,
                                    545500.0,
                                    555400.0,
                                    520600.0,
                                    494900.0,
                                    473200.0,
                                    521599.0,
                                    471700.0,
                                    509099.0,
                                    526800.0,
                                    510800.0,
                                    525700.0,
                                    516900.0,
                                    498300.0,
                                    595700.0,
                                    526300.0,
                                    520600.0,
                                    525600.0,
                                    519400.0,
                                    380300.0,
                                    514099.0,
                                    506100.0,
                                    524000.0,
                                    321100.0,
                                    522500.0,
                                    520000.0,
                                    520600.0,
                                    529700.0,
                                    521800.0,
                                    510300.0,
                                    520500.0,
                                    385100.0,
                                    522200.0,
                                    518300.0,
                                    577600.0,
                                    588400.0,
                                    536100.0,
                                    513100.0,
                                    518000.0,
                                    419000.0,
                                    480700.0,
                                    392500.0,
                                    515900.0,
                                    517400.0,
                                    353900.0,
                                    520800.0,
                                    448300.0,
                                    511200.0,
                                    502700.0,
                                    518500.0,
                                    512900.0,
                                    521300.0,
                                    519799.0,
                                    535700.0,
                                    512299.0,
                                    407000.0,
                                    517100.0,
                                    322600.0,
                                    518700.0,
                                    297300.0,
                                    366500.0,
                                    600000.0,
                                    515200.0,
                                    516300.0,
                                    490700.0,
                                    408800.0,
                                    525700.0,
                                    504300.0,
                                    509600.0,
                                    521300.0,
                                    481400.0,
                                    359700.0,
                                    371300.0,
                                    511900.0,
                                    504300.0,
                                    451300.0,
                                    467600.0,
                                    507700.0,
                                    532300.0,
                                    470600.0,
                                    516800.0,
                                    590300.0,
                                    522000.0,
                                    526000.0,
                                    463900.0,
                                    455600.0,
                                    518500.0,
                                    406100.0,
                                    475600.0,
                                    529000.0,
                                    547300.0,
                                    529000.0,
                                    531400.0,
                                    517500.0,
                                    527800.0,
                                    526600.0,
                                    459500.0,
                                    494200.0,
                                    500000.0,
                                    487000.0,
                                    469000.0,
                                    511300.0,
                                    511700.0,
                                    508600.0,
                                    504500.0,
                                    519900.0,
                                    521700.0,
                                    522299.0,
                                    400400.0,
                                    511100.0,
                                    513900.0,
                                    513900.0,
                                    511100.0,
                                    408500.0,
                                    498900.0,
                                    490600.0,
                                    559100.0,
                                    514200.0,
                                    505500.0,
                                    506300.0,
                                    503800.0,
                                    516599.0,
                                    524200.0,
                                    510100.0,
                                    510600.0,
                                    505700.0,
                                    395700.0,
                                    523100.0,
                                    506599.0,
                                    542700.0,
                                    512700.0,
                                    366700.0,
                                    511800.0,
                                    386800.0,
                                    397700.0,
                                    511000.0,
                                    404200.0,
                                    518300.0,
                                    499400.0,
                                    520500.0,
                                    511800.0,
                                    555900.0,
                                    465500.0,
                                    268630.0,
                                    582200.0,
                                    305800.0,
                                    500800.0,
                                    518400.0,
                                    472200.0,
                                    512700.0,
                                    483300.0,
                                    405400.0,
                                    573000.0,
                                    465600.0,
                                    516500.0,
                                    476000.0,
                                    472000.0,
                                    546000.0,
                                    496200.0,
                                    503400.0,
                                    414000.0,
                                    516800.0,
                                    514000.0,
                                    520800.0,
                                    523700.0,
                                    502900.0,
                                    513900.0,
                                    515400.0,
                                    318200.0,
                                    511500.0,
                                    469900.0,
                                    379700.0,
                                    515300.0,
                                    504200.0,
                                    506500.0,
                                    495500.0,
                                    523200.0,
                                    297100.0,
                                    508100.0,
                                    525600.0,
                                    522800.0,
                                    321100.0,
                                    507299.0,
                                    423900.0,
                                    536700.0,
                                    394000.0,
                                    527100.0,
                                    506900.0,
                                    515400.0,
                                    447800.0,
                                    509900.0,
                                    490900.0,
                                    508000.0,
                                    493400.0,
                                    523200.0,
                                    429900.0,
                                    486800.0,
                                    522100.0,
                                    505400.0,
                                    517299.0,
                                    506800.0,
                                    448600.0,
                                    489000.0,
                                    496800.0,
                                    504300.0,
                                    486200.0,
                                    500300.0,
                                    525300.0,
                                    278500.0,
                                    501900.0,
                                    512400.0,
                                    510400.0,
                                    530000.0,
                                    511500.0,
                                    370200.0,
                                    507600.0,
                                    504500.0,
                                    373400.0,
                                    485300.0,
                                    497600.0,
                                    504200.0,
                                    501100.0,
                                    505400.0,
                                    587500.0,
                                    373900.0,
                                    511500.0,
                                    492299.0,
                                    560600.0,
                                    506500.0,
                                    421500.0,
                                    506100.0,
                                    509099.0,
                                    509300.0,
                                    508600.0,
                                    511300.0,
                                    515200.0,
                                    376500.0,
                                    499900.0,
                                    558600.0,
                                    500200.0,
                                    514400.0,
                                    293900.0,
                                    470700.0,
                                    407400.0,
                                    490100.0,
                                    375800.0,
                                    406100.0,
                                    506100.0,
                                    520900.0,
                                    514099.0,
                                    415600.0,
                                    506200.0,
                                    581600.0,
                                    435400.0,
                                    512500.0,
                                    432800.0,
                                    504200.0,
                                    513900.0,
                                    529300.0,
                                    506000.0,
                                    507000.0,
                                    518400.0,
                                    520600.0,
                                    515900.0,
                                    512200.0,
                                    508200.0,
                                    517900.0,
                                    497500.0,
                                    497100.0,
                                    523300.0,
                                    506800.0,
                                    471000.0,
                                    500600.0,
                                    269500.0,
                                    508100.0,
                                    512600.0,
                                    584400.0,
                                    505900.0,
                                    425000.0,
                                    501900.0,
                                    513300.0,
                                    526800.0,
                                    584700.0,
                                    472500.0,
                                    287400.0,
                                    573200.0,
                                    510700.0,
                                    492200.0,
                                    517600.0,
                                    506300.0,
                                    502800.0,
                                    509200.0,
                                    514400.0,
                                    508800.0,
                                    520600.0,
                                    518200.0,
                                    515100.0,
                                    340000.0,
                                    510500.0,
                                    521000.0,
                                    517400.0,
                                    516800.0,
                                    519900.0,
                                    476700.0,
                                    357200.0,
                                    514000.0,
                                    404600.0,
                                    519300.0,
                                    514900.0,
                                    501200.0,
                                    521200.0,
                                    559700.0,
                                    503000.0,
                                    514500.0,
                                    518100.0,
                                    515100.0,
                                    458600.0,
                                    519200.0,
                                    518300.0,
                                    530500.0,
                                    501100.0,
                                    520600.0,
                                    503800.0,
                                    521599.0,
                                    527200.0,
                                    519300.0,
                                    534200.0,
                                    433200.0,
                                    521599.0,
                                    512100.0,
                                    510400.0,
                                    518500.0,
                                    511599.0,
                                    516500.0,
                                    505600.0,
                                    594900.0,
                                    528900.0,
                                    407600.0,
                                    510400.0,
                                    425800.0,
                                    517100.0,
                                    508700.0,
                                    516599.0,
                                    543700.0,
                                    520400.0,
                                    506300.0,
                                    511599.0,
                                    523000.0,
                                    554000.0,
                                    332400.0,
                                    379900.0,
                                    511500.0,
                                    525100.0,
                                    513700.0,
                                    516400.0,
                                    513600.0,
                                    503400.0,
                                    510400.0,
                                    511200.0,
                                    352600.0,
                                    515200.0,
                                    524000.0,
                                    382400.0,
                                    521900.0,
                                    536300.0,
                                    445300.0,
                                    427200.0,
                                    508700.0,
                                    523800.0,
                                    518800.0,
                                    538100.0,
                                    470400.0,
                                    511300.0,
                                    520900.0,
                                    518700.0,
                                    516200.0,
                                    520700.0,
                                    526600.0,
                                    367700.0,
                                    362200.0,
                                    507200.0,
                                    528800.0,
                                    508200.0,
                                    380900.0,
                                    372500.0,
                                    520300.0,
                                    521500.0,
                                    517900.0,
                                    464000.0,
                                    525900.0,
                                    522299.0,
                                    345600.0,
                                    597300.0,
                                    549000.0,
                                    507000.0,
                                    508800.0,
                                    569100.0,
                                    513400.0,
                                    511599.0,
                                    539300.0,
                                    519700.0,
                                    517299.0,
                                    519300.0,
                                    507600.0,
                                    523200.0,
                                    493300.0,
                                    465700.0,
                                    577300.0,
                                    538600.0,
                                    589000.0,
                                    460100.0,
                                    325400.0,
                                    440200.0,
                                    552600.0,
                                    537500.0,
                                    514200.0,
                                    528100.0,
                                    474900.0,
                                    460000.0,
                                    463300.0,
                                    401500.0,
                                    340400.0,
                                    340200.0,
                                    518700.0,
                                    517400.0,
                                    560500.0,
                                    505200.0,
                                    276800.0,
                                    510800.0,
                                    530500.0,
                                    513100.0,
                                    515000.0,
                                    523300.0,
                                    512000.0,
                                    510600.0,
                                    517400.0,
                                    365200.0,
                                    596600.0,
                                    517500.0,
                                    358600.0,
                                    515700.0,
                                    545500.0,
                                    553000.0,
                                    505000.0,
                                    487000.0,
                                    484700.0,
                                    349200.0,
                                    488700.0,
                                    532400.0,
                                    436200.0,
                                    411300.0,
                                    492600.0,
                                    477600.0,
                                    511000.0,
                                    506500.0,
                                    517299.0,
                                    358800.0,
                                    400700.0,
                                    555400.0,
                                    494900.0,
                                    372200.0,
                                    507800.0,
                                    511300.0,
                                    520300.0,
                                    542100.0,
                                    355900.0,
                                    571500.0,
                                    552800.0,
                                    467500.0,
                                    430700.0,
                                    339400.0,
                                    564100.0,
                                    600000.0,
                                    478700.0,
                                    454500.0,
                                    554800.0,
                                    458400.0,
                                    519300.0,
                                    521700.0,
                                    484099.0,
                                    359500.0,
                                    567700.0,
                                    535200.0,
                                    555500.0,
                                    541900.0,
                                    520500.0,
                                    479700.0,
                                    501100.0,
                                    533700.0,
                                    554300.0,
                                    552300.0,
                                    379700.0,
                                    522500.0,
                                    404900.0,
                                    508300.0,
                                    538600.0,
                                    573200.0,
                                    532700.0,
                                    557100.0,
                                    565900.0,
                                    518500.0,
                                    309200.0,
                                    522100.0,
                                    538500.0,
                                    509400.0,
                                    533200.0,
                                    539900.0,
                                    511900.0,
                                    535400.0,
                                    519900.0,
                                    542900.0,
                                    556800.0,
                                    523100.0,
                                    505900.0,
                                    382700.0,
                                    527400.0,
                                    451500.0,
                                    518400.0,
                                    479300.0,
                                    535600.0,
                                    493100.0,
                                    516300.0,
                                    510800.0,
                                    529600.0,
                                    274700.0,
                                    516500.0,
                                    522400.0,
                                    470500.0,
                                    526800.0,
                                    519300.0,
                                    401300.0,
                                    519000.0,
                                    518900.0,
                                    441599.0,
                                    526800.0,
                                    510100.0,
                                    349400.0,
                                    505000.0,
                                    531900.0,
                                    461100.0,
                                    272200.0,
                                    521500.0,
                                    514799.0,
                                    519200.0,
                                    535000.0,
                                    424300.0,
                                    505000.0,
                                    525600.0,
                                    510500.0,
                                    375100.0,
                                    407500.0,
                                    408600.0,
                                    425000.0,
                                    583700.0,
                                    420700.0,
                                    508100.0,
                                    574900.0,
                                    513700.0,
                                    324400.0,
                                    512299.0,
                                    522900.0,
                                    552100.0,
                                    510800.0,
                                    418200.0,
                                    498000.0,
                                    510900.0,
                                    444700.0,
                                    528100.0,
                                    526300.0,
                                    504099.0,
                                    521300.0,
                                    509500.0,
                                    565800.0,
                                    509700.0,
                                    531100.0,
                                    512400.0,
                                    506400.0,
                                    528700.0,
                                    368900.0,
                                    346700.0,
                                    520300.0,
                                    599300.0,
                                    519400.0,
                                    364400.0,
                                    520100.0,
                                    445700.0,
                                    520200.0,
                                    531600.0,
                                    504500.0,
                                    295700.0,
                                    500200.0,
                                    513200.0,
                                    460600.0,
                                    547600.0,
                                    481400.0,
                                    515700.0,
                                    518100.0,
                                    499700.0,
                                    337200.0,
                                    330600.0,
                                    517500.0,
                                    525300.0,
                                    479000.0,
                                    460400.0,
                                    536200.0,
                                    470500.0,
                                    516100.0,
                                    506500.0,
                                    482200.0,
                                    507800.0,
                                    499600.0,
                                    519099.0,
                                    504400.0,
                                    518800.0,
                                    331800.0,
                                    498100.0,
                                    469400.0,
                                    486200.0,
                                    518400.0,
                                    504099.0,
                                    518000.0,
                                    399400.0,
                                    511000.0,
                                    512200.0,
                                    571100.0,
                                    518000.0,
                                    524900.0,
                                    447600.0,
                                    368500.0,
                                    511200.0,
                                    382200.0,
                                    521000.0,
                                    513400.0,
                                    515600.0,
                                    514300.0,
                                    529500.0,
                                    519400.0,
                                    347900.0,
                                    516200.0,
                                    522900.0,
                                    295600.0,
                                    464799.0,
                                    514099.0,
                                    465600.0,
                                    512000.0,
                                    522000.0,
                                    334300.0,
                                    401000.0,
                                    522700.0,
                                    514200.0,
                                    513900.0,
                                    459099.0,
                                    507700.0,
                                    510500.0,
                                    316200.0,
                                    518900.0,
                                    550100.0,
                                    458700.0,
                                    513200.0,
                                    480300.0,
                                    445900.0,
                                    513400.0,
                                    519000.0,
                                    510700.0,
                                    519000.0,
                                    448300.0,
                                    486200.0,
                                    514400.0,
                                    441700.0,
                                    471200.0,
                                    537400.0,
                                    381700.0,
                                    503700.0,
                                    484799.0,
                                    485800.0,
                                    483000.0,
                                    505100.0,
                                    496599.0,
                                    502100.0,
                                    497800.0,
                                    518000.0,
                                    502500.0,
                                    517100.0,
                                    363100.0,
                                    511400.0,
                                    489600.0,
                                    484900.0,
                                    485300.0,
                                    508000.0,
                                    419300.0,
                                    473900.0,
                                    511800.0,
                                    505800.0,
                                    483300.0,
                                    503700.0,
                                    501200.0,
                                    515200.0,
                                    486100.0,
                                    589600.0,
                                    479300.0,
                                    520400.0,
                                    517299.0,
                                    513300.0,
                                    522100.0,
                                    451700.0,
                                    510600.0,
                                    495600.0,
                                    434900.0,
                                    513400.0,
                                    498600.0,
                                    527900.0,
                                    507400.0,
                                    500300.0,
                                    489300.0,
                                    500700.0,
                                    290900.0,
                                    432000.0,
                                    493800.0,
                                    553300.0,
                                    327400.0,
                                    519799.0,
                                    510100.0,
                                    501500.0,
                                    451400.0,
                                    512400.0,
                                    504400.0,
                                    498200.0,
                                    522200.0,
                                    517800.0,
                                    498900.0,
                                    507200.0,
                                    508300.0,
                                    494099.0,
                                    507400.0,
                                    485200.0,
                                    523800.0,
                                    351500.0,
                                    529700.0,
                                    500700.0,
                                    504500.0,
                                    386000.0,
                                    506400.0,
                                    508300.0,
                                    491700.0,
                                    432100.0,
                                    502800.0,
                                    357100.0,
                                    512700.0,
                                    503000.0,
                                    560900.0,
                                    514400.0,
                                    352000.0,
                                    333500.0,
                                    377100.0,
                                    500500.0,
                                    450100.0,
                                    377500.0,
                                    499799.0,
                                    303100.0,
                                    501800.0,
                                    511000.0,
                                    356300.0,
                                    425300.0,
                                    513500.0,
                                    418000.0,
                                    490600.0,
                                    410700.0,
                                    543000.0,
                                    496700.0,
                                    533000.0,
                                    520000.0,
                                    528400.0,
                                    360400.0,
                                    504900.0,
                                    497400.0,
                                    445000.0,
                                    508600.0,
                                    509300.0,
                                    431700.0,
                                    387900.0,
                                    444799.0,
                                    436200.0,
                                    496000.0,
                                    490500.0,
                                    496900.0,
                                    499000.0,
                                    516800.0,
                                    493000.0,
                                    498700.0,
                                    503200.0,
                                    387400.0,
                                    512900.0,
                                    516900.0,
                                    499400.0,
                                    519400.0,
                                    505500.0,
                                    531300.0,
                                    510900.0,
                                    517700.0,
                                    556400.0,
                                    538300.0,
                                    512500.0,
                                    581200.0,
                                    497200.0,
                                    464200.0,
                                    506200.0,
                                    515000.0,
                                    505400.0,
                                    529900.0,
                                    506100.0,
                                    502600.0,
                                    440800.0,
                                    505600.0,
                                    589800.0,
                                    503100.0,
                                    504099.0,
                                    508200.0,
                                    511700.0,
                                    497200.0,
                                    507800.0,
                                    530800.0,
                                    495000.0,
                                    513100.0,
                                    505600.0,
                                    500700.0,
                                    551700.0,
                                    502600.0,
                                    501599.0,
                                    497900.0,
                                    566800.0,
                                    511100.0,
                                    501800.0,
                                    352200.0,
                                    562800.0,
                                    513500.0,
                                    563100.0,
                                    503000.0,
                                    499099.0,
                                    587700.0,
                                    512900.0,
                                    508300.0,
                                    512700.0,
                                    591100.0,
                                    514200.0,
                                    523800.0,
                                    511000.0,
                                    516700.0,
                                    511900.0,
                                    514300.0,
                                    279100.0,
                                    381800.0,
                                    511700.0,
                                    527600.0,
                                    598300.0,
                                    434600.0,
                                    511000.0,
                                    519900.0,
                                    522200.0,
                                    531000.0,
                                    483500.0,
                                    519700.0,
                                    600000.0,
                                    503700.0,
                                    505800.0,
                                    498400.0,
                                    515800.0,
                                    516900.0,
                                    322900.0,
                                    523700.0,
                                    511500.0,
                                    519600.0,
                                    399600.0,
                                    518500.0,
                                    519700.0,
                                    397500.0,
                                    484600.0,
                                    513700.0,
                                    268630.0,
                                    315400.0,
                                    517200.0,
                                    514500.0,
                                    505900.0,
                                    515300.0,
                                    516000.0,
                                    473100.0,
                                    509099.0,
                                    514500.0,
                                    301900.0,
                                    490500.0,
                                    486900.0,
                                    380200.0,
                                    531800.0,
                                    455000.0,
                                    425100.0,
                                    448300.0,
                                    515200.0,
                                    527100.0,
                                    522299.0,
                                    344700.0,
                                    514200.0,
                                    518500.0,
                                    519099.0,
                                    497800.0,
                                    475100.0,
                                    440200.0,
                                    459700.0,
                                    515900.0,
                                    376300.0,
                                    304500.0,
                                    445500.0,
                                    485800.0,
                                    375000.0,
                                    354000.0,
                                    513200.0,
                                    309700.0,
                                    472900.0,
                                    507299.0,
                                    516300.0,
                                    521900.0,
                                    569700.0,
                                    546300.0,
                                    327100.0,
                                    517900.0,
                                    578300.0,
                                    518800.0,
                                    524000.0,
                                    386000.0,
                                    531300.0,
                                    510600.0,
                                    378600.0,
                                    521400.0,
                                    354000.0,
                                    520200.0,
                                    596800.0,
                                    524200.0,
                                    557800.0,
                                    525100.0,
                                    383600.0,
                                    433600.0,
                                    528500.0,
                                    305900.0,
                                    526000.0,
                                    530100.0,
                                    519200.0,
                                    523900.0,
                                    543400.0,
                                    527400.0,
                                    310200.0,
                                    525900.0,
                                    442000.0,
                                    404400.0,
                                    515800.0,
                                    516599.0,
                                    558500.0,
                                    523300.0,
                                    514200.0,
                                    479700.0,
                                    357800.0,
                                    457800.0,
                                    380700.0,
                                    514900.0,
                                    341800.0,
                                    524500.0,
                                    407400.0,
                                    516300.0,
                                    532800.0,
                                    476599.0,
                                    281100.0,
                                    520600.0,
                                    519500.0,
                                    524300.0,
                                    527000.0,
                                    526200.0,
                                    522400.0,
                                    488700.0,
                                    523100.0,
                                    524200.0,
                                    536500.0,
                                    530300.0,
                                    396000.0,
                                    514700.0,
                                    540900.0,
                                    428100.0,
                                    531600.0,
                                    520600.0,
                                    525500.0,
                                    525100.0,
                                    537000.0,
                                    330700.0,
                                    552700.0,
                                    497800.0,
                                    318000.0,
                                    537300.0,
                                    472299.0,
                                    298100.0,
                                    377500.0,
                                    529200.0,
                                    533300.0,
                                    531200.0,
                                    380000.0,
                                    537300.0,
                                    583800.0,
                                    535800.0,
                                    511200.0,
                                    379700.0,
                                    472600.0,
                                    579400.0,
                                    444400.0,
                                    509799.0,
                                    433500.0,
                                    430500.0,
                                    523700.0,
                                    500600.0,
                                    277800.0,
                                    535700.0,
                                    518500.0,
                                    530200.0,
                                    560800.0,
                                    516200.0,
                                    522700.0,
                                    525000.0,
                                    561000.0,
                                    531700.0,
                                    549000.0,
                                    517200.0,
                                    522600.0,
                                    514000.0,
                                    512200.0,
                                    516500.0,
                                    511400.0,
                                    522600.0,
                                    519700.0,
                                    402100.0,
                                    524900.0,
                                    339000.0,
                                    534900.0,
                                    541700.0,
                                    546700.0,
                                    519600.0,
                                    348100.0,
                                    527100.0,
                                    523700.0,
                                    498600.0,
                                    535500.0,
                                    504700.0,
                                    456200.0,
                                    509300.0,
                                    499500.0,
                                    503600.0,
                                    517700.0,
                                    507100.0,
                                    513500.0,
                                    520900.0,
                                    545600.0,
                                    515300.0,
                                    525500.0,
                                    515300.0,
                                    412700.0,
                                    550000.0,
                                    507800.0,
                                    594700.0,
                                    275700.0,
                                    284100.0,
                                    531200.0,
                                    524300.0,
                                    497600.0,
                                    526100.0,
                                    424000.0,
                                    513200.0,
                                    406100.0,
                                    520600.0,
                                    524000.0,
                                    484600.0,
                                    590700.0,
                                    573700.0,
                                    402900.0,
                                    521400.0,
                                    450200.0,
                                    520500.0,
                                    366400.0,
                                    414500.0,
                                    531300.0,
                                    404700.0,
                                    504400.0,
                                    503100.0,
                                    531300.0,
                                    546200.0,
                                    517299.0,
                                    348800.0,
                                    351000.0,
                                    496900.0,
                                    513600.0,
                                    514900.0,
                                    515200.0,
                                    393600.0,
                                    515800.0,
                                    400400.0,
                                    521400.0,
                                    497700.0,
                                    537300.0,
                                    484200.0,
                                    535100.0,
                                    510100.0,
                                    426100.0,
                                    502400.0,
                                    537200.0,
                                    305700.0,
                                    509200.0,
                                    510900.0,
                                    516200.0,
                                    509900.0,
                                    523000.0,
                                    490000.0,
                                    433000.0,
                                    508700.0,
                                    337600.0,
                                    515800.0,
                                    347200.0,
                                    507700.0,
                                    498500.0,
                                    514099.0,
                                    498000.0,
                                    521300.0,
                                    513600.0,
                                    467700.0,
                                    597800.0,
                                    512600.0,
                                    535700.0,
                                    517600.0,
                                    510400.0,
                                    361500.0,
                                    508400.0,
                                    550900.0,
                                    367600.0,
                                    326100.0,
                                    352700.0,
                                    579200.0,
                                    483200.0,
                                    352800.0,
                                    434600.0,
                                    462100.0,
                                    510700.0,
                                    564600.0,
                                    600000.0,
                                    268630.0,
                                    519400.0,
                                    565500.0,
                                    555200.0,
                                    466900.0,
                                    521900.0,
                                    390200.0,
                                    552600.0,
                                    512000.0,
                                    563600.0,
                                    513800.0,
                                    519600.0,
                                    439900.0,
                                    383100.0,
                                    544900.0,
                                    522200.0,
                                    525900.0,
                                    529000.0,
                                    361000.0,
                                    420000.0,
                                    490000.0,
                                    522000.0,
                                    410200.0,
                                    540600.0,
                                    563200.0,
                                    493900.0,
                                    507500.0,
                                    523200.0,
                                    600000.0,
                                    556000.0,
                                    453800.0,
                                    507800.0,
                                    517100.0,
                                    504300.0,
                                    532700.0,
                                    512000.0,
                                    529500.0,
                                    501800.0,
                                    467100.0,
                                    515700.0,
                                    526900.0,
                                    522299.0,
                                    534600.0,
                                    511400.0,
                                    522400.0,
                                    508400.0,
                                    554200.0,
                                    512900.0,
                                    341500.0,
                                    455800.0,
                                    525300.0,
                                    509400.0,
                                    524099.0,
                                    519400.0,
                                    471200.0,
                                    597300.0,
                                    448200.0,
                                    402800.0,
                                    519300.0,
                                    537200.0,
                                    513000.0,
                                    532300.0,
                                    529800.0,
                                    535000.0,
                                    522700.0,
                                    516200.0,
                                    455400.0,
                                    429700.0,
                                    479799.0,
                                    516400.0,
                                    359000.0,
                                    518400.0,
                                    520400.0,
                                    427200.0,
                                    536700.0,
                                    515900.0,
                                    576100.0,
                                    518100.0,
                                    320200.0,
                                    297400.0,
                                    368200.0,
                                    432600.0,
                                    571800.0,
                                    517600.0,
                                    515400.0,
                                    534900.0,
                                    474200.0,
                                    513300.0,
                                    530600.0,
                                    524099.0,
                                    399500.0,
                                    497299.0,
                                    507500.0,
                                    516500.0,
                                    362100.0,
                                    471800.0,
                                    480600.0,
                                    538100.0,
                                    500400.0,
                                    515800.0,
                                    518200.0,
                                    522000.0,
                                    498000.0,
                                    538500.0,
                                    440800.0,
                                    533600.0,
                                    514300.0,
                                    538000.0,
                                    552600.0,
                                    556500.0,
                                    512000.0,
                                    523900.0,
                                    514099.0,
                                    505700.0,
                                    535800.0,
                                    505900.0,
                                    485100.0,
                                    515300.0,
                                    503500.0,
                                    510400.0,
                                    492200.0,
                                    462600.0,
                                    375000.0,
                                    511599.0,
                                    384700.0,
                                    514500.0,
                                    516400.0,
                                    414300.0,
                                    577900.0,
                                    320200.0,
                                    513300.0,
                                    504300.0,
                                    522200.0,
                                    308000.0,
                                    521500.0,
                                    531300.0,
                                    499300.0,
                                    535800.0,
                                    502600.0,
                                    509300.0,
                                    505600.0,
                                    545000.0,
                                    453800.0,
                                    505700.0,
                                    502000.0,
                                    526500.0,
                                    452900.0,
                                    522100.0,
                                    510900.0,
                                    503100.0,
                                    523600.0,
                                    526500.0,
                                    512800.0,
                                    272000.0,
                                    427299.0,
                                    365300.0,
                                    554800.0,
                                    590700.0,
                                    407900.0,
                                    475500.0,
                                    575700.0,
                                    412299.0,
                                    351000.0
                                ]
                            },
                            {
                                "label": "Cyclinder Material",
                                "values": [
                                    0.0,
                                    0.0,
                                    1.0,
                                    0.5,
                                    2.0,
                                    3.0,
                                    3.0,
                                    0.0,
                                    1.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    0.0,
                                    0.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    0.0,
                                    1.0,
                                    1.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    3.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    1.0,
                                    0.0,
                                    1.0,
                                    3.0,
                                    1.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    1.0,
                                    1.0,
                                    2.0,
                                    1.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    3.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    1.0,
                                    0.0,
                                    0.0,
                                    3.0,
                                    1.0,
                                    1.0,
                                    3.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    3.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    3.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    0.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    1.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    1.0,
                                    1.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    1.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    3.0,
                                    2.0,
                                    2.0,
                                    0.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    2.0,
                                    1.0
                                ],
                                "ticktext": [
                                    "A",
                                    "AB",
                                    "B",
                                    "Y",
                                    "Z"
                                ],
                                "tickvals": [
                                    0,
                                    0.5,
                                    1,
                                    2,
                                    3
                                ]
                            },
                            {
                                "label": "Block Material",
                                "range": [
                                    -1,
                                    4
                                ],
                                "values": [
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    1,
                                    1,
                                    1,
                                    1,
                                    1,
                                    2,
                                    2,
                                    2,
                                    2,
                                    2,
                                    2,
                                    2,
                                    3,
                                    3,
                                    3,
                                    3,
                                    3,
                                    3,
                                    1,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    1,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    1,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    2,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    1,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    1,
                                    3,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    2,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    1,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    3,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    1,
                                    2,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    1,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    3,
                                    0,
                                    0,
                                    0,
                                    1,
                                    3,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    2,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    1,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    1,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    2,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    1,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    3,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0,
                                    0
                                ],
                                "tickvals": [
                                    0,
                                    1,
                                    2,
                                    3
                                ]
                            },
                            {
                                "label": "Total Weight",
                                "range": [
                                    134,
                                    3154
                                ],
                                "values": [
                                    160,
                                    1324,
                                    252,
                                    1711,
                                    173,
                                    624,
                                    228,
                                    2474,
                                    371,
                                    3103,
                                    312,
                                    2408,
                                    460,
                                    1727,
                                    754,
                                    2457,
                                    227,
                                    1963,
                                    354,
                                    2797,
                                    377,
                                    1327,
                                    462,
                                    1009,
                                    166,
                                    1415,
                                    1118,
                                    1063,
                                    593,
                                    498,
                                    959,
                                    1331,
                                    1146,
                                    645,
                                    921,
                                    1596,
                                    663,
                                    568,
                                    492,
                                    833,
                                    630,
                                    445,
                                    504,
                                    394,
                                    647,
                                    314,
                                    1039,
                                    829,
                                    911,
                                    282,
                                    925,
                                    681,
                                    581,
                                    506,
                                    368,
                                    373,
                                    628,
                                    538,
                                    418,
                                    419,
                                    478,
                                    884,
                                    847,
                                    369,
                                    410,
                                    344,
                                    396,
                                    501,
                                    510,
                                    379,
                                    733,
                                    1649,
                                    239,
                                    1035,
                                    1839,
                                    967,
                                    514,
                                    875,
                                    794,
                                    414,
                                    664,
                                    447,
                                    839,
                                    540,
                                    636,
                                    499,
                                    1059,
                                    743,
                                    173,
                                    473,
                                    519,
                                    465,
                                    623,
                                    726,
                                    631,
                                    521,
                                    643,
                                    323,
                                    424,
                                    472,
                                    657,
                                    510,
                                    521,
                                    661,
                                    690,
                                    497,
                                    1664,
                                    2162,
                                    828,
                                    1062,
                                    479,
                                    1452,
                                    574,
                                    604,
                                    1069,
                                    766,
                                    268,
                                    369,
                                    755,
                                    644,
                                    811,
                                    636,
                                    363,
                                    375,
                                    359,
                                    378,
                                    336,
                                    413,
                                    680,
                                    431,
                                    361,
                                    493,
                                    761,
                                    412,
                                    386,
                                    339,
                                    628,
                                    390,
                                    648,
                                    611,
                                    323,
                                    369,
                                    555,
                                    142,
                                    2133,
                                    653,
                                    392,
                                    597,
                                    740,
                                    345,
                                    345,
                                    1211,
                                    600,
                                    396,
                                    369,
                                    390,
                                    481,
                                    498,
                                    371,
                                    337,
                                    316,
                                    363,
                                    676,
                                    330,
                                    353,
                                    527,
                                    352,
                                    329,
                                    341,
                                    349,
                                    334,
                                    357,
                                    501,
                                    363,
                                    1066,
                                    284,
                                    307,
                                    338,
                                    367,
                                    327,
                                    901,
                                    330,
                                    367,
                                    311,
                                    543,
                                    370,
                                    355,
                                    318,
                                    398,
                                    335,
                                    346,
                                    382,
                                    337,
                                    807,
                                    365,
                                    349,
                                    350,
                                    415,
                                    346,
                                    330,
                                    337,
                                    330,
                                    2201,
                                    489,
                                    338,
                                    322,
                                    349,
                                    744,
                                    239,
                                    327,
                                    327,
                                    317,
                                    763,
                                    303,
                                    343,
                                    334,
                                    293,
                                    298,
                                    472,
                                    558,
                                    331,
                                    769,
                                    321,
                                    315,
                                    342,
                                    2161,
                                    325,
                                    1667,
                                    493,
                                    328,
                                    878,
                                    328,
                                    737,
                                    315,
                                    325,
                                    317,
                                    529,
                                    727,
                                    390,
                                    320,
                                    953,
                                    729,
                                    300,
                                    538,
                                    663,
                                    333,
                                    320,
                                    309,
                                    596,
                                    591,
                                    325,
                                    300,
                                    709,
                                    303,
                                    312,
                                    501,
                                    737,
                                    306,
                                    360,
                                    320,
                                    1585,
                                    324,
                                    196,
                                    294,
                                    827,
                                    305,
                                    316,
                                    415,
                                    557,
                                    302,
                                    550,
                                    332,
                                    289,
                                    730,
                                    319,
                                    324,
                                    369,
                                    335,
                                    532,
                                    422,
                                    315,
                                    1423,
                                    1091,
                                    320,
                                    323,
                                    358,
                                    307,
                                    314,
                                    317,
                                    218,
                                    414,
                                    299,
                                    323,
                                    371,
                                    322,
                                    314,
                                    311,
                                    338,
                                    310,
                                    324,
                                    319,
                                    674,
                                    305,
                                    366,
                                    356,
                                    316,
                                    338,
                                    352,
                                    343,
                                    339,
                                    327,
                                    497,
                                    323,
                                    780,
                                    427,
                                    346,
                                    311,
                                    319,
                                    307,
                                    343,
                                    312,
                                    1695,
                                    329,
                                    293,
                                    316,
                                    429,
                                    341,
                                    315,
                                    548,
                                    330,
                                    307,
                                    331,
                                    321,
                                    427,
                                    319,
                                    530,
                                    516,
                                    310,
                                    344,
                                    724,
                                    479,
                                    2748,
                                    667,
                                    977,
                                    426,
                                    696,
                                    755,
                                    944,
                                    474,
                                    331,
                                    314,
                                    319,
                                    381,
                                    294,
                                    282,
                                    302,
                                    264,
                                    370,
                                    449,
                                    314,
                                    1029,
                                    318,
                                    312,
                                    706,
                                    349,
                                    508,
                                    297,
                                    293,
                                    322,
                                    531,
                                    480,
                                    396,
                                    286,
                                    367,
                                    315,
                                    308,
                                    365,
                                    302,
                                    467,
                                    302,
                                    313,
                                    421,
                                    351,
                                    295,
                                    792,
                                    296,
                                    651,
                                    305,
                                    1207,
                                    501,
                                    325,
                                    311,
                                    302,
                                    290,
                                    693,
                                    312,
                                    681,
                                    474,
                                    296,
                                    321,
                                    305,
                                    322,
                                    312,
                                    317,
                                    453,
                                    322,
                                    312,
                                    550,
                                    331,
                                    334,
                                    297,
                                    560,
                                    324,
                                    812,
                                    311,
                                    320,
                                    336,
                                    533,
                                    316,
                                    1305,
                                    502,
                                    857,
                                    329,
                                    1089,
                                    521,
                                    495,
                                    1025,
                                    316,
                                    373,
                                    301,
                                    935,
                                    685,
                                    547,
                                    311,
                                    622,
                                    851,
                                    880,
                                    175,
                                    331,
                                    343,
                                    1122,
                                    314,
                                    494,
                                    211,
                                    329,
                                    228,
                                    307,
                                    306,
                                    302,
                                    312,
                                    324,
                                    549,
                                    354,
                                    390,
                                    443,
                                    305,
                                    303,
                                    1364,
                                    320,
                                    352,
                                    412,
                                    328,
                                    522,
                                    1509,
                                    303,
                                    314,
                                    326,
                                    304,
                                    376,
                                    297,
                                    354,
                                    305,
                                    303,
                                    309,
                                    324,
                                    543,
                                    1231,
                                    306,
                                    865,
                                    477,
                                    388,
                                    388,
                                    603,
                                    532,
                                    310,
                                    1249,
                                    321,
                                    162,
                                    431,
                                    346,
                                    880,
                                    355,
                                    789,
                                    320,
                                    383,
                                    317,
                                    317,
                                    571,
                                    324,
                                    321,
                                    810,
                                    1075,
                                    329,
                                    363,
                                    310,
                                    385,
                                    322,
                                    1005,
                                    344,
                                    1169,
                                    526,
                                    286,
                                    328,
                                    558,
                                    295,
                                    505,
                                    339,
                                    608,
                                    526,
                                    352,
                                    312,
                                    391,
                                    933,
                                    448,
                                    590,
                                    411,
                                    463,
                                    391,
                                    697,
                                    1113,
                                    327,
                                    604,
                                    845,
                                    1066,
                                    330,
                                    435,
                                    750,
                                    325,
                                    709,
                                    523,
                                    315,
                                    353,
                                    882,
                                    736,
                                    456,
                                    1111,
                                    1050,
                                    454,
                                    955,
                                    1728,
                                    423,
                                    796,
                                    793,
                                    1348,
                                    761,
                                    970,
                                    668,
                                    459,
                                    386,
                                    783,
                                    276,
                                    820,
                                    708,
                                    501,
                                    764,
                                    445,
                                    492,
                                    464,
                                    496,
                                    419,
                                    967,
                                    1243,
                                    751,
                                    472,
                                    377,
                                    419,
                                    628,
                                    480,
                                    701,
                                    368,
                                    486,
                                    949,
                                    668,
                                    720,
                                    570,
                                    425,
                                    576,
                                    352,
                                    449,
                                    427,
                                    1551,
                                    349,
                                    478,
                                    370,
                                    327,
                                    381,
                                    379,
                                    333,
                                    403,
                                    387,
                                    378,
                                    368,
                                    450,
                                    382,
                                    376,
                                    1184,
                                    330,
                                    349,
                                    416,
                                    435,
                                    381,
                                    362,
                                    362,
                                    426,
                                    379,
                                    372,
                                    345,
                                    841,
                                    432,
                                    952,
                                    441,
                                    238,
                                    313,
                                    437,
                                    392,
                                    763,
                                    719,
                                    376,
                                    370,
                                    679,
                                    387,
                                    531,
                                    591,
                                    352,
                                    377,
                                    174,
                                    366,
                                    340,
                                    383,
                                    361,
                                    341,
                                    335,
                                    346,
                                    392,
                                    390,
                                    731,
                                    477,
                                    861,
                                    419,
                                    1073,
                                    337,
                                    523,
                                    972,
                                    624,
                                    404,
                                    485,
                                    398,
                                    1249,
                                    366,
                                    371,
                                    400,
                                    419,
                                    344,
                                    823,
                                    365,
                                    506,
                                    925,
                                    305,
                                    628,
                                    357,
                                    323,
                                    489,
                                    662,
                                    354,
                                    833,
                                    353,
                                    369,
                                    352,
                                    342,
                                    493,
                                    366,
                                    329,
                                    862,
                                    333,
                                    361,
                                    816,
                                    785,
                                    500,
                                    502,
                                    368,
                                    343,
                                    349,
                                    366,
                                    340,
                                    325,
                                    359,
                                    371,
                                    403,
                                    333,
                                    385,
                                    336,
                                    352,
                                    716,
                                    424,
                                    395,
                                    1525,
                                    338,
                                    342,
                                    504,
                                    392,
                                    808,
                                    362,
                                    327,
                                    300,
                                    1073,
                                    1137,
                                    376,
                                    332,
                                    363,
                                    340,
                                    876,
                                    396,
                                    319,
                                    339,
                                    330,
                                    290,
                                    1026,
                                    452,
                                    339,
                                    286,
                                    336,
                                    873,
                                    514,
                                    339,
                                    363,
                                    883,
                                    334,
                                    324,
                                    331,
                                    324,
                                    324,
                                    326,
                                    313,
                                    324,
                                    325,
                                    332,
                                    313,
                                    321,
                                    309,
                                    692,
                                    296,
                                    312,
                                    303,
                                    333,
                                    649,
                                    697,
                                    374,
                                    294,
                                    357,
                                    313,
                                    316,
                                    294,
                                    316,
                                    422,
                                    450,
                                    321,
                                    331,
                                    302,
                                    713,
                                    303,
                                    335,
                                    321,
                                    916,
                                    350,
                                    313,
                                    307,
                                    313,
                                    1121,
                                    312,
                                    1299,
                                    481,
                                    306,
                                    1072,
                                    304,
                                    622,
                                    970,
                                    310,
                                    310,
                                    980,
                                    472,
                                    317,
                                    535,
                                    328,
                                    898,
                                    661,
                                    386,
                                    335,
                                    320,
                                    337,
                                    309,
                                    293,
                                    1362,
                                    351,
                                    876,
                                    403,
                                    319,
                                    514,
                                    1102,
                                    456,
                                    309,
                                    498,
                                    706,
                                    305,
                                    922,
                                    1655,
                                    330,
                                    284,
                                    915,
                                    305,
                                    319,
                                    522,
                                    546,
                                    307,
                                    502,
                                    341,
                                    358,
                                    450,
                                    324,
                                    314,
                                    322,
                                    320,
                                    321,
                                    388,
                                    307,
                                    297,
                                    310,
                                    605,
                                    358,
                                    1048,
                                    322,
                                    315,
                                    468,
                                    350,
                                    179,
                                    1056,
                                    1079,
                                    342,
                                    319,
                                    345,
                                    348,
                                    314,
                                    329,
                                    311,
                                    488,
                                    775,
                                    318,
                                    312,
                                    510,
                                    884,
                                    776,
                                    313,
                                    304,
                                    488,
                                    329,
                                    294,
                                    501,
                                    315,
                                    381,
                                    348,
                                    450,
                                    299,
                                    414,
                                    481,
                                    1377,
                                    342,
                                    1135,
                                    637,
                                    302,
                                    322,
                                    309,
                                    305,
                                    311,
                                    696,
                                    303,
                                    486,
                                    293,
                                    308,
                                    1131,
                                    541,
                                    295,
                                    1198,
                                    319,
                                    301,
                                    293,
                                    321,
                                    1268,
                                    281,
                                    361,
                                    304,
                                    306,
                                    339,
                                    1439,
                                    618,
                                    644,
                                    359,
                                    302,
                                    319,
                                    297,
                                    690,
                                    327,
                                    299,
                                    300,
                                    305,
                                    503,
                                    326,
                                    309,
                                    367,
                                    392,
                                    964,
                                    325,
                                    291,
                                    317,
                                    281,
                                    386,
                                    282,
                                    281,
                                    366,
                                    351,
                                    906,
                                    198,
                                    294,
                                    733,
                                    442,
                                    350,
                                    315,
                                    359,
                                    435,
                                    1220,
                                    322,
                                    330,
                                    307,
                                    434,
                                    313,
                                    304,
                                    1111,
                                    313,
                                    313,
                                    330,
                                    336,
                                    764,
                                    312,
                                    286,
                                    348,
                                    924,
                                    309,
                                    327,
                                    317,
                                    364,
                                    423,
                                    294,
                                    337,
                                    323,
                                    313,
                                    718,
                                    676,
                                    323,
                                    335,
                                    332,
                                    332,
                                    321,
                                    1004,
                                    340,
                                    324,
                                    296,
                                    312,
                                    512,
                                    311,
                                    324,
                                    306,
                                    308,
                                    313,
                                    310,
                                    367,
                                    330,
                                    317,
                                    311,
                                    307,
                                    308,
                                    309,
                                    451,
                                    312,
                                    169,
                                    320,
                                    462,
                                    316,
                                    304,
                                    314,
                                    324,
                                    311,
                                    303,
                                    316,
                                    324,
                                    316,
                                    364,
                                    305,
                                    307,
                                    332,
                                    628,
                                    303,
                                    336,
                                    305,
                                    318,
                                    305,
                                    323,
                                    305,
                                    289,
                                    314,
                                    309,
                                    274,
                                    302,
                                    326,
                                    469,
                                    404,
                                    331,
                                    323,
                                    301,
                                    690,
                                    755,
                                    327,
                                    322,
                                    299,
                                    470,
                                    319,
                                    246,
                                    692,
                                    551,
                                    327,
                                    369,
                                    334,
                                    321,
                                    694,
                                    322,
                                    313,
                                    319,
                                    758,
                                    494,
                                    536,
                                    300,
                                    483,
                                    295,
                                    407,
                                    289,
                                    330,
                                    314,
                                    212,
                                    306,
                                    312,
                                    360,
                                    326,
                                    335,
                                    310,
                                    461,
                                    1065,
                                    299,
                                    1554,
                                    316,
                                    883,
                                    306,
                                    314,
                                    302,
                                    381,
                                    313,
                                    939,
                                    310,
                                    298,
                                    295,
                                    1040,
                                    613,
                                    365,
                                    317,
                                    842,
                                    311,
                                    427,
                                    322,
                                    315,
                                    358,
                                    313,
                                    356,
                                    307,
                                    305,
                                    727,
                                    303,
                                    343,
                                    674,
                                    300,
                                    314,
                                    303,
                                    311,
                                    694,
                                    456,
                                    434,
                                    320,
                                    422,
                                    307,
                                    293,
                                    311,
                                    149,
                                    510,
                                    314,
                                    704,
                                    1070,
                                    294,
                                    309,
                                    368,
                                    299,
                                    328,
                                    471,
                                    300,
                                    292,
                                    305,
                                    309,
                                    336,
                                    306,
                                    323,
                                    323,
                                    367,
                                    319,
                                    374,
                                    311,
                                    324,
                                    449,
                                    345,
                                    175,
                                    300,
                                    330,
                                    390,
                                    740,
                                    1029,
                                    644,
                                    532,
                                    339,
                                    966,
                                    307,
                                    325,
                                    301,
                                    245,
                                    916,
                                    334,
                                    463,
                                    373,
                                    313,
                                    671,
                                    678,
                                    298,
                                    315,
                                    286,
                                    820,
                                    312,
                                    535,
                                    340,
                                    464,
                                    322,
                                    323,
                                    416,
                                    595,
                                    571,
                                    596,
                                    753,
                                    725,
                                    295,
                                    304,
                                    294,
                                    451,
                                    308,
                                    303,
                                    310,
                                    506,
                                    308,
                                    744,
                                    308,
                                    289,
                                    311,
                                    293,
                                    455,
                                    327,
                                    263,
                                    1153,
                                    1348,
                                    473,
                                    148,
                                    1811,
                                    134,
                                    294,
                                    577,
                                    834,
                                    349,
                                    287,
                                    1848,
                                    316,
                                    1058,
                                    839,
                                    759,
                                    799,
                                    323,
                                    501,
                                    372,
                                    598,
                                    366,
                                    454,
                                    383,
                                    334,
                                    324,
                                    323,
                                    696,
                                    763,
                                    318,
                                    351,
                                    334,
                                    321,
                                    1631,
                                    295,
                                    354,
                                    292,
                                    321,
                                    741,
                                    1141,
                                    318,
                                    722,
                                    320,
                                    311,
                                    303,
                                    302,
                                    323,
                                    335,
                                    442,
                                    310,
                                    807,
                                    338,
                                    324,
                                    341,
                                    958,
                                    301,
                                    327,
                                    458,
                                    321,
                                    319,
                                    318,
                                    337,
                                    670,
                                    1254,
                                    1019,
                                    340,
                                    193,
                                    740,
                                    308,
                                    413,
                                    336,
                                    203,
                                    330,
                                    321,
                                    336,
                                    966,
                                    561,
                                    1178,
                                    323,
                                    329,
                                    582,
                                    306,
                                    202,
                                    455,
                                    305,
                                    1161,
                                    845,
                                    341,
                                    396,
                                    428,
                                    1298,
                                    973,
                                    300,
                                    692,
                                    519,
                                    296,
                                    306,
                                    441,
                                    759,
                                    572,
                                    299,
                                    628,
                                    340,
                                    514,
                                    320,
                                    296,
                                    326,
                                    569,
                                    823,
                                    373,
                                    618,
                                    410,
                                    317,
                                    313,
                                    712,
                                    210,
                                    363,
                                    717,
                                    1324,
                                    1247,
                                    297,
                                    315,
                                    315,
                                    313,
                                    1031,
                                    354,
                                    312,
                                    312,
                                    208,
                                    374,
                                    338,
                                    361,
                                    704,
                                    433,
                                    320,
                                    319,
                                    295,
                                    528,
                                    291,
                                    1356,
                                    520,
                                    802,
                                    369,
                                    856,
                                    954,
                                    612,
                                    286,
                                    316,
                                    440,
                                    901,
                                    413,
                                    373,
                                    375,
                                    301,
                                    462,
                                    645,
                                    414,
                                    356,
                                    554,
                                    2389,
                                    377,
                                    371,
                                    735,
                                    458,
                                    368,
                                    400,
                                    355,
                                    345,
                                    756,
                                    377,
                                    381,
                                    275,
                                    417,
                                    337,
                                    611,
                                    390,
                                    326,
                                    319,
                                    383,
                                    338,
                                    375,
                                    329,
                                    730,
                                    416,
                                    532,
                                    312,
                                    312,
                                    326,
                                    741,
                                    396,
                                    292,
                                    480,
                                    196,
                                    288,
                                    375,
                                    347,
                                    477,
                                    969,
                                    311,
                                    535,
                                    1560,
                                    328,
                                    312,
                                    719,
                                    459,
                                    299,
                                    324,
                                    312,
                                    505,
                                    325,
                                    547,
                                    1029,
                                    342,
                                    908,
                                    308,
                                    999,
                                    336,
                                    568,
                                    466,
                                    353,
                                    645,
                                    324,
                                    518,
                                    722,
                                    285,
                                    613,
                                    699,
                                    610,
                                    1555,
                                    792,
                                    683,
                                    302,
                                    676,
                                    582,
                                    290,
                                    865,
                                    1675,
                                    559,
                                    398,
                                    271,
                                    459,
                                    1523,
                                    366,
                                    276,
                                    882,
                                    488,
                                    562,
                                    381,
                                    295,
                                    339,
                                    543,
                                    381,
                                    623,
                                    551,
                                    367,
                                    459,
                                    348,
                                    309,
                                    350,
                                    335,
                                    328,
                                    792,
                                    320,
                                    323,
                                    324,
                                    767,
                                    443,
                                    567,
                                    380,
                                    290,
                                    362,
                                    337,
                                    345,
                                    483,
                                    560,
                                    467,
                                    356,
                                    334,
                                    749,
                                    631,
                                    321,
                                    460,
                                    356,
                                    328,
                                    329,
                                    241,
                                    366,
                                    703,
                                    346,
                                    515,
                                    362,
                                    465,
                                    841,
                                    344,
                                    304,
                                    341,
                                    560,
                                    364,
                                    355,
                                    381,
                                    357,
                                    194,
                                    176,
                                    341,
                                    386,
                                    322,
                                    342,
                                    1393,
                                    185,
                                    341,
                                    499,
                                    3154,
                                    324,
                                    435,
                                    542,
                                    353,
                                    402,
                                    292,
                                    334,
                                    413,
                                    179,
                                    806,
                                    892,
                                    494,
                                    281,
                                    527,
                                    332,
                                    655,
                                    724,
                                    1253,
                                    300,
                                    326,
                                    302,
                                    701,
                                    570,
                                    408,
                                    669,
                                    360,
                                    466,
                                    795,
                                    373,
                                    301,
                                    316,
                                    355,
                                    312,
                                    303,
                                    307,
                                    434,
                                    287,
                                    321,
                                    321,
                                    300,
                                    686,
                                    306,
                                    324,
                                    716,
                                    316,
                                    875,
                                    323,
                                    479,
                                    751,
                                    326,
                                    547,
                                    371,
                                    438,
                                    329,
                                    734,
                                    1176,
                                    495,
                                    2745,
                                    736,
                                    421,
                                    327,
                                    436,
                                    323,
                                    353,
                                    670,
                                    442,
                                    300,
                                    595,
                                    369,
                                    727,
                                    484,
                                    352,
                                    369,
                                    325,
                                    341,
                                    266,
                                    481,
                                    306,
                                    323,
                                    294,
                                    493,
                                    365,
                                    400,
                                    382,
                                    372,
                                    540,
                                    310,
                                    317,
                                    932,
                                    321,
                                    404,
                                    328,
                                    303,
                                    340,
                                    324,
                                    313,
                                    315,
                                    318,
                                    331,
                                    729,
                                    1063,
                                    306,
                                    322,
                                    339,
                                    317,
                                    455,
                                    312,
                                    693,
                                    332,
                                    416,
                                    320,
                                    362,
                                    322,
                                    327,
                                    331,
                                    1044,
                                    309,
                                    337,
                                    363,
                                    426,
                                    407,
                                    613,
                                    471,
                                    337,
                                    321,
                                    308,
                                    326,
                                    976,
                                    318,
                                    1265,
                                    314,
                                    874,
                                    294,
                                    319,
                                    366,
                                    337,
                                    343,
                                    453,
                                    322,
                                    481,
                                    447,
                                    749,
                                    370,
                                    337,
                                    308,
                                    316,
                                    516,
                                    385,
                                    426,
                                    349,
                                    416,
                                    585,
                                    373,
                                    353,
                                    360,
                                    194,
                                    419,
                                    311,
                                    318,
                                    317,
                                    287,
                                    341,
                                    335,
                                    587,
                                    551,
                                    393,
                                    303,
                                    288,
                                    1113,
                                    322,
                                    313,
                                    863,
                                    329,
                                    285,
                                    276,
                                    327,
                                    345,
                                    769,
                                    956,
                                    1183,
                                    866,
                                    765,
                                    309,
                                    668,
                                    1849,
                                    516,
                                    395,
                                    363,
                                    427,
                                    293,
                                    359,
                                    260,
                                    1235,
                                    339,
                                    465,
                                    329,
                                    725,
                                    242,
                                    361,
                                    302,
                                    347,
                                    318,
                                    337,
                                    333,
                                    325,
                                    313,
                                    544,
                                    318,
                                    304,
                                    436,
                                    332,
                                    638,
                                    741,
                                    969,
                                    362,
                                    309,
                                    909,
                                    751,
                                    721,
                                    934,
                                    535,
                                    1328,
                                    221,
                                    459,
                                    341,
                                    302,
                                    287,
                                    306,
                                    883,
                                    222,
                                    351,
                                    769,
                                    326,
                                    292,
                                    353,
                                    412,
                                    3017,
                                    791,
                                    401,
                                    1250,
                                    603,
                                    839,
                                    584,
                                    358,
                                    381,
                                    465,
                                    455,
                                    495,
                                    609,
                                    313,
                                    305,
                                    1283,
                                    680,
                                    404,
                                    325,
                                    344,
                                    356,
                                    987,
                                    453,
                                    530,
                                    606,
                                    391,
                                    364,
                                    175,
                                    327,
                                    610,
                                    341,
                                    333,
                                    794,
                                    448,
                                    351,
                                    1603,
                                    417,
                                    283,
                                    395,
                                    540,
                                    338,
                                    319,
                                    354,
                                    302,
                                    339,
                                    364,
                                    526,
                                    347,
                                    357,
                                    542,
                                    840,
                                    416,
                                    301,
                                    370,
                                    191,
                                    1251,
                                    174,
                                    512,
                                    338,
                                    329,
                                    828,
                                    721,
                                    309,
                                    777,
                                    319,
                                    325,
                                    325,
                                    322,
                                    341,
                                    293,
                                    336,
                                    314,
                                    321,
                                    303,
                                    408,
                                    257,
                                    955,
                                    322,
                                    323,
                                    323,
                                    1101,
                                    227,
                                    478,
                                    336,
                                    350,
                                    175,
                                    486,
                                    313,
                                    359,
                                    1170,
                                    346,
                                    336,
                                    500,
                                    282,
                                    910,
                                    295,
                                    303,
                                    971,
                                    1226,
                                    335,
                                    285,
                                    653,
                                    1002,
                                    325,
                                    353,
                                    382,
                                    323,
                                    334,
                                    289,
                                    305,
                                    316,
                                    349,
                                    430,
                                    677,
                                    160,
                                    914,
                                    453,
                                    595,
                                    419,
                                    173,
                                    281,
                                    920,
                                    364,
                                    331,
                                    502,
                                    657,
                                    421,
                                    311,
                                    360,
                                    665,
                                    636,
                                    327,
                                    346,
                                    407,
                                    632,
                                    471,
                                    326,
                                    336,
                                    749,
                                    391,
                                    557,
                                    381,
                                    478,
                                    442,
                                    469,
                                    303,
                                    310,
                                    292,
                                    379,
                                    453,
                                    274,
                                    312,
                                    673,
                                    321,
                                    516,
                                    371,
                                    288,
                                    446,
                                    352,
                                    318,
                                    617,
                                    315,
                                    329,
                                    939,
                                    646,
                                    497,
                                    178,
                                    394,
                                    409,
                                    180,
                                    390,
                                    922,
                                    380,
                                    465,
                                    495,
                                    396,
                                    835,
                                    391,
                                    362,
                                    511,
                                    346,
                                    308,
                                    565,
                                    345,
                                    314,
                                    346,
                                    333,
                                    316,
                                    355,
                                    348,
                                    427,
                                    360,
                                    415,
                                    1113,
                                    813,
                                    321,
                                    486,
                                    349,
                                    363,
                                    363,
                                    359,
                                    181,
                                    317,
                                    356,
                                    223,
                                    294,
                                    326,
                                    146,
                                    372,
                                    307,
                                    465,
                                    402,
                                    275,
                                    324,
                                    317,
                                    359,
                                    316,
                                    336,
                                    506,
                                    782,
                                    298,
                                    283,
                                    500,
                                    401,
                                    412,
                                    631,
                                    342,
                                    296,
                                    311,
                                    327,
                                    323,
                                    422,
                                    321,
                                    354,
                                    1106,
                                    357,
                                    399,
                                    333,
                                    322,
                                    380,
                                    298,
                                    345,
                                    340,
                                    340,
                                    310,
                                    354,
                                    307,
                                    336,
                                    470,
                                    258,
                                    315,
                                    361,
                                    473,
                                    326,
                                    553,
                                    666,
                                    1079,
                                    318,
                                    326,
                                    848,
                                    390,
                                    516,
                                    344,
                                    1169,
                                    449,
                                    324,
                                    340,
                                    310,
                                    320,
                                    300,
                                    326,
                                    305,
                                    498,
                                    288,
                                    324,
                                    312,
                                    174,
                                    344,
                                    354,
                                    409,
                                    260,
                                    331,
                                    494,
                                    1185,
                                    309,
                                    835,
                                    336,
                                    801,
                                    428,
                                    190,
                                    303,
                                    446,
                                    185,
                                    321,
                                    532,
                                    286,
                                    493,
                                    746,
                                    536,
                                    336,
                                    499,
                                    340,
                                    373,
                                    1164,
                                    336,
                                    378,
                                    313,
                                    883,
                                    728,
                                    344,
                                    322,
                                    360,
                                    315,
                                    353,
                                    203,
                                    384,
                                    426,
                                    369,
                                    328,
                                    386,
                                    321,
                                    337,
                                    318,
                                    301,
                                    319,
                                    320,
                                    175,
                                    300,
                                    349,
                                    296,
                                    315,
                                    686,
                                    323,
                                    698,
                                    315,
                                    427,
                                    1174,
                                    506,
                                    396,
                                    321,
                                    464,
                                    309,
                                    308,
                                    338,
                                    370,
                                    327,
                                    313,
                                    941,
                                    323,
                                    384,
                                    194,
                                    333,
                                    1186,
                                    329,
                                    1325,
                                    325,
                                    558,
                                    311,
                                    373,
                                    335,
                                    323,
                                    977,
                                    542,
                                    311,
                                    460,
                                    1188,
                                    324,
                                    332,
                                    184,
                                    2534,
                                    322,
                                    1325,
                                    300,
                                    305,
                                    383,
                                    250,
                                    307,
                                    316,
                                    417,
                                    297,
                                    1378,
                                    305,
                                    330,
                                    316,
                                    506,
                                    717,
                                    173,
                                    426,
                                    637,
                                    1256,
                                    803,
                                    305,
                                    314,
                                    718,
                                    317,
                                    439,
                                    324,
                                    755,
                                    411,
                                    310,
                                    386,
                                    325,
                                    331,
                                    550,
                                    302,
                                    309,
                                    341,
                                    1055,
                                    328,
                                    355,
                                    265,
                                    1013,
                                    477,
                                    533,
                                    1710,
                                    322,
                                    315,
                                    346,
                                    719,
                                    324,
                                    844,
                                    342,
                                    311,
                                    700,
                                    424,
                                    419,
                                    998,
                                    442,
                                    664,
                                    1037,
                                    446,
                                    754,
                                    369,
                                    321,
                                    864,
                                    316,
                                    346,
                                    322,
                                    847,
                                    470,
                                    490,
                                    865,
                                    310,
                                    994,
                                    322,
                                    501,
                                    361,
                                    390,
                                    661,
                                    332,
                                    344,
                                    657,
                                    431,
                                    322,
                                    440,
                                    398,
                                    1876,
                                    732,
                                    292,
                                    1528,
                                    380,
                                    351,
                                    209,
                                    476,
                                    467,
                                    1304,
                                    337,
                                    925,
                                    378,
                                    769,
                                    555,
                                    551,
                                    774,
                                    227,
                                    503,
                                    334,
                                    205,
                                    351,
                                    493,
                                    368,
                                    304,
                                    1131,
                                    320,
                                    484,
                                    800,
                                    281,
                                    549,
                                    306,
                                    316,
                                    809,
                                    310,
                                    325,
                                    529,
                                    939,
                                    836,
                                    179,
                                    321,
                                    176,
                                    326,
                                    189,
                                    370,
                                    327,
                                    351,
                                    822,
                                    317,
                                    308,
                                    321,
                                    301,
                                    494,
                                    346,
                                    355,
                                    306,
                                    326,
                                    318,
                                    302,
                                    298,
                                    287,
                                    323,
                                    316,
                                    329,
                                    320,
                                    475,
                                    306,
                                    527,
                                    902,
                                    575,
                                    1023,
                                    309,
                                    520,
                                    273,
                                    723,
                                    341,
                                    373,
                                    334,
                                    854,
                                    534,
                                    333,
                                    1296,
                                    312,
                                    318,
                                    525,
                                    1259,
                                    406,
                                    441,
                                    309,
                                    498,
                                    663,
                                    706,
                                    423,
                                    631,
                                    794,
                                    452,
                                    393,
                                    766,
                                    371,
                                    356,
                                    309,
                                    265,
                                    321,
                                    542,
                                    379,
                                    317,
                                    394,
                                    325,
                                    522,
                                    346,
                                    378,
                                    308,
                                    1310,
                                    358,
                                    457,
                                    372,
                                    698,
                                    799,
                                    319,
                                    978,
                                    310,
                                    307,
                                    339,
                                    959,
                                    328,
                                    598,
                                    491,
                                    509,
                                    463,
                                    337,
                                    328,
                                    340,
                                    326,
                                    475,
                                    330,
                                    323,
                                    337,
                                    290,
                                    375,
                                    308,
                                    747,
                                    310,
                                    736,
                                    315,
                                    303,
                                    369,
                                    536,
                                    1075,
                                    539,
                                    717,
                                    1493,
                                    477,
                                    513,
                                    1314,
                                    409,
                                    494,
                                    454,
                                    881,
                                    337,
                                    278,
                                    2065,
                                    1757,
                                    212,
                                    458,
                                    708,
                                    363,
                                    560,
                                    326,
                                    137,
                                    598,
                                    390,
                                    785,
                                    928,
                                    301,
                                    1965,
                                    321,
                                    232,
                                    295,
                                    751,
                                    354,
                                    307,
                                    674,
                                    343,
                                    398,
                                    1135,
                                    336,
                                    462,
                                    343,
                                    290,
                                    306,
                                    328,
                                    329,
                                    334,
                                    410,
                                    312,
                                    659,
                                    335,
                                    976,
                                    342,
                                    449,
                                    293,
                                    324,
                                    703,
                                    313,
                                    2091,
                                    583,
                                    731,
                                    863,
                                    337,
                                    292,
                                    1122,
                                    320,
                                    784,
                                    1010,
                                    885,
                                    1148,
                                    1264,
                                    492,
                                    644,
                                    454,
                                    1033,
                                    294,
                                    655,
                                    574,
                                    250,
                                    320,
                                    1056,
                                    617,
                                    1132,
                                    344,
                                    192,
                                    611,
                                    686,
                                    732,
                                    672,
                                    382,
                                    449,
                                    500,
                                    474,
                                    350,
                                    314,
                                    324,
                                    182,
                                    856,
                                    1291,
                                    347,
                                    327,
                                    349,
                                    1909,
                                    536,
                                    461,
                                    641,
                                    507,
                                    1004,
                                    369,
                                    445,
                                    344,
                                    441,
                                    356,
                                    341,
                                    315,
                                    855,
                                    315,
                                    404,
                                    370,
                                    297,
                                    339,
                                    465,
                                    732,
                                    366,
                                    349,
                                    396,
                                    918,
                                    534,
                                    359,
                                    508,
                                    380,
                                    357,
                                    388,
                                    465,
                                    257,
                                    805,
                                    975,
                                    321,
                                    315,
                                    335,
                                    1028,
                                    458,
                                    838,
                                    372,
                                    997,
                                    571,
                                    335,
                                    372,
                                    886,
                                    299,
                                    306,
                                    498,
                                    552,
                                    303,
                                    449,
                                    478,
                                    927,
                                    280,
                                    415,
                                    301,
                                    234,
                                    324,
                                    346,
                                    1107,
                                    1192,
                                    321,
                                    548,
                                    305,
                                    983,
                                    763,
                                    455,
                                    337,
                                    985,
                                    372,
                                    600,
                                    476,
                                    555,
                                    429,
                                    612,
                                    387,
                                    391,
                                    394,
                                    530,
                                    429,
                                    410,
                                    387,
                                    412,
                                    395,
                                    333,
                                    348,
                                    294,
                                    350,
                                    413,
                                    308,
                                    361,
                                    334,
                                    350,
                                    361,
                                    355,
                                    1161,
                                    1772,
                                    334,
                                    185,
                                    313,
                                    330,
                                    603,
                                    397,
                                    469,
                                    373,
                                    302,
                                    465,
                                    493,
                                    344,
                                    325,
                                    297,
                                    185,
                                    355,
                                    362,
                                    324,
                                    334,
                                    334,
                                    349,
                                    345,
                                    305,
                                    299,
                                    349,
                                    328,
                                    357,
                                    467,
                                    319,
                                    891,
                                    570,
                                    245,
                                    1310,
                                    1273,
                                    472,
                                    775,
                                    318,
                                    288,
                                    1076,
                                    1412
                                ],
                                "visible": true
                            },
                            {
                                "label": "Assembly Penalty Weight",
                                "range": [
                                    9,
                                    19984
                                ],
                                "values": [
                                    9,
                                    794,
                                    34,
                                    1409,
                                    17,
                                    536,
                                    39,
                                    7133,
                                    115,
                                    9843,
                                    107,
                                    7017,
                                    273,
                                    5131,
                                    1210,
                                    9032,
                                    82,
                                    7312,
                                    252,
                                    16778,
                                    760,
                                    4349,
                                    891,
                                    4228,
                                    123,
                                    10800,
                                    1593,
                                    467,
                                    260,
                                    226,
                                    2940,
                                    803,
                                    689,
                                    420,
                                    422,
                                    1229,
                                    275,
                                    198,
                                    150,
                                    423,
                                    423,
                                    134,
                                    146,
                                    89,
                                    248,
                                    55,
                                    612,
                                    401,
                                    546,
                                    52,
                                    4208,
                                    307,
                                    194,
                                    257,
                                    91,
                                    93,
                                    178,
                                    133,
                                    99,
                                    98,
                                    131,
                                    345,
                                    461,
                                    90,
                                    96,
                                    69,
                                    91,
                                    160,
                                    148,
                                    81,
                                    274,
                                    1332,
                                    31,
                                    667,
                                    11733,
                                    502,
                                    163,
                                    354,
                                    480,
                                    67,
                                    252,
                                    120,
                                    303,
                                    181,
                                    162,
                                    153,
                                    1142,
                                    251,
                                    17,
                                    131,
                                    165,
                                    135,
                                    162,
                                    222,
                                    230,
                                    154,
                                    198,
                                    58,
                                    109,
                                    132,
                                    189,
                                    159,
                                    102,
                                    167,
                                    218,
                                    147,
                                    11969,
                                    2288,
                                    316,
                                    467,
                                    234,
                                    1025,
                                    169,
                                    497,
                                    435,
                                    265,
                                    49,
                                    82,
                                    252,
                                    234,
                                    372,
                                    229,
                                    79,
                                    127,
                                    76,
                                    82,
                                    105,
                                    97,
                                    207,
                                    115,
                                    75,
                                    1014,
                                    259,
                                    95,
                                    84,
                                    68,
                                    404,
                                    91,
                                    183,
                                    273,
                                    49,
                                    82,
                                    1378,
                                    14,
                                    5405,
                                    769,
                                    86,
                                    168,
                                    308,
                                    67,
                                    69,
                                    818,
                                    200,
                                    87,
                                    79,
                                    86,
                                    100,
                                    174,
                                    77,
                                    66,
                                    58,
                                    74,
                                    206,
                                    62,
                                    73,
                                    129,
                                    71,
                                    63,
                                    65,
                                    67,
                                    71,
                                    72,
                                    116,
                                    76,
                                    696,
                                    46,
                                    55,
                                    66,
                                    77,
                                    61,
                                    460,
                                    62,
                                    77,
                                    55,
                                    146,
                                    77,
                                    71,
                                    58,
                                    93,
                                    64,
                                    68,
                                    82,
                                    66,
                                    364,
                                    113,
                                    69,
                                    69,
                                    145,
                                    69,
                                    62,
                                    65,
                                    62,
                                    19984,
                                    113,
                                    65,
                                    60,
                                    69,
                                    307,
                                    33,
                                    60,
                                    60,
                                    57,
                                    676,
                                    52,
                                    67,
                                    64,
                                    49,
                                    50,
                                    129,
                                    196,
                                    63,
                                    690,
                                    59,
                                    56,
                                    66,
                                    5409,
                                    60,
                                    13549,
                                    146,
                                    62,
                                    466,
                                    61,
                                    305,
                                    56,
                                    60,
                                    56,
                                    138,
                                    299,
                                    102,
                                    58,
                                    406,
                                    1019,
                                    51,
                                    137,
                                    247,
                                    63,
                                    59,
                                    54,
                                    226,
                                    257,
                                    59,
                                    51,
                                    286,
                                    52,
                                    55,
                                    143,
                                    1039,
                                    53,
                                    73,
                                    58,
                                    4807,
                                    59,
                                    22,
                                    49,
                                    411,
                                    52,
                                    57,
                                    98,
                                    129,
                                    51,
                                    143,
                                    90,
                                    47,
                                    284,
                                    57,
                                    59,
                                    77,
                                    63,
                                    162,
                                    849,
                                    56,
                                    8935,
                                    711,
                                    58,
                                    59,
                                    73,
                                    53,
                                    56,
                                    57,
                                    30,
                                    822,
                                    50,
                                    59,
                                    78,
                                    59,
                                    56,
                                    55,
                                    65,
                                    54,
                                    60,
                                    58,
                                    532,
                                    52,
                                    75,
                                    71,
                                    57,
                                    65,
                                    70,
                                    67,
                                    65,
                                    60,
                                    173,
                                    59,
                                    717,
                                    203,
                                    68,
                                    55,
                                    57,
                                    53,
                                    67,
                                    55,
                                    1579,
                                    61,
                                    49,
                                    56,
                                    877,
                                    66,
                                    56,
                                    142,
                                    62,
                                    53,
                                    62,
                                    58,
                                    873,
                                    57,
                                    132,
                                    126,
                                    54,
                                    98,
                                    622,
                                    103,
                                    9106,
                                    1860,
                                    454,
                                    148,
                                    206,
                                    412,
                                    423,
                                    103,
                                    77,
                                    55,
                                    57,
                                    118,
                                    49,
                                    45,
                                    52,
                                    40,
                                    77,
                                    960,
                                    56,
                                    603,
                                    57,
                                    55,
                                    225,
                                    68,
                                    146,
                                    50,
                                    49,
                                    58,
                                    159,
                                    142,
                                    88,
                                    46,
                                    76,
                                    56,
                                    54,
                                    75,
                                    51,
                                    100,
                                    51,
                                    55,
                                    842,
                                    69,
                                    59,
                                    353,
                                    49,
                                    236,
                                    52,
                                    829,
                                    150,
                                    60,
                                    54,
                                    54,
                                    47,
                                    277,
                                    55,
                                    309,
                                    104,
                                    49,
                                    58,
                                    52,
                                    59,
                                    55,
                                    57,
                                    116,
                                    58,
                                    55,
                                    143,
                                    62,
                                    63,
                                    50,
                                    151,
                                    59,
                                    515,
                                    53,
                                    58,
                                    64,
                                    1357,
                                    56,
                                    961,
                                    117,
                                    3664,
                                    61,
                                    696,
                                    128,
                                    147,
                                    639,
                                    56,
                                    79,
                                    51,
                                    342,
                                    268,
                                    245,
                                    55,
                                    311,
                                    413,
                                    505,
                                    17,
                                    63,
                                    67,
                                    713,
                                    55,
                                    199,
                                    17,
                                    89,
                                    34,
                                    53,
                                    53,
                                    51,
                                    55,
                                    60,
                                    192,
                                    71,
                                    84,
                                    130,
                                    52,
                                    52,
                                    1033,
                                    58,
                                    122,
                                    113,
                                    61,
                                    134,
                                    1110,
                                    52,
                                    55,
                                    60,
                                    52,
                                    68,
                                    50,
                                    71,
                                    52,
                                    52,
                                    54,
                                    61,
                                    139,
                                    861,
                                    53,
                                    464,
                                    105,
                                    86,
                                    84,
                                    207,
                                    125,
                                    54,
                                    3281,
                                    58,
                                    15,
                                    108,
                                    68,
                                    523,
                                    71,
                                    1197,
                                    59,
                                    120,
                                    57,
                                    57,
                                    187,
                                    60,
                                    58,
                                    483,
                                    696,
                                    61,
                                    109,
                                    54,
                                    121,
                                    60,
                                    563,
                                    67,
                                    797,
                                    130,
                                    47,
                                    61,
                                    1473,
                                    49,
                                    119,
                                    65,
                                    231,
                                    1307,
                                    71,
                                    55,
                                    85,
                                    491,
                                    114,
                                    1705,
                                    96,
                                    1039,
                                    86,
                                    346,
                                    690,
                                    60,
                                    1724,
                                    462,
                                    677,
                                    61,
                                    106,
                                    664,
                                    59,
                                    590,
                                    134,
                                    56,
                                    71,
                                    355,
                                    338,
                                    168,
                                    1600,
                                    612,
                                    141,
                                    437,
                                    1438,
                                    111,
                                    367,
                                    283,
                                    942,
                                    412,
                                    453,
                                    259,
                                    128,
                                    92,
                                    277,
                                    45,
                                    304,
                                    278,
                                    156,
                                    269,
                                    123,
                                    136,
                                    121,
                                    148,
                                    104,
                                    1063,
                                    676,
                                    257,
                                    125,
                                    85,
                                    105,
                                    301,
                                    142,
                                    232,
                                    85,
                                    150,
                                    4912,
                                    226,
                                    287,
                                    135,
                                    108,
                                    147,
                                    77,
                                    123,
                                    109,
                                    1131,
                                    72,
                                    131,
                                    84,
                                    63,
                                    88,
                                    88,
                                    66,
                                    95,
                                    89,
                                    90,
                                    81,
                                    222,
                                    88,
                                    85,
                                    808,
                                    64,
                                    76,
                                    179,
                                    115,
                                    88,
                                    78,
                                    77,
                                    236,
                                    85,
                                    83,
                                    71,
                                    1381,
                                    113,
                                    1075,
                                    118,
                                    31,
                                    58,
                                    117,
                                    144,
                                    653,
                                    301,
                                    84,
                                    81,
                                    315,
                                    88,
                                    207,
                                    155,
                                    74,
                                    86,
                                    17,
                                    80,
                                    68,
                                    166,
                                    77,
                                    69,
                                    67,
                                    71,
                                    89,
                                    88,
                                    303,
                                    989,
                                    509,
                                    105,
                                    642,
                                    67,
                                    153,
                                    405,
                                    231,
                                    94,
                                    147,
                                    90,
                                    889,
                                    76,
                                    81,
                                    98,
                                    104,
                                    71,
                                    773,
                                    78,
                                    1146,
                                    413,
                                    55,
                                    178,
                                    73,
                                    61,
                                    1077,
                                    421,
                                    74,
                                    503,
                                    73,
                                    77,
                                    73,
                                    69,
                                    255,
                                    76,
                                    63,
                                    420,
                                    65,
                                    76,
                                    752,
                                    363,
                                    112,
                                    151,
                                    78,
                                    68,
                                    72,
                                    78,
                                    67,
                                    61,
                                    75,
                                    80,
                                    91,
                                    65,
                                    84,
                                    65,
                                    72,
                                    292,
                                    847,
                                    91,
                                    11709,
                                    67,
                                    67,
                                    110,
                                    86,
                                    2467,
                                    77,
                                    63,
                                    54,
                                    662,
                                    742,
                                    82,
                                    63,
                                    75,
                                    66,
                                    434,
                                    144,
                                    58,
                                    65,
                                    63,
                                    48,
                                    594,
                                    115,
                                    65,
                                    53,
                                    64,
                                    433,
                                    119,
                                    65,
                                    75,
                                    438,
                                    65,
                                    59,
                                    62,
                                    60,
                                    61,
                                    60,
                                    56,
                                    60,
                                    60,
                                    63,
                                    56,
                                    58,
                                    54,
                                    561,
                                    49,
                                    55,
                                    52,
                                    64,
                                    254,
                                    271,
                                    115,
                                    48,
                                    73,
                                    55,
                                    56,
                                    49,
                                    56,
                                    853,
                                    954,
                                    59,
                                    62,
                                    51,
                                    1951,
                                    52,
                                    64,
                                    59,
                                    430,
                                    100,
                                    56,
                                    53,
                                    55,
                                    717,
                                    55,
                                    1725,
                                    131,
                                    53,
                                    681,
                                    53,
                                    229,
                                    536,
                                    63,
                                    54,
                                    842,
                                    126,
                                    57,
                                    1413,
                                    61,
                                    321,
                                    252,
                                    84,
                                    63,
                                    58,
                                    63,
                                    54,
                                    50,
                                    2153,
                                    69,
                                    432,
                                    92,
                                    57,
                                    151,
                                    677,
                                    118,
                                    54,
                                    140,
                                    279,
                                    52,
                                    519,
                                    1391,
                                    61,
                                    46,
                                    538,
                                    53,
                                    58,
                                    135,
                                    178,
                                    53,
                                    140,
                                    69,
                                    72,
                                    115,
                                    59,
                                    56,
                                    58,
                                    58,
                                    58,
                                    85,
                                    53,
                                    50,
                                    54,
                                    218,
                                    72,
                                    618,
                                    59,
                                    56,
                                    127,
                                    69,
                                    18,
                                    1321,
                                    688,
                                    67,
                                    57,
                                    98,
                                    69,
                                    56,
                                    61,
                                    54,
                                    133,
                                    382,
                                    57,
                                    55,
                                    120,
                                    434,
                                    1165,
                                    55,
                                    60,
                                    108,
                                    61,
                                    49,
                                    114,
                                    56,
                                    86,
                                    69,
                                    957,
                                    50,
                                    814,
                                    1112,
                                    1052,
                                    70,
                                    751,
                                    257,
                                    51,
                                    59,
                                    54,
                                    52,
                                    55,
                                    392,
                                    52,
                                    160,
                                    49,
                                    53,
                                    726,
                                    181,
                                    64,
                                    806,
                                    57,
                                    51,
                                    49,
                                    58,
                                    629,
                                    45,
                                    74,
                                    52,
                                    53,
                                    65,
                                    9789,
                                    237,
                                    263,
                                    72,
                                    51,
                                    57,
                                    50,
                                    337,
                                    60,
                                    51,
                                    50,
                                    53,
                                    143,
                                    60,
                                    54,
                                    76,
                                    87,
                                    580,
                                    60,
                                    48,
                                    57,
                                    44,
                                    84,
                                    45,
                                    45,
                                    75,
                                    70,
                                    470,
                                    26,
                                    48,
                                    1034,
                                    110,
                                    56,
                                    56,
                                    73,
                                    108,
                                    837,
                                    59,
                                    62,
                                    53,
                                    110,
                                    55,
                                    52,
                                    1450,
                                    55,
                                    55,
                                    62,
                                    64,
                                    426,
                                    55,
                                    46,
                                    68,
                                    509,
                                    54,
                                    60,
                                    57,
                                    107,
                                    846,
                                    49,
                                    93,
                                    59,
                                    55,
                                    992,
                                    2282,
                                    59,
                                    63,
                                    62,
                                    62,
                                    58,
                                    577,
                                    65,
                                    59,
                                    49,
                                    55,
                                    208,
                                    54,
                                    59,
                                    53,
                                    53,
                                    55,
                                    54,
                                    109,
                                    61,
                                    57,
                                    55,
                                    53,
                                    54,
                                    54,
                                    116,
                                    55,
                                    19,
                                    58,
                                    98,
                                    56,
                                    52,
                                    56,
                                    59,
                                    55,
                                    52,
                                    56,
                                    59,
                                    56,
                                    75,
                                    52,
                                    53,
                                    62,
                                    758,
                                    52,
                                    64,
                                    52,
                                    57,
                                    52,
                                    59,
                                    52,
                                    47,
                                    56,
                                    54,
                                    42,
                                    51,
                                    60,
                                    101,
                                    101,
                                    62,
                                    59,
                                    51,
                                    274,
                                    1101,
                                    60,
                                    58,
                                    50,
                                    155,
                                    58,
                                    34,
                                    270,
                                    169,
                                    62,
                                    76,
                                    63,
                                    58,
                                    272,
                                    59,
                                    55,
                                    57,
                                    1092,
                                    137,
                                    159,
                                    51,
                                    132,
                                    49,
                                    92,
                                    47,
                                    62,
                                    56,
                                    26,
                                    53,
                                    55,
                                    73,
                                    60,
                                    63,
                                    54,
                                    98,
                                    564,
                                    50,
                                    3025,
                                    56,
                                    444,
                                    53,
                                    55,
                                    52,
                                    564,
                                    55,
                                    537,
                                    54,
                                    50,
                                    49,
                                    667,
                                    228,
                                    75,
                                    57,
                                    409,
                                    54,
                                    869,
                                    63,
                                    56,
                                    76,
                                    55,
                                    75,
                                    53,
                                    52,
                                    623,
                                    52,
                                    66,
                                    534,
                                    51,
                                    56,
                                    52,
                                    54,
                                    337,
                                    989,
                                    902,
                                    72,
                                    848,
                                    53,
                                    48,
                                    55,
                                    15,
                                    157,
                                    55,
                                    586,
                                    1108,
                                    49,
                                    54,
                                    76,
                                    50,
                                    61,
                                    125,
                                    51,
                                    48,
                                    52,
                                    54,
                                    64,
                                    53,
                                    59,
                                    59,
                                    76,
                                    58,
                                    79,
                                    54,
                                    59,
                                    114,
                                    67,
                                    21,
                                    51,
                                    61,
                                    726,
                                    306,
                                    600,
                                    234,
                                    162,
                                    65,
                                    594,
                                    53,
                                    59,
                                    51,
                                    36,
                                    485,
                                    63,
                                    131,
                                    79,
                                    55,
                                    867,
                                    285,
                                    50,
                                    60,
                                    46,
                                    330,
                                    55,
                                    171,
                                    66,
                                    126,
                                    58,
                                    59,
                                    98,
                                    247,
                                    199,
                                    210,
                                    330,
                                    1010,
                                    49,
                                    52,
                                    48,
                                    126,
                                    54,
                                    52,
                                    54,
                                    151,
                                    53,
                                    318,
                                    53,
                                    47,
                                    55,
                                    49,
                                    95,
                                    60,
                                    39,
                                    760,
                                    3499,
                                    103,
                                    13,
                                    1582,
                                    12,
                                    49,
                                    190,
                                    388,
                                    69,
                                    45,
                                    6497,
                                    56,
                                    640,
                                    418,
                                    246,
                                    757,
                                    59,
                                    140,
                                    78,
                                    174,
                                    76,
                                    172,
                                    82,
                                    63,
                                    60,
                                    59,
                                    331,
                                    352,
                                    57,
                                    69,
                                    63,
                                    58,
                                    1417,
                                    49,
                                    70,
                                    48,
                                    58,
                                    336,
                                    732,
                                    57,
                                    319,
                                    58,
                                    54,
                                    72,
                                    52,
                                    59,
                                    63,
                                    918,
                                    54,
                                    363,
                                    64,
                                    59,
                                    66,
                                    515,
                                    51,
                                    60,
                                    1002,
                                    58,
                                    57,
                                    57,
                                    64,
                                    270,
                                    883,
                                    1867,
                                    68,
                                    22,
                                    309,
                                    53,
                                    97,
                                    64,
                                    25,
                                    64,
                                    58,
                                    64,
                                    523,
                                    186,
                                    826,
                                    59,
                                    61,
                                    166,
                                    53,
                                    24,
                                    118,
                                    53,
                                    758,
                                    400,
                                    95,
                                    90,
                                    158,
                                    954,
                                    549,
                                    51,
                                    271,
                                    153,
                                    49,
                                    53,
                                    914,
                                    320,
                                    185,
                                    50,
                                    193,
                                    65,
                                    164,
                                    58,
                                    50,
                                    60,
                                    217,
                                    2632,
                                    79,
                                    187,
                                    810,
                                    57,
                                    55,
                                    976,
                                    27,
                                    74,
                                    988,
                                    8719,
                                    865,
                                    49,
                                    56,
                                    56,
                                    59,
                                    614,
                                    77,
                                    55,
                                    55,
                                    27,
                                    79,
                                    67,
                                    74,
                                    283,
                                    897,
                                    58,
                                    57,
                                    49,
                                    157,
                                    48,
                                    7908,
                                    153,
                                    430,
                                    77,
                                    511,
                                    575,
                                    285,
                                    46,
                                    56,
                                    904,
                                    492,
                                    96,
                                    79,
                                    80,
                                    51,
                                    123,
                                    265,
                                    108,
                                    72,
                                    175,
                                    6523,
                                    163,
                                    78,
                                    437,
                                    122,
                                    76,
                                    88,
                                    71,
                                    67,
                                    333,
                                    83,
                                    82,
                                    326,
                                    100,
                                    64,
                                    181,
                                    86,
                                    60,
                                    57,
                                    119,
                                    64,
                                    639,
                                    62,
                                    622,
                                    806,
                                    126,
                                    55,
                                    55,
                                    60,
                                    1051,
                                    128,
                                    48,
                                    1104,
                                    23,
                                    47,
                                    116,
                                    68,
                                    104,
                                    4048,
                                    55,
                                    164,
                                    11963,
                                    61,
                                    55,
                                    605,
                                    120,
                                    50,
                                    85,
                                    55,
                                    125,
                                    60,
                                    183,
                                    600,
                                    67,
                                    464,
                                    54,
                                    631,
                                    64,
                                    199,
                                    132,
                                    71,
                                    253,
                                    59,
                                    153,
                                    295,
                                    46,
                                    210,
                                    284,
                                    233,
                                    1168,
                                    369,
                                    390,
                                    51,
                                    204,
                                    156,
                                    48,
                                    454,
                                    13920,
                                    1427,
                                    90,
                                    42,
                                    967,
                                    9234,
                                    76,
                                    43,
                                    469,
                                    117,
                                    1506,
                                    82,
                                    49,
                                    65,
                                    1401,
                                    82,
                                    262,
                                    172,
                                    78,
                                    131,
                                    68,
                                    54,
                                    69,
                                    64,
                                    61,
                                    438,
                                    58,
                                    59,
                                    59,
                                    395,
                                    112,
                                    192,
                                    700,
                                    51,
                                    74,
                                    64,
                                    67,
                                    137,
                                    155,
                                    125,
                                    72,
                                    63,
                                    318,
                                    173,
                                    59,
                                    120,
                                    72,
                                    61,
                                    61,
                                    34,
                                    77,
                                    941,
                                    68,
                                    152,
                                    75,
                                    1036,
                                    2493,
                                    67,
                                    52,
                                    66,
                                    177,
                                    75,
                                    68,
                                    120,
                                    72,
                                    23,
                                    17,
                                    66,
                                    85,
                                    59,
                                    67,
                                    1079,
                                    21,
                                    66,
                                    143,
                                    11880,
                                    59,
                                    113,
                                    134,
                                    71,
                                    92,
                                    48,
                                    63,
                                    812,
                                    20,
                                    1241,
                                    446,
                                    111,
                                    45,
                                    195,
                                    64,
                                    778,
                                    609,
                                    7556,
                                    54,
                                    60,
                                    51,
                                    944,
                                    195,
                                    95,
                                    214,
                                    77,
                                    100,
                                    716,
                                    79,
                                    51,
                                    56,
                                    72,
                                    55,
                                    52,
                                    53,
                                    155,
                                    47,
                                    58,
                                    58,
                                    51,
                                    897,
                                    53,
                                    60,
                                    297,
                                    57,
                                    2646,
                                    59,
                                    130,
                                    313,
                                    60,
                                    178,
                                    115,
                                    911,
                                    61,
                                    300,
                                    801,
                                    317,
                                    9038,
                                    308,
                                    102,
                                    60,
                                    158,
                                    59,
                                    70,
                                    255,
                                    111,
                                    51,
                                    1691,
                                    112,
                                    345,
                                    133,
                                    101,
                                    77,
                                    60,
                                    66,
                                    41,
                                    147,
                                    53,
                                    449,
                                    49,
                                    1156,
                                    76,
                                    131,
                                    717,
                                    79,
                                    1595,
                                    54,
                                    57,
                                    507,
                                    58,
                                    134,
                                    60,
                                    52,
                                    65,
                                    60,
                                    55,
                                    56,
                                    57,
                                    61,
                                    315,
                                    2179,
                                    53,
                                    59,
                                    94,
                                    57,
                                    987,
                                    55,
                                    266,
                                    89,
                                    105,
                                    58,
                                    78,
                                    59,
                                    61,
                                    62,
                                    613,
                                    54,
                                    65,
                                    109,
                                    870,
                                    93,
                                    248,
                                    138,
                                    94,
                                    58,
                                    53,
                                    60,
                                    785,
                                    57,
                                    911,
                                    56,
                                    491,
                                    49,
                                    57,
                                    83,
                                    64,
                                    66,
                                    120,
                                    61,
                                    132,
                                    113,
                                    1080,
                                    77,
                                    66,
                                    54,
                                    56,
                                    1274,
                                    84,
                                    868,
                                    69,
                                    109,
                                    217,
                                    79,
                                    70,
                                    74,
                                    23,
                                    110,
                                    55,
                                    57,
                                    57,
                                    48,
                                    65,
                                    63,
                                    223,
                                    169,
                                    123,
                                    52,
                                    47,
                                    692,
                                    58,
                                    56,
                                    2946,
                                    61,
                                    46,
                                    43,
                                    60,
                                    67,
                                    339,
                                    407,
                                    779,
                                    2965,
                                    325,
                                    56,
                                    298,
                                    6838,
                                    1303,
                                    125,
                                    108,
                                    103,
                                    49,
                                    585,
                                    39,
                                    6512,
                                    75,
                                    852,
                                    61,
                                    298,
                                    32,
                                    74,
                                    66,
                                    68,
                                    57,
                                    64,
                                    63,
                                    59,
                                    55,
                                    145,
                                    57,
                                    58,
                                    105,
                                    62,
                                    259,
                                    1056,
                                    528,
                                    73,
                                    54,
                                    476,
                                    325,
                                    335,
                                    501,
                                    1382,
                                    903,
                                    29,
                                    121,
                                    67,
                                    52,
                                    47,
                                    53,
                                    846,
                                    30,
                                    69,
                                    339,
                                    438,
                                    48,
                                    103,
                                    812,
                                    10805,
                                    400,
                                    89,
                                    3049,
                                    211,
                                    419,
                                    223,
                                    71,
                                    80,
                                    125,
                                    938,
                                    137,
                                    693,
                                    55,
                                    52,
                                    820,
                                    294,
                                    91,
                                    59,
                                    66,
                                    71,
                                    553,
                                    118,
                                    235,
                                    207,
                                    85,
                                    74,
                                    19,
                                    60,
                                    416,
                                    66,
                                    62,
                                    1242,
                                    113,
                                    69,
                                    1218,
                                    98,
                                    54,
                                    88,
                                    136,
                                    65,
                                    57,
                                    70,
                                    51,
                                    65,
                                    108,
                                    129,
                                    67,
                                    72,
                                    145,
                                    710,
                                    98,
                                    53,
                                    78,
                                    21,
                                    7564,
                                    17,
                                    120,
                                    65,
                                    61,
                                    500,
                                    611,
                                    54,
                                    350,
                                    57,
                                    60,
                                    64,
                                    58,
                                    65,
                                    50,
                                    63,
                                    56,
                                    66,
                                    52,
                                    93,
                                    38,
                                    1462,
                                    59,
                                    59,
                                    59,
                                    684,
                                    30,
                                    130,
                                    63,
                                    69,
                                    19,
                                    1015,
                                    59,
                                    77,
                                    762,
                                    71,
                                    64,
                                    139,
                                    45,
                                    552,
                                    49,
                                    52,
                                    529,
                                    3101,
                                    67,
                                    46,
                                    501,
                                    592,
                                    59,
                                    70,
                                    83,
                                    59,
                                    63,
                                    46,
                                    53,
                                    56,
                                    69,
                                    153,
                                    885,
                                    16,
                                    541,
                                    981,
                                    196,
                                    841,
                                    18,
                                    45,
                                    498,
                                    75,
                                    61,
                                    115,
                                    302,
                                    836,
                                    55,
                                    114,
                                    248,
                                    233,
                                    60,
                                    68,
                                    780,
                                    225,
                                    860,
                                    60,
                                    64,
                                    649,
                                    89,
                                    175,
                                    668,
                                    1088,
                                    925,
                                    127,
                                    52,
                                    55,
                                    48,
                                    82,
                                    979,
                                    293,
                                    55,
                                    263,
                                    59,
                                    130,
                                    78,
                                    47,
                                    121,
                                    70,
                                    57,
                                    1886,
                                    56,
                                    61,
                                    519,
                                    172,
                                    1172,
                                    19,
                                    88,
                                    137,
                                    18,
                                    86,
                                    4092,
                                    118,
                                    859,
                                    139,
                                    127,
                                    489,
                                    89,
                                    74,
                                    116,
                                    68,
                                    53,
                                    210,
                                    72,
                                    55,
                                    68,
                                    63,
                                    58,
                                    71,
                                    69,
                                    123,
                                    73,
                                    842,
                                    723,
                                    775,
                                    59,
                                    139,
                                    69,
                                    74,
                                    109,
                                    73,
                                    19,
                                    58,
                                    72,
                                    29,
                                    50,
                                    59,
                                    13,
                                    115,
                                    54,
                                    124,
                                    93,
                                    43,
                                    60,
                                    57,
                                    74,
                                    56,
                                    64,
                                    126,
                                    388,
                                    50,
                                    46,
                                    144,
                                    92,
                                    97,
                                    238,
                                    67,
                                    49,
                                    55,
                                    61,
                                    59,
                                    102,
                                    58,
                                    72,
                                    679,
                                    73,
                                    763,
                                    63,
                                    59,
                                    81,
                                    52,
                                    67,
                                    66,
                                    68,
                                    54,
                                    71,
                                    53,
                                    64,
                                    1041,
                                    38,
                                    56,
                                    92,
                                    133,
                                    60,
                                    144,
                                    294,
                                    1454,
                                    57,
                                    60,
                                    422,
                                    86,
                                    121,
                                    67,
                                    775,
                                    93,
                                    60,
                                    66,
                                    54,
                                    58,
                                    51,
                                    61,
                                    52,
                                    159,
                                    47,
                                    60,
                                    55,
                                    18,
                                    67,
                                    71,
                                    96,
                                    40,
                                    62,
                                    156,
                                    798,
                                    54,
                                    390,
                                    64,
                                    412,
                                    121,
                                    22,
                                    52,
                                    116,
                                    21,
                                    59,
                                    195,
                                    46,
                                    1153,
                                    356,
                                    171,
                                    64,
                                    149,
                                    66,
                                    84,
                                    762,
                                    64,
                                    80,
                                    55,
                                    441,
                                    337,
                                    67,
                                    59,
                                    76,
                                    56,
                                    71,
                                    24,
                                    90,
                                    815,
                                    80,
                                    61,
                                    85,
                                    59,
                                    65,
                                    57,
                                    51,
                                    58,
                                    58,
                                    18,
                                    51,
                                    69,
                                    50,
                                    56,
                                    551,
                                    59,
                                    572,
                                    56,
                                    102,
                                    1107,
                                    126,
                                    87,
                                    59,
                                    983,
                                    54,
                                    53,
                                    65,
                                    77,
                                    61,
                                    56,
                                    523,
                                    59,
                                    82,
                                    21,
                                    63,
                                    802,
                                    61,
                                    8238,
                                    60,
                                    175,
                                    55,
                                    79,
                                    64,
                                    59,
                                    1136,
                                    134,
                                    55,
                                    994,
                                    788,
                                    59,
                                    63,
                                    21,
                                    7677,
                                    59,
                                    1377,
                                    51,
                                    53,
                                    81,
                                    35,
                                    53,
                                    57,
                                    96,
                                    50,
                                    932,
                                    53,
                                    61,
                                    56,
                                    126,
                                    371,
                                    18,
                                    103,
                                    229,
                                    875,
                                    382,
                                    53,
                                    56,
                                    993,
                                    56,
                                    111,
                                    59,
                                    316,
                                    96,
                                    54,
                                    85,
                                    60,
                                    62,
                                    203,
                                    51,
                                    54,
                                    66,
                                    679,
                                    61,
                                    71,
                                    42,
                                    4768,
                                    1085,
                                    289,
                                    4911,
                                    59,
                                    56,
                                    68,
                                    608,
                                    59,
                                    412,
                                    66,
                                    55,
                                    604,
                                    842,
                                    817,
                                    619,
                                    110,
                                    258,
                                    642,
                                    117,
                                    668,
                                    110,
                                    58,
                                    484,
                                    57,
                                    68,
                                    58,
                                    410,
                                    127,
                                    142,
                                    437,
                                    54,
                                    617,
                                    71,
                                    147,
                                    75,
                                    95,
                                    280,
                                    62,
                                    80,
                                    216,
                                    879,
                                    59,
                                    926,
                                    88,
                                    4185,
                                    356,
                                    48,
                                    4600,
                                    81,
                                    69,
                                    27,
                                    1094,
                                    100,
                                    1870,
                                    64,
                                    548,
                                    81,
                                    328,
                                    174,
                                    170,
                                    339,
                                    31,
                                    1122,
                                    63,
                                    28,
                                    70,
                                    1173,
                                    111,
                                    52,
                                    719,
                                    58,
                                    160,
                                    362,
                                    352,
                                    183,
                                    53,
                                    56,
                                    781,
                                    54,
                                    60,
                                    161,
                                    562,
                                    408,
                                    19,
                                    58,
                                    20,
                                    60,
                                    21,
                                    78,
                                    60,
                                    71,
                                    486,
                                    57,
                                    53,
                                    58,
                                    51,
                                    1170,
                                    68,
                                    72,
                                    53,
                                    60,
                                    57,
                                    51,
                                    377,
                                    46,
                                    58,
                                    439,
                                    61,
                                    58,
                                    1085,
                                    53,
                                    129,
                                    538,
                                    1842,
                                    598,
                                    55,
                                    126,
                                    43,
                                    201,
                                    72,
                                    113,
                                    62,
                                    339,
                                    177,
                                    62,
                                    1294,
                                    55,
                                    57,
                                    172,
                                    7283,
                                    91,
                                    176,
                                    54,
                                    147,
                                    1940,
                                    282,
                                    102,
                                    288,
                                    355,
                                    167,
                                    125,
                                    328,
                                    113,
                                    71,
                                    78,
                                    39,
                                    58,
                                    164,
                                    81,
                                    56,
                                    128,
                                    60,
                                    1299,
                                    68,
                                    116,
                                    53,
                                    7338,
                                    72,
                                    136,
                                    78,
                                    237,
                                    1244,
                                    57,
                                    618,
                                    54,
                                    53,
                                    66,
                                    519,
                                    61,
                                    209,
                                    1141,
                                    148,
                                    98,
                                    64,
                                    61,
                                    65,
                                    60,
                                    126,
                                    61,
                                    59,
                                    64,
                                    51,
                                    78,
                                    54,
                                    310,
                                    336,
                                    388,
                                    56,
                                    52,
                                    77,
                                    141,
                                    691,
                                    143,
                                    929,
                                    1094,
                                    129,
                                    151,
                                    960,
                                    93,
                                    272,
                                    989,
                                    455,
                                    64,
                                    49,
                                    4784,
                                    12101,
                                    27,
                                    96,
                                    959,
                                    74,
                                    176,
                                    60,
                                    12,
                                    230,
                                    87,
                                    724,
                                    1656,
                                    51,
                                    4285,
                                    58,
                                    32,
                                    49,
                                    659,
                                    70,
                                    54,
                                    256,
                                    67,
                                    94,
                                    736,
                                    63,
                                    146,
                                    66,
                                    48,
                                    53,
                                    61,
                                    61,
                                    64,
                                    100,
                                    55,
                                    284,
                                    63,
                                    616,
                                    97,
                                    92,
                                    48,
                                    60,
                                    583,
                                    55,
                                    5038,
                                    189,
                                    627,
                                    420,
                                    93,
                                    48,
                                    3879,
                                    58,
                                    289,
                                    644,
                                    522,
                                    5278,
                                    7955,
                                    139,
                                    266,
                                    122,
                                    622,
                                    49,
                                    240,
                                    182,
                                    46,
                                    58,
                                    623,
                                    213,
                                    745,
                                    67,
                                    22,
                                    209,
                                    216,
                                    299,
                                    207,
                                    83,
                                    899,
                                    155,
                                    1094,
                                    69,
                                    55,
                                    59,
                                    21,
                                    440,
                                    828,
                                    68,
                                    64,
                                    68,
                                    4618,
                                    334,
                                    121,
                                    232,
                                    511,
                                    565,
                                    79,
                                    113,
                                    67,
                                    111,
                                    71,
                                    66,
                                    56,
                                    1396,
                                    57,
                                    134,
                                    77,
                                    49,
                                    65,
                                    1026,
                                    632,
                                    76,
                                    68,
                                    89,
                                    549,
                                    166,
                                    72,
                                    1224,
                                    82,
                                    104,
                                    131,
                                    120,
                                    39,
                                    394,
                                    4543,
                                    58,
                                    56,
                                    63,
                                    5089,
                                    98,
                                    398,
                                    78,
                                    581,
                                    194,
                                    64,
                                    78,
                                    500,
                                    50,
                                    53,
                                    148,
                                    172,
                                    52,
                                    112,
                                    129,
                                    577,
                                    286,
                                    108,
                                    53,
                                    30,
                                    59,
                                    68,
                                    987,
                                    823,
                                    58,
                                    169,
                                    52,
                                    590,
                                    333,
                                    172,
                                    64,
                                    616,
                                    80,
                                    207,
                                    181,
                                    176,
                                    104,
                                    172,
                                    85,
                                    87,
                                    87,
                                    1255,
                                    104,
                                    95,
                                    84,
                                    95,
                                    87,
                                    63,
                                    68,
                                    49,
                                    69,
                                    96,
                                    54,
                                    75,
                                    63,
                                    70,
                                    74,
                                    72,
                                    786,
                                    3447,
                                    63,
                                    21,
                                    55,
                                    62,
                                    219,
                                    88,
                                    148,
                                    79,
                                    52,
                                    122,
                                    167,
                                    67,
                                    59,
                                    50,
                                    19,
                                    72,
                                    74,
                                    60,
                                    62,
                                    65,
                                    69,
                                    67,
                                    52,
                                    52,
                                    69,
                                    61,
                                    72,
                                    1047,
                                    57,
                                    451,
                                    238,
                                    35,
                                    934,
                                    908,
                                    124,
                                    364,
                                    58,
                                    46,
                                    698,
                                    1102
                                ]
                            },
                            {
                                "label": "Height st Width",
                                "range": [
                                    49000,
                                    568000
                                ],
                                "values": [
                                    236630.0,
                                    326876.0,
                                    347086.0,
                                    437333.0,
                                    457543.0,
                                    105963.0,
                                    568000.0,
                                    216420.0,
                                    236630.0,
                                    326876.0,
                                    347086.0,
                                    437333.0,
                                    457543.0,
                                    105963.0,
                                    568000.0,
                                    216420.0,
                                    236630.0,
                                    326876.0,
                                    347086.0,
                                    437333.0,
                                    457543.0,
                                    105963.0,
                                    568000.0,
                                    216420.0,
                                    236630.0,
                                    326876.0,
                                    350300.0,
                                    210200.0,
                                    106030.0,
                                    349000.0,
                                    288700.0,
                                    328200.0,
                                    262300.0,
                                    251400.0,
                                    384900.0,
                                    435500.0,
                                    224500.0,
                                    273000.0,
                                    276300.0,
                                    224500.0,
                                    222900.0,
                                    202100.0,
                                    394000.0,
                                    418300.0,
                                    302200.0,
                                    475800.0,
                                    338900.0,
                                    296400.0,
                                    115700.0,
                                    276700.0,
                                    298200.0,
                                    163400.0,
                                    380500.0,
                                    282000.0,
                                    226600.0,
                                    233500.0,
                                    404799.0,
                                    451800.0,
                                    424400.0,
                                    493100.0,
                                    397500.0,
                                    337600.0,
                                    157200.0,
                                    242399.0,
                                    421400.0,
                                    403700.0,
                                    397600.0,
                                    239400.0,
                                    416300.0,
                                    441200.0,
                                    354000.0,
                                    354000.0,
                                    315599.0,
                                    151100.0,
                                    269600.0,
                                    255900.0,
                                    270900.0,
                                    422299.0,
                                    488800.0,
                                    240300.0,
                                    376900.0,
                                    318200.0,
                                    302800.0,
                                    262600.0,
                                    238000.0,
                                    277400.0,
                                    122130.0,
                                    405500.0,
                                    455999.0,
                                    353400.0,
                                    287200.0,
                                    269800.0,
                                    292400.0,
                                    290200.0,
                                    357200.0,
                                    417600.0,
                                    519200.0,
                                    544600.0,
                                    318600.0,
                                    345200.0,
                                    352600.0,
                                    283500.0,
                                    172500.0,
                                    168299.0,
                                    427900.0,
                                    332800.0,
                                    84900.0,
                                    307400.0,
                                    418600.0,
                                    214700.0,
                                    280000.0,
                                    407700.0,
                                    366200.0,
                                    114300.0,
                                    86100.0,
                                    393700.0,
                                    239000.0,
                                    341900.0,
                                    358600.0,
                                    413900.0,
                                    382700.0,
                                    412600.0,
                                    344099.0,
                                    375500.0,
                                    372100.0,
                                    428300.0,
                                    365400.0,
                                    436500.0,
                                    390500.0,
                                    288300.0,
                                    403900.0,
                                    301000.0,
                                    376599.0,
                                    470700.0,
                                    460900.0,
                                    374300.0,
                                    246200.0,
                                    333300.0,
                                    349700.0,
                                    106600.0,
                                    514099.0,
                                    341100.0,
                                    364700.0,
                                    229730.0,
                                    388600.0,
                                    339000.0,
                                    466700.0,
                                    491500.0,
                                    419400.0,
                                    478100.0,
                                    398200.0,
                                    372500.0,
                                    493300.0,
                                    498400.0,
                                    396200.0,
                                    445300.0,
                                    367700.0,
                                    164300.0,
                                    487500.0,
                                    402400.0,
                                    388300.0,
                                    496400.0,
                                    405900.0,
                                    453400.0,
                                    376000.0,
                                    470600.0,
                                    440900.0,
                                    396300.0,
                                    469500.0,
                                    523200.0,
                                    275700.0,
                                    457800.0,
                                    474700.0,
                                    409900.0,
                                    167700.0,
                                    425800.0,
                                    402200.0,
                                    418300.0,
                                    441599.0,
                                    426700.0,
                                    364200.0,
                                    435800.0,
                                    433000.0,
                                    427500.0,
                                    432600.0,
                                    485600.0,
                                    464000.0,
                                    431000.0,
                                    365300.0,
                                    440200.0,
                                    467200.0,
                                    467200.0,
                                    384000.0,
                                    433200.0,
                                    425500.0,
                                    437500.0,
                                    474500.0,
                                    424600.0,
                                    416500.0,
                                    421100.0,
                                    429000.0,
                                    451200.0,
                                    429099.0,
                                    507200.0,
                                    430000.0,
                                    414000.0,
                                    431599.0,
                                    475600.0,
                                    385700.0,
                                    465100.0,
                                    454900.0,
                                    450700.0,
                                    425800.0,
                                    451900.0,
                                    449099.0,
                                    420500.0,
                                    447200.0,
                                    480400.0,
                                    389200.0,
                                    244500.0,
                                    430400.0,
                                    437900.0,
                                    430000.0,
                                    452800.0,
                                    452800.0,
                                    300300.0,
                                    449000.0,
                                    348100.0,
                                    313200.0,
                                    425100.0,
                                    227200.0,
                                    448900.0,
                                    421700.0,
                                    446400.0,
                                    445000.0,
                                    494000.0,
                                    453100.0,
                                    394799.0,
                                    223600.0,
                                    460500.0,
                                    352500.0,
                                    448200.0,
                                    457800.0,
                                    500200.0,
                                    424099.0,
                                    456300.0,
                                    428300.0,
                                    464500.0,
                                    225400.0,
                                    109600.0,
                                    461700.0,
                                    465200.0,
                                    381200.0,
                                    449300.0,
                                    461200.0,
                                    418900.0,
                                    445500.0,
                                    451599.0,
                                    440600.0,
                                    465800.0,
                                    380400.0,
                                    464400.0,
                                    469200.0,
                                    469600.0,
                                    248600.0,
                                    462700.0,
                                    451700.0,
                                    441800.0,
                                    303800.0,
                                    469300.0,
                                    496800.0,
                                    463900.0,
                                    459000.0,
                                    291500.0,
                                    458100.0,
                                    459300.0,
                                    450100.0,
                                    469799.0,
                                    393900.0,
                                    465000.0,
                                    448300.0,
                                    222700.0,
                                    203400.0,
                                    461300.0,
                                    455000.0,
                                    447700.0,
                                    456599.0,
                                    444700.0,
                                    463100.0,
                                    310000.0,
                                    470800.0,
                                    457000.0,
                                    442600.0,
                                    459600.0,
                                    458900.0,
                                    457900.0,
                                    447000.0,
                                    457200.0,
                                    456100.0,
                                    456000.0,
                                    446400.0,
                                    453700.0,
                                    463100.0,
                                    472700.0,
                                    514300.0,
                                    440400.0,
                                    440700.0,
                                    449900.0,
                                    452800.0,
                                    454799.0,
                                    463100.0,
                                    166300.0,
                                    452000.0,
                                    462400.0,
                                    244600.0,
                                    460400.0,
                                    462100.0,
                                    463200.0,
                                    466700.0,
                                    447900.0,
                                    465700.0,
                                    132900.0,
                                    465300.0,
                                    461400.0,
                                    469799.0,
                                    461700.0,
                                    449000.0,
                                    473500.0,
                                    505700.0,
                                    450300.0,
                                    461100.0,
                                    469099.0,
                                    457100.0,
                                    469000.0,
                                    462200.0,
                                    499099.0,
                                    509000.0,
                                    476800.0,
                                    456000.0,
                                    484099.0,
                                    424200.0,
                                    399900.0,
                                    192900.0,
                                    463600.0,
                                    453700.0,
                                    306300.0,
                                    75800.0,
                                    467700.0,
                                    458000.0,
                                    202200.0,
                                    464300.0,
                                    456900.0,
                                    467500.0,
                                    474099.0,
                                    481300.0,
                                    447400.0,
                                    430600.0,
                                    453200.0,
                                    456200.0,
                                    461300.0,
                                    322500.0,
                                    479300.0,
                                    465400.0,
                                    401599.0,
                                    475900.0,
                                    429200.0,
                                    466500.0,
                                    456900.0,
                                    480000.0,
                                    441900.0,
                                    280300.0,
                                    475200.0,
                                    466500.0,
                                    472400.0,
                                    465100.0,
                                    462600.0,
                                    476100.0,
                                    473200.0,
                                    470100.0,
                                    463700.0,
                                    468800.0,
                                    459700.0,
                                    482500.0,
                                    232300.0,
                                    409799.0,
                                    464200.0,
                                    476900.0,
                                    466200.0,
                                    295700.0,
                                    325500.0,
                                    464099.0,
                                    471500.0,
                                    377900.0,
                                    472700.0,
                                    350600.0,
                                    464500.0,
                                    159700.0,
                                    468300.0,
                                    473500.0,
                                    470500.0,
                                    462400.0,
                                    467299.0,
                                    470900.0,
                                    462700.0,
                                    452200.0,
                                    470100.0,
                                    469700.0,
                                    506800.0,
                                    461200.0,
                                    460900.0,
                                    466000.0,
                                    525900.0,
                                    463500.0,
                                    448500.0,
                                    534900.0,
                                    462800.0,
                                    465400.0,
                                    454300.0,
                                    465300.0,
                                    308000.0,
                                    471800.0,
                                    486300.0,
                                    474400.0,
                                    237100.0,
                                    500300.0,
                                    319100.0,
                                    186400.0,
                                    469099.0,
                                    452900.0,
                                    468800.0,
                                    152200.0,
                                    372500.0,
                                    432600.0,
                                    448400.0,
                                    444200.0,
                                    354300.0,
                                    131400.0,
                                    461799.0,
                                    436300.0,
                                    456800.0,
                                    326800.0,
                                    469400.0,
                                    449000.0,
                                    273800.0,
                                    467200.0,
                                    272300.0,
                                    466300.0,
                                    471300.0,
                                    473600.0,
                                    464099.0,
                                    425100.0,
                                    236000.0,
                                    456900.0,
                                    510700.0,
                                    223500.0,
                                    457500.0,
                                    457100.0,
                                    375300.0,
                                    464500.0,
                                    320700.0,
                                    221200.0,
                                    467100.0,
                                    458200.0,
                                    388900.0,
                                    463500.0,
                                    472600.0,
                                    454600.0,
                                    462200.0,
                                    533800.0,
                                    455700.0,
                                    461500.0,
                                    491400.0,
                                    459799.0,
                                    465200.0,
                                    407400.0,
                                    497700.0,
                                    296800.0,
                                    456300.0,
                                    193500.0,
                                    465800.0,
                                    427299.0,
                                    507400.0,
                                    407000.0,
                                    392299.0,
                                    449900.0,
                                    506900.0,
                                    451800.0,
                                    414299.0,
                                    374799.0,
                                    456800.0,
                                    98600.0,
                                    463500.0,
                                    453300.0,
                                    407700.0,
                                    455600.0,
                                    459099.0,
                                    441400.0,
                                    382100.0,
                                    426900.0,
                                    462400.0,
                                    49000.0,
                                    133200.0,
                                    459799.0,
                                    451800.0,
                                    464600.0,
                                    456400.0,
                                    407400.0,
                                    419700.0,
                                    456300.0,
                                    236500.0,
                                    500900.0,
                                    437800.0,
                                    439500.0,
                                    435900.0,
                                    465500.0,
                                    477700.0,
                                    451599.0,
                                    240400.0,
                                    438900.0,
                                    438500.0,
                                    464600.0,
                                    494700.0,
                                    369600.0,
                                    427800.0,
                                    483600.0,
                                    437400.0,
                                    482400.0,
                                    456800.0,
                                    102700.0,
                                    401700.0,
                                    478500.0,
                                    425900.0,
                                    147600.0,
                                    212500.0,
                                    482800.0,
                                    478700.0,
                                    465900.0,
                                    458800.0,
                                    458900.0,
                                    464400.0,
                                    459900.0,
                                    444700.0,
                                    394000.0,
                                    211700.0,
                                    459099.0,
                                    455200.0,
                                    434000.0,
                                    195500.0,
                                    482600.0,
                                    435700.0,
                                    282400.0,
                                    323900.0,
                                    386599.0,
                                    257900.0,
                                    86800.0,
                                    504000.0,
                                    337000.0,
                                    301300.0,
                                    299500.0,
                                    390400.0,
                                    376300.0,
                                    390200.0,
                                    488000.0,
                                    271100.0,
                                    426000.0,
                                    283800.0,
                                    456700.0,
                                    459500.0,
                                    314100.0,
                                    344000.0,
                                    352400.0,
                                    274700.0,
                                    404700.0,
                                    471200.0,
                                    336200.0,
                                    336300.0,
                                    510000.0,
                                    283600.0,
                                    484500.0,
                                    280700.0,
                                    248900.0,
                                    447800.0,
                                    379200.0,
                                    486200.0,
                                    294000.0,
                                    337200.0,
                                    383800.0,
                                    305400.0,
                                    305900.0,
                                    338200.0,
                                    378200.0,
                                    366900.0,
                                    405700.0,
                                    313600.0,
                                    372600.0,
                                    320300.0,
                                    303900.0,
                                    365200.0,
                                    365400.0,
                                    349700.0,
                                    284000.0,
                                    339600.0,
                                    322700.0,
                                    334000.0,
                                    334799.0,
                                    261800.0,
                                    369900.0,
                                    290300.0,
                                    283400.0,
                                    309200.0,
                                    319600.0,
                                    343800.0,
                                    359500.0,
                                    242600.0,
                                    360300.0,
                                    334400.0,
                                    361700.0,
                                    488500.0,
                                    315600.0,
                                    470800.0,
                                    311100.0,
                                    506800.0,
                                    374400.0,
                                    295800.0,
                                    344300.0,
                                    343800.0,
                                    322400.0,
                                    359500.0,
                                    369300.0,
                                    138600.0,
                                    376500.0,
                                    127700.0,
                                    383100.0,
                                    351300.0,
                                    336599.0,
                                    435700.0,
                                    355200.0,
                                    368800.0,
                                    392100.0,
                                    366800.0,
                                    351200.0,
                                    353100.0,
                                    364600.0,
                                    396400.0,
                                    401400.0,
                                    393200.0,
                                    342600.0,
                                    89900.0,
                                    330200.0,
                                    405400.0,
                                    364600.0,
                                    479600.0,
                                    279400.0,
                                    307100.0,
                                    407900.0,
                                    265200.0,
                                    422100.0,
                                    283500.0,
                                    422400.0,
                                    367200.0,
                                    302700.0,
                                    352800.0,
                                    347100.0,
                                    373600.0,
                                    379400.0,
                                    373400.0,
                                    505500.0,
                                    383600.0,
                                    411800.0,
                                    428000.0,
                                    385600.0,
                                    380800.0,
                                    278900.0,
                                    366700.0,
                                    54500.0,
                                    384700.0,
                                    443500.0,
                                    362200.0,
                                    362200.0,
                                    248000.0,
                                    441800.0,
                                    388300.0,
                                    374000.0,
                                    386700.0,
                                    400000.0,
                                    347800.0,
                                    293000.0,
                                    409300.0,
                                    315100.0,
                                    395800.0,
                                    390600.0,
                                    373100.0,
                                    384000.0,
                                    392700.0,
                                    401500.0,
                                    380800.0,
                                    380700.0,
                                    475500.0,
                                    391900.0,
                                    454099.0,
                                    429099.0,
                                    389099.0,
                                    373300.0,
                                    444200.0,
                                    369200.0,
                                    427299.0,
                                    373500.0,
                                    414600.0,
                                    359400.0,
                                    491200.0,
                                    433700.0,
                                    370200.0,
                                    372700.0,
                                    357200.0,
                                    287600.0,
                                    281900.0,
                                    390900.0,
                                    445700.0,
                                    430500.0,
                                    423300.0,
                                    375800.0,
                                    362000.0,
                                    445000.0,
                                    441100.0,
                                    415900.0,
                                    415600.0,
                                    356200.0,
                                    441200.0,
                                    447600.0,
                                    279400.0,
                                    437800.0,
                                    355700.0,
                                    423500.0,
                                    437800.0,
                                    443000.0,
                                    395700.0,
                                    393900.0,
                                    467500.0,
                                    445100.0,
                                    438300.0,
                                    391300.0,
                                    442100.0,
                                    443200.0,
                                    438800.0,
                                    448500.0,
                                    433800.0,
                                    444300.0,
                                    458400.0,
                                    460100.0,
                                    450500.0,
                                    468000.0,
                                    469400.0,
                                    447800.0,
                                    421000.0,
                                    278700.0,
                                    446599.0,
                                    452000.0,
                                    472000.0,
                                    411900.0,
                                    459000.0,
                                    454700.0,
                                    452600.0,
                                    448500.0,
                                    466200.0,
                                    441400.0,
                                    449200.0,
                                    451400.0,
                                    466700.0,
                                    456599.0,
                                    467100.0,
                                    444099.0,
                                    442700.0,
                                    325700.0,
                                    460400.0,
                                    443900.0,
                                    462700.0,
                                    452100.0,
                                    304500.0,
                                    442299.0,
                                    98600.0,
                                    438800.0,
                                    464000.0,
                                    219899.0,
                                    435300.0,
                                    316200.0,
                                    334600.0,
                                    265200.0,
                                    458700.0,
                                    295400.0,
                                    441400.0,
                                    454600.0,
                                    503600.0,
                                    444600.0,
                                    179800.0,
                                    361500.0,
                                    467100.0,
                                    472500.0,
                                    463400.0,
                                    486599.0,
                                    458200.0,
                                    410100.0,
                                    372900.0,
                                    476700.0,
                                    391599.0,
                                    441800.0,
                                    458500.0,
                                    401800.0,
                                    401700.0,
                                    433700.0,
                                    462299.0,
                                    431900.0,
                                    433100.0,
                                    486100.0,
                                    203800.0,
                                    257800.0,
                                    464099.0,
                                    452299.0,
                                    141800.0,
                                    456800.0,
                                    459099.0,
                                    430800.0,
                                    309900.0,
                                    454300.0,
                                    520600.0,
                                    352700.0,
                                    460900.0,
                                    448100.0,
                                    455400.0,
                                    466300.0,
                                    459400.0,
                                    461500.0,
                                    456100.0,
                                    448100.0,
                                    470600.0,
                                    445200.0,
                                    462400.0,
                                    306100.0,
                                    451200.0,
                                    361000.0,
                                    449700.0,
                                    461500.0,
                                    375500.0,
                                    457299.0,
                                    480099.0,
                                    458200.0,
                                    226800.0,
                                    446500.0,
                                    466500.0,
                                    459900.0,
                                    452000.0,
                                    468400.0,
                                    451300.0,
                                    470700.0,
                                    465800.0,
                                    184800.0,
                                    456100.0,
                                    463000.0,
                                    465300.0,
                                    447200.0,
                                    467700.0,
                                    474000.0,
                                    269800.0,
                                    441200.0,
                                    451500.0,
                                    463900.0,
                                    444200.0,
                                    446000.0,
                                    346500.0,
                                    444000.0,
                                    444799.0,
                                    457700.0,
                                    459799.0,
                                    464300.0,
                                    376300.0,
                                    345000.0,
                                    242200.0,
                                    217100.0,
                                    466400.0,
                                    457100.0,
                                    473400.0,
                                    462900.0,
                                    457500.0,
                                    424400.0,
                                    461100.0,
                                    191500.0,
                                    458000.0,
                                    460500.0,
                                    319000.0,
                                    265700.0,
                                    188500.0,
                                    344900.0,
                                    458400.0,
                                    461700.0,
                                    462200.0,
                                    462100.0,
                                    93699.0,
                                    458400.0,
                                    438100.0,
                                    458500.0,
                                    457000.0,
                                    455300.0,
                                    322900.0,
                                    250100.0,
                                    215900.0,
                                    465200.0,
                                    474900.0,
                                    459099.0,
                                    457000.0,
                                    109100.0,
                                    459600.0,
                                    457100.0,
                                    479900.0,
                                    459500.0,
                                    442800.0,
                                    459900.0,
                                    468400.0,
                                    458500.0,
                                    457200.0,
                                    162700.0,
                                    462800.0,
                                    460300.0,
                                    457600.0,
                                    462400.0,
                                    461400.0,
                                    472400.0,
                                    447400.0,
                                    466700.0,
                                    452299.0,
                                    328700.0,
                                    266600.0,
                                    476700.0,
                                    456599.0,
                                    443900.0,
                                    480800.0,
                                    471700.0,
                                    452900.0,
                                    429900.0,
                                    334600.0,
                                    461700.0,
                                    463400.0,
                                    469600.0,
                                    376100.0,
                                    457800.0,
                                    464099.0,
                                    429099.0,
                                    466300.0,
                                    457200.0,
                                    459200.0,
                                    463000.0,
                                    68100.0,
                                    465800.0,
                                    460500.0,
                                    455400.0,
                                    241600.0,
                                    466100.0,
                                    462100.0,
                                    467100.0,
                                    469600.0,
                                    452700.0,
                                    461800.0,
                                    459400.0,
                                    460800.0,
                                    465100.0,
                                    461000.0,
                                    506900.0,
                                    470400.0,
                                    465700.0,
                                    465700.0,
                                    457000.0,
                                    467000.0,
                                    316400.0,
                                    464700.0,
                                    462000.0,
                                    465200.0,
                                    470500.0,
                                    472299.0,
                                    471700.0,
                                    459799.0,
                                    462700.0,
                                    466500.0,
                                    465900.0,
                                    466700.0,
                                    468300.0,
                                    469700.0,
                                    463500.0,
                                    463700.0,
                                    462500.0,
                                    465200.0,
                                    462800.0,
                                    414000.0,
                                    473000.0,
                                    280800.0,
                                    461800.0,
                                    465200.0,
                                    462500.0,
                                    470000.0,
                                    468000.0,
                                    459300.0,
                                    460900.0,
                                    464400.0,
                                    456200.0,
                                    457100.0,
                                    463700.0,
                                    449600.0,
                                    463700.0,
                                    466100.0,
                                    460700.0,
                                    465500.0,
                                    466700.0,
                                    457500.0,
                                    465900.0,
                                    453000.0,
                                    467200.0,
                                    462800.0,
                                    466100.0,
                                    467100.0,
                                    456500.0,
                                    463000.0,
                                    478300.0,
                                    463200.0,
                                    462400.0,
                                    465200.0,
                                    293600.0,
                                    460500.0,
                                    463100.0,
                                    465000.0,
                                    361500.0,
                                    464700.0,
                                    464900.0,
                                    465700.0,
                                    469300.0,
                                    173400.0,
                                    454700.0,
                                    454700.0,
                                    406300.0,
                                    482500.0,
                                    417200.0,
                                    509400.0,
                                    461100.0,
                                    459799.0,
                                    410300.0,
                                    452200.0,
                                    471300.0,
                                    455200.0,
                                    429000.0,
                                    444500.0,
                                    495100.0,
                                    473400.0,
                                    445800.0,
                                    470400.0,
                                    534200.0,
                                    466300.0,
                                    449300.0,
                                    454099.0,
                                    385700.0,
                                    468500.0,
                                    451100.0,
                                    453700.0,
                                    470700.0,
                                    476599.0,
                                    472400.0,
                                    467000.0,
                                    370700.0,
                                    474000.0,
                                    451800.0,
                                    458700.0,
                                    352800.0,
                                    460500.0,
                                    475000.0,
                                    466800.0,
                                    262000.0,
                                    465700.0,
                                    202200.0,
                                    466100.0,
                                    463200.0,
                                    473500.0,
                                    163700.0,
                                    275600.0,
                                    462000.0,
                                    471000.0,
                                    323000.0,
                                    471400.0,
                                    461500.0,
                                    321700.0,
                                    462400.0,
                                    359500.0,
                                    473200.0,
                                    358400.0,
                                    463100.0,
                                    464900.0,
                                    467800.0,
                                    458500.0,
                                    453400.0,
                                    463800.0,
                                    464300.0,
                                    451900.0,
                                    467500.0,
                                    472900.0,
                                    117600.0,
                                    456900.0,
                                    465800.0,
                                    205600.0,
                                    460600.0,
                                    474500.0,
                                    471200.0,
                                    473300.0,
                                    270800.0,
                                    309600.0,
                                    467700.0,
                                    473900.0,
                                    196100.0,
                                    469700.0,
                                    469099.0,
                                    453900.0,
                                    468600.0,
                                    464500.0,
                                    467500.0,
                                    472800.0,
                                    471500.0,
                                    464099.0,
                                    470700.0,
                                    459000.0,
                                    464200.0,
                                    478300.0,
                                    461300.0,
                                    466599.0,
                                    456000.0,
                                    454600.0,
                                    470500.0,
                                    465600.0,
                                    441200.0,
                                    477900.0,
                                    263100.0,
                                    464099.0,
                                    469799.0,
                                    464799.0,
                                    434300.0,
                                    340900.0,
                                    413100.0,
                                    395300.0,
                                    475200.0,
                                    138900.0,
                                    468300.0,
                                    490700.0,
                                    460700.0,
                                    349600.0,
                                    303000.0,
                                    465300.0,
                                    294700.0,
                                    451900.0,
                                    470600.0,
                                    464700.0,
                                    234500.0,
                                    460100.0,
                                    349600.0,
                                    468500.0,
                                    431000.0,
                                    470800.0,
                                    312100.0,
                                    454900.0,
                                    363600.0,
                                    465800.0,
                                    468800.0,
                                    449099.0,
                                    143500.0,
                                    281200.0,
                                    322100.0,
                                    318600.0,
                                    460600.0,
                                    461700.0,
                                    468900.0,
                                    475400.0,
                                    283100.0,
                                    458400.0,
                                    466400.0,
                                    466400.0,
                                    335100.0,
                                    461900.0,
                                    353600.0,
                                    459400.0,
                                    476300.0,
                                    455000.0,
                                    461200.0,
                                    455900.0,
                                    461200.0,
                                    465500.0,
                                    291600.0,
                                    416300.0,
                                    461599.0,
                                    358300.0,
                                    415700.0,
                                    295100.0,
                                    465000.0,
                                    395100.0,
                                    427400.0,
                                    461000.0,
                                    542900.0,
                                    343400.0,
                                    463400.0,
                                    311200.0,
                                    264500.0,
                                    305500.0,
                                    480500.0,
                                    444900.0,
                                    480300.0,
                                    456200.0,
                                    493000.0,
                                    446200.0,
                                    429700.0,
                                    494700.0,
                                    450600.0,
                                    441100.0,
                                    452299.0,
                                    133300.0,
                                    251600.0,
                                    462299.0,
                                    461100.0,
                                    474200.0,
                                    444400.0,
                                    181900.0,
                                    460200.0,
                                    478100.0,
                                    471700.0,
                                    459400.0,
                                    238700.0,
                                    351400.0,
                                    461200.0,
                                    239100.0,
                                    437100.0,
                                    475500.0,
                                    507500.0,
                                    463400.0,
                                    462299.0,
                                    462900.0,
                                    437500.0,
                                    458400.0,
                                    452900.0,
                                    457000.0,
                                    458900.0,
                                    466800.0,
                                    388800.0,
                                    473700.0,
                                    459300.0,
                                    459200.0,
                                    453000.0,
                                    469099.0,
                                    471000.0,
                                    458600.0,
                                    275500.0,
                                    336200.0,
                                    293500.0,
                                    381100.0,
                                    380000.0,
                                    401700.0,
                                    479000.0,
                                    417600.0,
                                    463600.0,
                                    327800.0,
                                    380400.0,
                                    474300.0,
                                    461400.0,
                                    399500.0,
                                    328500.0,
                                    127000.0,
                                    467600.0,
                                    468600.0,
                                    457600.0,
                                    475100.0,
                                    357800.0,
                                    420900.0,
                                    453900.0,
                                    348300.0,
                                    413700.0,
                                    466800.0,
                                    422500.0,
                                    400400.0,
                                    293700.0,
                                    287800.0,
                                    455400.0,
                                    406100.0,
                                    418200.0,
                                    473900.0,
                                    462800.0,
                                    441200.0,
                                    475000.0,
                                    426400.0,
                                    468000.0,
                                    460300.0,
                                    459500.0,
                                    267400.0,
                                    457299.0,
                                    452800.0,
                                    466800.0,
                                    181400.0,
                                    459000.0,
                                    454200.0,
                                    456000.0,
                                    479200.0,
                                    466100.0,
                                    454400.0,
                                    464700.0,
                                    339300.0,
                                    458400.0,
                                    461900.0,
                                    426100.0,
                                    388300.0,
                                    485000.0,
                                    457000.0,
                                    462400.0,
                                    354500.0,
                                    288400.0,
                                    316400.0,
                                    460600.0,
                                    462200.0,
                                    305900.0,
                                    455000.0,
                                    382000.0,
                                    446800.0,
                                    375600.0,
                                    464200.0,
                                    455900.0,
                                    465200.0,
                                    467800.0,
                                    444700.0,
                                    460500.0,
                                    200200.0,
                                    425200.0,
                                    126400.0,
                                    453500.0,
                                    76800.0,
                                    151600.0,
                                    514300.0,
                                    464400.0,
                                    460300.0,
                                    433000.0,
                                    220300.0,
                                    453600.0,
                                    437100.0,
                                    442600.0,
                                    468300.0,
                                    395300.0,
                                    212600.0,
                                    278700.0,
                                    448400.0,
                                    404500.0,
                                    241900.0,
                                    435599.0,
                                    441200.0,
                                    418600.0,
                                    383800.0,
                                    451700.0,
                                    526300.0,
                                    459600.0,
                                    465700.0,
                                    319200.0,
                                    382500.0,
                                    451300.0,
                                    364000.0,
                                    397200.0,
                                    470400.0,
                                    485500.0,
                                    461100.0,
                                    474900.0,
                                    461100.0,
                                    468100.0,
                                    467600.0,
                                    407600.0,
                                    434099.0,
                                    441700.0,
                                    432100.0,
                                    401200.0,
                                    455600.0,
                                    456100.0,
                                    450200.0,
                                    444700.0,
                                    457500.0,
                                    470400.0,
                                    462500.0,
                                    358700.0,
                                    459700.0,
                                    454200.0,
                                    452200.0,
                                    454600.0,
                                    261100.0,
                                    442400.0,
                                    392299.0,
                                    375600.0,
                                    456000.0,
                                    449300.0,
                                    449500.0,
                                    421100.0,
                                    463700.0,
                                    473500.0,
                                    454400.0,
                                    457100.0,
                                    447200.0,
                                    278600.0,
                                    342700.0,
                                    445100.0,
                                    387800.0,
                                    457800.0,
                                    141700.0,
                                    451900.0,
                                    263500.0,
                                    298400.0,
                                    448000.0,
                                    268200.0,
                                    461000.0,
                                    405500.0,
                                    393500.0,
                                    461000.0,
                                    453200.0,
                                    332000.0,
                                    175430.0,
                                    431300.0,
                                    192500.0,
                                    389799.0,
                                    465100.0,
                                    386599.0,
                                    443900.0,
                                    429300.0,
                                    223500.0,
                                    380000.0,
                                    389099.0,
                                    446000.0,
                                    425100.0,
                                    409900.0,
                                    432400.0,
                                    429500.0,
                                    453600.0,
                                    231100.0,
                                    465500.0,
                                    443000.0,
                                    453700.0,
                                    471900.0,
                                    441599.0,
                                    445400.0,
                                    447900.0,
                                    164300.0,
                                    413300.0,
                                    400200.0,
                                    278600.0,
                                    453600.0,
                                    448500.0,
                                    443700.0,
                                    434400.0,
                                    465600.0,
                                    92899.0,
                                    450700.0,
                                    469200.0,
                                    466000.0,
                                    132700.0,
                                    427800.0,
                                    308300.0,
                                    490400.0,
                                    331700.0,
                                    463900.0,
                                    446400.0,
                                    454200.0,
                                    352900.0,
                                    450500.0,
                                    405000.0,
                                    444200.0,
                                    432299.0,
                                    391900.0,
                                    343400.0,
                                    427400.0,
                                    441300.0,
                                    441300.0,
                                    459300.0,
                                    447700.0,
                                    401300.0,
                                    421599.0,
                                    439300.0,
                                    441900.0,
                                    391000.0,
                                    434700.0,
                                    467700.0,
                                    107400.0,
                                    439600.0,
                                    458300.0,
                                    449500.0,
                                    432800.0,
                                    446500.0,
                                    324400.0,
                                    446400.0,
                                    440200.0,
                                    330100.0,
                                    452600.0,
                                    435500.0,
                                    434700.0,
                                    442700.0,
                                    443800.0,
                                    363800.0,
                                    332700.0,
                                    450700.0,
                                    400800.0,
                                    333800.0,
                                    448300.0,
                                    332299.0,
                                    441300.0,
                                    445900.0,
                                    437400.0,
                                    456200.0,
                                    451700.0,
                                    463200.0,
                                    336800.0,
                                    434300.0,
                                    409700.0,
                                    440600.0,
                                    464400.0,
                                    157100.0,
                                    407800.0,
                                    343300.0,
                                    431200.0,
                                    240400.0,
                                    343000.0,
                                    447500.0,
                                    467700.0,
                                    458500.0,
                                    297800.0,
                                    432900.0,
                                    510700.0,
                                    363300.0,
                                    457400.0,
                                    360400.0,
                                    437000.0,
                                    460300.0,
                                    474300.0,
                                    442200.0,
                                    451000.0,
                                    464799.0,
                                    466599.0,
                                    447000.0,
                                    461000.0,
                                    450700.0,
                                    461200.0,
                                    442800.0,
                                    441000.0,
                                    469600.0,
                                    448600.0,
                                    335500.0,
                                    443300.0,
                                    87300.0,
                                    450200.0,
                                    427400.0,
                                    463300.0,
                                    447299.0,
                                    313700.0,
                                    441700.0,
                                    458000.0,
                                    469300.0,
                                    466300.0,
                                    250500.0,
                                    164200.0,
                                    379799.0,
                                    379400.0,
                                    414900.0,
                                    459799.0,
                                    436000.0,
                                    444400.0,
                                    446100.0,
                                    395500.0,
                                    429600.0,
                                    467800.0,
                                    443600.0,
                                    456500.0,
                                    167900.0,
                                    424000.0,
                                    465600.0,
                                    452100.0,
                                    459300.0,
                                    459799.0,
                                    426700.0,
                                    247000.0,
                                    459600.0,
                                    355000.0,
                                    467400.0,
                                    452800.0,
                                    435100.0,
                                    458200.0,
                                    514799.0,
                                    435800.0,
                                    455100.0,
                                    463300.0,
                                    458900.0,
                                    278900.0,
                                    462600.0,
                                    454400.0,
                                    473600.0,
                                    446200.0,
                                    460800.0,
                                    445300.0,
                                    466500.0,
                                    472200.0,
                                    463200.0,
                                    477100.0,
                                    286800.0,
                                    438400.0,
                                    457600.0,
                                    452800.0,
                                    464900.0,
                                    455000.0,
                                    459300.0,
                                    449400.0,
                                    484700.0,
                                    477200.0,
                                    320300.0,
                                    453200.0,
                                    352100.0,
                                    460100.0,
                                    450100.0,
                                    457900.0,
                                    365900.0,
                                    466000.0,
                                    445700.0,
                                    453600.0,
                                    470000.0,
                                    485600.0,
                                    185200.0,
                                    276300.0,
                                    457600.0,
                                    469000.0,
                                    459000.0,
                                    458700.0,
                                    358200.0,
                                    446000.0,
                                    284600.0,
                                    455100.0,
                                    150600.0,
                                    463100.0,
                                    468100.0,
                                    302300.0,
                                    462600.0,
                                    477299.0,
                                    356100.0,
                                    361900.0,
                                    422600.0,
                                    445400.0,
                                    459900.0,
                                    474600.0,
                                    406500.0,
                                    456300.0,
                                    465300.0,
                                    454000.0,
                                    448000.0,
                                    467500.0,
                                    465700.0,
                                    274100.0,
                                    229300.0,
                                    440200.0,
                                    467400.0,
                                    443600.0,
                                    338300.0,
                                    279000.0,
                                    465500.0,
                                    465600.0,
                                    461800.0,
                                    409099.0,
                                    466300.0,
                                    463500.0,
                                    208200.0,
                                    509799.0,
                                    489700.0,
                                    452600.0,
                                    457299.0,
                                    385900.0,
                                    456200.0,
                                    455700.0,
                                    474300.0,
                                    461700.0,
                                    466800.0,
                                    470600.0,
                                    449000.0,
                                    462700.0,
                                    352600.0,
                                    343200.0,
                                    384799.0,
                                    473300.0,
                                    466400.0,
                                    400500.0,
                                    162700.0,
                                    333500.0,
                                    491300.0,
                                    476900.0,
                                    456500.0,
                                    453700.0,
                                    419799.0,
                                    410400.0,
                                    413500.0,
                                    211200.0,
                                    260200.0,
                                    258600.0,
                                    460700.0,
                                    389300.0,
                                    520200.0,
                                    440300.0,
                                    195500.0,
                                    448900.0,
                                    475300.0,
                                    453200.0,
                                    455900.0,
                                    466300.0,
                                    456200.0,
                                    453000.0,
                                    461100.0,
                                    296400.0,
                                    527300.0,
                                    458700.0,
                                    212900.0,
                                    457100.0,
                                    380800.0,
                                    492000.0,
                                    449300.0,
                                    319000.0,
                                    345500.0,
                                    181500.0,
                                    316700.0,
                                    466800.0,
                                    281000.0,
                                    365100.0,
                                    408400.0,
                                    413600.0,
                                    457000.0,
                                    454900.0,
                                    463100.0,
                                    263800.0,
                                    353500.0,
                                    496500.0,
                                    354500.0,
                                    318800.0,
                                    455400.0,
                                    454799.0,
                                    468800.0,
                                    318300.0,
                                    174300.0,
                                    505700.0,
                                    460100.0,
                                    352700.0,
                                    261500.0,
                                    200900.0,
                                    504799.0,
                                    539700.0,
                                    391599.0,
                                    390900.0,
                                    471800.0,
                                    404799.0,
                                    464000.0,
                                    468100.0,
                                    343600.0,
                                    204400.0,
                                    501000.0,
                                    479200.0,
                                    497800.0,
                                    481000.0,
                                    346800.0,
                                    395000.0,
                                    415000.0,
                                    429000.0,
                                    488600.0,
                                    491000.0,
                                    341100.0,
                                    465000.0,
                                    345900.0,
                                    447200.0,
                                    481500.0,
                                    516200.0,
                                    455200.0,
                                    498300.0,
                                    392100.0,
                                    444900.0,
                                    238000.0,
                                    452700.0,
                                    477299.0,
                                    449000.0,
                                    478100.0,
                                    479300.0,
                                    458100.0,
                                    476900.0,
                                    462500.0,
                                    483700.0,
                                    498700.0,
                                    460500.0,
                                    448200.0,
                                    213900.0,
                                    454799.0,
                                    392700.0,
                                    453000.0,
                                    443500.0,
                                    383100.0,
                                    461099.0,
                                    456200.0,
                                    450500.0,
                                    472400.0,
                                    50800.0,
                                    460600.0,
                                    468200.0,
                                    323300.0,
                                    471100.0,
                                    462000.0,
                                    332500.0,
                                    462200.0,
                                    458800.0,
                                    383400.0,
                                    468200.0,
                                    454000.0,
                                    274600.0,
                                    450500.0,
                                    461300.0,
                                    411700.0,
                                    139500.0,
                                    464799.0,
                                    457500.0,
                                    462200.0,
                                    345200.0,
                                    378000.0,
                                    418900.0,
                                    466900.0,
                                    448000.0,
                                    336200.0,
                                    333500.0,
                                    343100.0,
                                    351800.0,
                                    394799.0,
                                    349700.0,
                                    447900.0,
                                    493200.0,
                                    463600.0,
                                    102500.0,
                                    459799.0,
                                    469799.0,
                                    388600.0,
                                    449799.0,
                                    349200.0,
                                    446200.0,
                                    459700.0,
                                    247100.0,
                                    471500.0,
                                    464700.0,
                                    435300.0,
                                    464400.0,
                                    449799.0,
                                    518000.0,
                                    455100.0,
                                    476300.0,
                                    450200.0,
                                    437100.0,
                                    476400.0,
                                    332900.0,
                                    133100.0,
                                    463700.0,
                                    505100.0,
                                    466900.0,
                                    325300.0,
                                    470500.0,
                                    264700.0,
                                    456000.0,
                                    474300.0,
                                    444400.0,
                                    125900.0,
                                    445800.0,
                                    457800.0,
                                    398000.0,
                                    434900.0,
                                    362900.0,
                                    457700.0,
                                    457000.0,
                                    447100.0,
                                    251400.0,
                                    246200.0,
                                    459900.0,
                                    466500.0,
                                    416800.0,
                                    385200.0,
                                    440300.0,
                                    418700.0,
                                    456000.0,
                                    450000.0,
                                    394900.0,
                                    453500.0,
                                    443300.0,
                                    467600.0,
                                    436100.0,
                                    462100.0,
                                    282700.0,
                                    441300.0,
                                    341700.0,
                                    426800.0,
                                    464300.0,
                                    437200.0,
                                    467100.0,
                                    304500.0,
                                    448100.0,
                                    455500.0,
                                    499799.0,
                                    462299.0,
                                    467299.0,
                                    263300.0,
                                    268000.0,
                                    448200.0,
                                    343200.0,
                                    451599.0,
                                    448300.0,
                                    483599.0,
                                    445000.0,
                                    416000.0,
                                    459400.0,
                                    267800.0,
                                    428600.0,
                                    460800.0,
                                    79600.0,
                                    390100.0,
                                    449799.0,
                                    400100.0,
                                    450300.0,
                                    467900.0,
                                    199000.0,
                                    327900.0,
                                    467600.0,
                                    452700.0,
                                    454700.0,
                                    398200.0,
                                    444099.0,
                                    448300.0,
                                    210400.0,
                                    455400.0,
                                    500600.0,
                                    244100.0,
                                    449799.0,
                                    420400.0,
                                    350300.0,
                                    451400.0,
                                    455000.0,
                                    452600.0,
                                    455700.0,
                                    412800.0,
                                    427500.0,
                                    451100.0,
                                    397500.0,
                                    415600.0,
                                    481400.0,
                                    349699.0,
                                    443500.0,
                                    427800.0,
                                    399700.0,
                                    408300.0,
                                    455500.0,
                                    437500.0,
                                    444700.0,
                                    432400.0,
                                    462100.0,
                                    441800.0,
                                    463900.0,
                                    185799.0,
                                    458200.0,
                                    437500.0,
                                    392200.0,
                                    411000.0,
                                    434099.0,
                                    289700.0,
                                    409400.0,
                                    459099.0,
                                    449799.0,
                                    422500.0,
                                    445400.0,
                                    424799.0,
                                    458200.0,
                                    420600.0,
                                    412500.0,
                                    412500.0,
                                    470500.0,
                                    458400.0,
                                    456000.0,
                                    455400.0,
                                    393500.0,
                                    449000.0,
                                    433500.0,
                                    366700.0,
                                    458200.0,
                                    434300.0,
                                    474400.0,
                                    447200.0,
                                    439600.0,
                                    441700.0,
                                    443700.0,
                                    196500.0,
                                    336800.0,
                                    434200.0,
                                    492100.0,
                                    166000.0,
                                    468000.0,
                                    453200.0,
                                    442500.0,
                                    285900.0,
                                    442900.0,
                                    442600.0,
                                    435600.0,
                                    317000.0,
                                    465200.0,
                                    440100.0,
                                    446100.0,
                                    452700.0,
                                    435500.0,
                                    453500.0,
                                    424799.0,
                                    470400.0,
                                    236100.0,
                                    479600.0,
                                    442000.0,
                                    448200.0,
                                    348100.0,
                                    444600.0,
                                    444900.0,
                                    416599.0,
                                    379700.0,
                                    443000.0,
                                    243800.0,
                                    302000.0,
                                    447200.0,
                                    422000.0,
                                    454799.0,
                                    166700.0,
                                    230799.0,
                                    335000.0,
                                    445600.0,
                                    362900.0,
                                    336599.0,
                                    441599.0,
                                    167700.0,
                                    450100.0,
                                    448500.0,
                                    185000.0,
                                    316300.0,
                                    453700.0,
                                    315300.0,
                                    428000.0,
                                    332900.0,
                                    344600.0,
                                    435500.0,
                                    467600.0,
                                    464900.0,
                                    374700.0,
                                    194500.0,
                                    442900.0,
                                    438800.0,
                                    374000.0,
                                    452100.0,
                                    446200.0,
                                    390800.0,
                                    304700.0,
                                    384200.0,
                                    362400.0,
                                    436200.0,
                                    419600.0,
                                    438400.0,
                                    437700.0,
                                    460500.0,
                                    437900.0,
                                    440700.0,
                                    445400.0,
                                    349400.0,
                                    459400.0,
                                    455100.0,
                                    445600.0,
                                    463900.0,
                                    451200.0,
                                    475300.0,
                                    456200.0,
                                    462000.0,
                                    484900.0,
                                    358500.0,
                                    459000.0,
                                    517100.0,
                                    438800.0,
                                    400500.0,
                                    450700.0,
                                    460400.0,
                                    444600.0,
                                    465600.0,
                                    447299.0,
                                    446000.0,
                                    254200.0,
                                    447400.0,
                                    528300.0,
                                    468000.0,
                                    444000.0,
                                    295800.0,
                                    453100.0,
                                    325400.0,
                                    449500.0,
                                    434099.0,
                                    438100.0,
                                    446700.0,
                                    445300.0,
                                    442200.0,
                                    480400.0,
                                    437500.0,
                                    445300.0,
                                    438300.0,
                                    370800.0,
                                    453300.0,
                                    441800.0,
                                    309600.0,
                                    381200.0,
                                    456200.0,
                                    367600.0,
                                    448800.0,
                                    443700.0,
                                    526200.0,
                                    468400.0,
                                    453300.0,
                                    456400.0,
                                    524400.0,
                                    461500.0,
                                    380300.0,
                                    456599.0,
                                    458300.0,
                                    455600.0,
                                    461000.0,
                                    87200.0,
                                    343800.0,
                                    435700.0,
                                    416599.0,
                                    399400.0,
                                    273700.0,
                                    456500.0,
                                    464500.0,
                                    466100.0,
                                    476000.0,
                                    402000.0,
                                    462600.0,
                                    480600.0,
                                    429500.0,
                                    450100.0,
                                    428200.0,
                                    458200.0,
                                    458300.0,
                                    188200.0,
                                    470700.0,
                                    456400.0,
                                    459400.0,
                                    175500.0,
                                    460500.0,
                                    457200.0,
                                    341000.0,
                                    350400.0,
                                    453400.0,
                                    194830.0,
                                    106000.0,
                                    460200.0,
                                    458600.0,
                                    443700.0,
                                    459400.0,
                                    458500.0,
                                    313900.0,
                                    447900.0,
                                    459200.0,
                                    133900.0,
                                    434799.0,
                                    431599.0,
                                    161000.0,
                                    455200.0,
                                    326200.0,
                                    214100.0,
                                    360800.0,
                                    456599.0,
                                    469600.0,
                                    466000.0,
                                    142100.0,
                                    458000.0,
                                    457400.0,
                                    462299.0,
                                    343900.0,
                                    386700.0,
                                    342800.0,
                                    293100.0,
                                    461000.0,
                                    156300.0,
                                    222700.0,
                                    346900.0,
                                    418900.0,
                                    288500.0,
                                    201700.0,
                                    454099.0,
                                    223299.0,
                                    399799.0,
                                    452299.0,
                                    459200.0,
                                    467100.0,
                                    504200.0,
                                    408100.0,
                                    149400.0,
                                    466300.0,
                                    469600.0,
                                    451800.0,
                                    462500.0,
                                    340500.0,
                                    472800.0,
                                    455200.0,
                                    244800.0,
                                    462200.0,
                                    140900.0,
                                    453600.0,
                                    474700.0,
                                    427100.0,
                                    465700.0,
                                    389799.0,
                                    334000.0,
                                    360600.0,
                                    470300.0,
                                    254000.0,
                                    464600.0,
                                    469400.0,
                                    461100.0,
                                    470600.0,
                                    350800.0,
                                    471599.0,
                                    188700.0,
                                    386200.0,
                                    401900.0,
                                    288700.0,
                                    461500.0,
                                    460600.0,
                                    500100.0,
                                    468900.0,
                                    456500.0,
                                    380900.0,
                                    143000.0,
                                    296400.0,
                                    341400.0,
                                    458000.0,
                                    300100.0,
                                    467500.0,
                                    367800.0,
                                    450700.0,
                                    476200.0,
                                    410700.0,
                                    62000.0,
                                    464799.0,
                                    465200.0,
                                    468000.0,
                                    474400.0,
                                    465100.0,
                                    461599.0,
                                    423200.0,
                                    469400.0,
                                    467100.0,
                                    481700.0,
                                    477800.0,
                                    349500.0,
                                    463800.0,
                                    485700.0,
                                    381800.0,
                                    474500.0,
                                    464300.0,
                                    466599.0,
                                    471599.0,
                                    477200.0,
                                    113300.0,
                                    493400.0,
                                    311900.0,
                                    274700.0,
                                    478300.0,
                                    420600.0,
                                    165100.0,
                                    302200.0,
                                    471200.0,
                                    475600.0,
                                    433400.0,
                                    262600.0,
                                    480100.0,
                                    398300.0,
                                    482000.0,
                                    454500.0,
                                    264100.0,
                                    302400.0,
                                    513500.0,
                                    365400.0,
                                    454600.0,
                                    333500.0,
                                    333800.0,
                                    400000.0,
                                    423900.0,
                                    108400.0,
                                    399000.0,
                                    447100.0,
                                    469200.0,
                                    433400.0,
                                    457400.0,
                                    460300.0,
                                    476599.0,
                                    516800.0,
                                    476100.0,
                                    457400.0,
                                    450200.0,
                                    467000.0,
                                    451200.0,
                                    454200.0,
                                    450900.0,
                                    449700.0,
                                    463300.0,
                                    465400.0,
                                    200400.0,
                                    462200.0,
                                    230600.0,
                                    470800.0,
                                    470600.0,
                                    486800.0,
                                    463300.0,
                                    120200.0,
                                    473000.0,
                                    469799.0,
                                    436900.0,
                                    370300.0,
                                    445600.0,
                                    340400.0,
                                    446900.0,
                                    407100.0,
                                    448000.0,
                                    458200.0,
                                    448300.0,
                                    453000.0,
                                    463500.0,
                                    464900.0,
                                    456800.0,
                                    469000.0,
                                    455500.0,
                                    352299.0,
                                    486700.0,
                                    452600.0,
                                    475800.0,
                                    212200.0,
                                    89100.0,
                                    476500.0,
                                    471200.0,
                                    430500.0,
                                    470400.0,
                                    204800.0,
                                    456300.0,
                                    335800.0,
                                    364600.0,
                                    440400.0,
                                    389500.0,
                                    380500.0,
                                    506700.0,
                                    354900.0,
                                    464700.0,
                                    278100.0,
                                    461100.0,
                                    303600.0,
                                    219100.0,
                                    397500.0,
                                    359900.0,
                                    449500.0,
                                    445800.0,
                                    468300.0,
                                    451200.0,
                                    459700.0,
                                    316799.0,
                                    212399.0,
                                    425900.0,
                                    452400.0,
                                    441400.0,
                                    461800.0,
                                    198800.0,
                                    458900.0,
                                    351200.0,
                                    469500.0,
                                    437400.0,
                                    476400.0,
                                    427200.0,
                                    419000.0,
                                    448800.0,
                                    345100.0,
                                    297400.0,
                                    479400.0,
                                    188700.0,
                                    447900.0,
                                    459099.0,
                                    461900.0,
                                    451300.0,
                                    465200.0,
                                    428500.0,
                                    350600.0,
                                    452800.0,
                                    181000.0,
                                    456500.0,
                                    119400.0,
                                    452700.0,
                                    444099.0,
                                    462100.0,
                                    439099.0,
                                    467200.0,
                                    458000.0,
                                    290200.0,
                                    505300.0,
                                    455500.0,
                                    387100.0,
                                    464200.0,
                                    458200.0,
                                    248299.0,
                                    451100.0,
                                    463800.0,
                                    140500.0,
                                    110900.0,
                                    157000.0,
                                    434900.0,
                                    391700.0,
                                    204100.0,
                                    343500.0,
                                    263900.0,
                                    458100.0,
                                    456100.0,
                                    509300.0,
                                    200030.0,
                                    462900.0,
                                    390900.0,
                                    451800.0,
                                    251300.0,
                                    461400.0,
                                    348600.0,
                                    449700.0,
                                    430900.0,
                                    442299.0,
                                    434600.0,
                                    452200.0,
                                    375500.0,
                                    273700.0,
                                    487900.0,
                                    460800.0,
                                    471100.0,
                                    472700.0,
                                    319500.0,
                                    244300.0,
                                    349700.0,
                                    461000.0,
                                    342000.0,
                                    480900.0,
                                    478600.0,
                                    450600.0,
                                    424900.0,
                                    410900.0,
                                    565100.0,
                                    387800.0,
                                    382100.0,
                                    428000.0,
                                    456300.0,
                                    424799.0,
                                    471000.0,
                                    451200.0,
                                    474700.0,
                                    432500.0,
                                    407000.0,
                                    451599.0,
                                    462400.0,
                                    470200.0,
                                    476000.0,
                                    452500.0,
                                    466200.0,
                                    442900.0,
                                    495500.0,
                                    442500.0,
                                    124800.0,
                                    352400.0,
                                    462600.0,
                                    444799.0,
                                    457500.0,
                                    463100.0,
                                    404900.0,
                                    523500.0,
                                    397700.0,
                                    232700.0,
                                    397299.0,
                                    481900.0,
                                    457000.0,
                                    474200.0,
                                    403300.0,
                                    482800.0,
                                    375700.0,
                                    450300.0,
                                    262200.0,
                                    314400.0,
                                    417200.0,
                                    450500.0,
                                    156700.0,
                                    465600.0,
                                    466500.0,
                                    326200.0,
                                    441700.0,
                                    462200.0,
                                    502800.0,
                                    433700.0,
                                    92300.0,
                                    243100.0,
                                    275000.0,
                                    372100.0,
                                    533400.0,
                                    460300.0,
                                    454000.0,
                                    364500.0,
                                    249700.0,
                                    456200.0,
                                    435600.0,
                                    470700.0,
                                    190600.0,
                                    358500.0,
                                    434300.0,
                                    456900.0,
                                    138500.0,
                                    401400.0,
                                    368700.0,
                                    465200.0,
                                    399900.0,
                                    439799.0,
                                    446599.0,
                                    454000.0,
                                    426900.0,
                                    470800.0,
                                    364900.0,
                                    459400.0,
                                    441500.0,
                                    471500.0,
                                    483200.0,
                                    490300.0,
                                    452600.0,
                                    462900.0,
                                    461800.0,
                                    442800.0,
                                    464600.0,
                                    450500.0,
                                    418100.0,
                                    456000.0,
                                    440300.0,
                                    445900.0,
                                    427100.0,
                                    240000.0,
                                    191600.0,
                                    452000.0,
                                    344300.0,
                                    458900.0,
                                    457900.0,
                                    289300.0,
                                    513200.0,
                                    204800.0,
                                    446900.0,
                                    449799.0,
                                    440500.0,
                                    183600.0,
                                    461000.0,
                                    475000.0,
                                    445400.0,
                                    503799.0,
                                    438400.0,
                                    444500.0,
                                    447299.0,
                                    488200.0,
                                    388800.0,
                                    442900.0,
                                    439700.0,
                                    473300.0,
                                    394600.0,
                                    460800.0,
                                    452299.0,
                                    438700.0,
                                    465500.0,
                                    470800.0,
                                    354400.0,
                                    116900.0,
                                    377600.0,
                                    195300.0,
                                    341300.0,
                                    515100.0,
                                    245600.0,
                                    415600.0,
                                    528700.0,
                                    188700.0,
                                    163700.0
                                ]
                            },
                            {
                                "label": "Min Height Width",
                                "range": [
                                    -28000,
                                    196430
                                ],
                                "values": [
                                    5137,
                                    113712,
                                    -5909,
                                    102666,
                                    -16955,
                                    135803,
                                    -28000,
                                    124758,
                                    5137,
                                    113712,
                                    -5909,
                                    102666,
                                    -16955,
                                    135803,
                                    -28000,
                                    124758,
                                    5137,
                                    113712,
                                    -5909,
                                    102666,
                                    -16955,
                                    135803,
                                    -28000,
                                    124758,
                                    5137,
                                    113712,
                                    42910,
                                    126039,
                                    135736,
                                    46100,
                                    54920,
                                    113880,
                                    100220,
                                    91860,
                                    52140,
                                    104500,
                                    110480,
                                    82230,
                                    69120,
                                    136490,
                                    97950,
                                    79780,
                                    44390,
                                    23330,
                                    86870,
                                    1469,
                                    130450,
                                    114629,
                                    184720,
                                    32180,
                                    56400,
                                    131980,
                                    58430,
                                    63240,
                                    59330,
                                    58640,
                                    29810,
                                    11790,
                                    25690,
                                    13330,
                                    39900,
                                    70460,
                                    160410,
                                    55770,
                                    25179,
                                    18490,
                                    27650,
                                    79830,
                                    40630,
                                    16900,
                                    41369,
                                    118770,
                                    -2760,
                                    190000,
                                    119920,
                                    85020,
                                    73980,
                                    49120,
                                    51200,
                                    41940,
                                    71030,
                                    51970,
                                    75200,
                                    80390,
                                    70520,
                                    69910,
                                    119636,
                                    40720,
                                    -16800,
                                    48360,
                                    70910,
                                    66170,
                                    54730,
                                    66650,
                                    70930,
                                    41940,
                                    8919,
                                    -8201,
                                    48240,
                                    50080,
                                    44120,
                                    70290,
                                    74640,
                                    94410,
                                    30920,
                                    56720,
                                    187800,
                                    170140,
                                    45710,
                                    124420,
                                    59660,
                                    90450,
                                    24040,
                                    129420,
                                    173100,
                                    45500,
                                    37120,
                                    34300,
                                    52610,
                                    59770,
                                    89350,
                                    59000,
                                    32820,
                                    23020,
                                    26780,
                                    19180,
                                    19350,
                                    22770,
                                    37900,
                                    56130,
                                    21080,
                                    41360,
                                    49010,
                                    16290,
                                    14480,
                                    23140,
                                    90940,
                                    39390,
                                    43869,
                                    138650,
                                    -19100,
                                    34470,
                                    34630,
                                    12036,
                                    102620,
                                    24060,
                                    14260,
                                    9980,
                                    71280,
                                    5559,
                                    19670,
                                    141580,
                                    37160,
                                    9199,
                                    23650,
                                    17750,
                                    22180,
                                    99940,
                                    7589,
                                    17540,
                                    16790,
                                    5080,
                                    34200,
                                    7580,
                                    25040,
                                    7300,
                                    13060,
                                    17520,
                                    6419,
                                    -1381,
                                    41910,
                                    10830,
                                    4100,
                                    20210,
                                    188340,
                                    5209,
                                    12970,
                                    14960,
                                    15149,
                                    11780,
                                    105870,
                                    10600,
                                    16640,
                                    9179,
                                    9750,
                                    7869,
                                    9400,
                                    9640,
                                    34300,
                                    10610,
                                    7640,
                                    12680,
                                    21000,
                                    76650,
                                    12170,
                                    13130,
                                    6909,
                                    19100,
                                    16490,
                                    13150,
                                    12810,
                                    7980,
                                    97129,
                                    -2571,
                                    12800,
                                    13140,
                                    14170,
                                    59090,
                                    4630,
                                    5150,
                                    6889,
                                    6050,
                                    13490,
                                    3860,
                                    10260,
                                    13930,
                                    3160,
                                    -1600,
                                    40730,
                                    88140,
                                    11680,
                                    11560,
                                    10280,
                                    5390,
                                    9440,
                                    131340,
                                    7570,
                                    144740,
                                    60570,
                                    12210,
                                    142160,
                                    8029,
                                    70330,
                                    6570,
                                    8240,
                                    -1070,
                                    5180,
                                    75360,
                                    64130,
                                    4979,
                                    73200,
                                    7920,
                                    2460,
                                    3080,
                                    60010,
                                    7470,
                                    10450,
                                    2600,
                                    99590,
                                    134120,
                                    5400,
                                    1179,
                                    76180,
                                    4209,
                                    3650,
                                    38840,
                                    8910,
                                    4250,
                                    14170,
                                    3999,
                                    76350,
                                    4860,
                                    -15060,
                                    -341,
                                    128230,
                                    2330,
                                    5859,
                                    22060,
                                    44500,
                                    770,
                                    4769,
                                    1039,
                                    539,
                                    53740,
                                    5130,
                                    5729,
                                    13939,
                                    5580,
                                    48450,
                                    1110,
                                    6199,
                                    164570,
                                    179370,
                                    4720,
                                    6339,
                                    12740,
                                    3569,
                                    6740,
                                    4089,
                                    13730,
                                    -641,
                                    2360,
                                    8390,
                                    12540,
                                    5500,
                                    4519,
                                    5790,
                                    8100,
                                    4159,
                                    6329,
                                    7200,
                                    2510,
                                    2199,
                                    9430,
                                    1130,
                                    7710,
                                    11010,
                                    11439,
                                    9619,
                                    8699,
                                    5529,
                                    99290,
                                    6729,
                                    7670,
                                    60320,
                                    8769,
                                    3379,
                                    4350,
                                    2020,
                                    10470,
                                    2929,
                                    187500,
                                    5399,
                                    839,
                                    2790,
                                    2430,
                                    9999,
                                    1970,
                                    2979,
                                    8070,
                                    2849,
                                    5110,
                                    5679,
                                    979,
                                    4449,
                                    2559,
                                    -410,
                                    829,
                                    3989,
                                    279,
                                    11130,
                                    130020,
                                    63780,
                                    48590,
                                    15020,
                                    59370,
                                    174670,
                                    44850,
                                    4510,
                                    57900,
                                    3340,
                                    5340,
                                    6710,
                                    -1150,
                                    -4031,
                                    4400,
                                    1400,
                                    13450,
                                    5500,
                                    3909,
                                    133800,
                                    1570,
                                    2959,
                                    38050,
                                    6499,
                                    37810,
                                    599,
                                    1560,
                                    1949,
                                    38340,
                                    66110,
                                    13230,
                                    -1020,
                                    9730,
                                    3350,
                                    2790,
                                    8729,
                                    109,
                                    1679,
                                    1690,
                                    2440,
                                    1910,
                                    5659,
                                    43820,
                                    80340,
                                    739,
                                    47080,
                                    1709,
                                    164110,
                                    58980,
                                    5069,
                                    1810,
                                    16480,
                                    -1550,
                                    81400,
                                    3139,
                                    133160,
                                    2669,
                                    -821,
                                    3349,
                                    2360,
                                    4120,
                                    1960,
                                    4129,
                                    25520,
                                    3660,
                                    2260,
                                    2959,
                                    6350,
                                    6830,
                                    559,
                                    -3540,
                                    5040,
                                    62340,
                                    -8401,
                                    4570,
                                    6469,
                                    14420,
                                    3509,
                                    172060,
                                    4749,
                                    38850,
                                    3860,
                                    167900,
                                    1540,
                                    59530,
                                    176210,
                                    2949,
                                    13930,
                                    819,
                                    132560,
                                    74890,
                                    34410,
                                    5559,
                                    41260,
                                    102000,
                                    174330,
                                    -17380,
                                    10730,
                                    8950,
                                    144260,
                                    2560,
                                    24580,
                                    6370,
                                    80,
                                    22540,
                                    2060,
                                    1019,
                                    160,
                                    3180,
                                    11580,
                                    88900,
                                    10470,
                                    6260,
                                    73860,
                                    3119,
                                    2980,
                                    158220,
                                    4309,
                                    30660,
                                    68780,
                                    5040,
                                    3770,
                                    99260,
                                    1980,
                                    1970,
                                    6829,
                                    2289,
                                    -20080,
                                    2310,
                                    9650,
                                    -2251,
                                    2529,
                                    2530,
                                    14700,
                                    3959,
                                    166700,
                                    3599,
                                    150930,
                                    3459,
                                    20810,
                                    6590,
                                    55690,
                                    22690,
                                    5139,
                                    69,
                                    6480,
                                    -12630,
                                    37400,
                                    9400,
                                    186250,
                                    9540,
                                    10830,
                                    14040,
                                    9070,
                                    4760,
                                    7700,
                                    56650,
                                    11310,
                                    4790,
                                    194180,
                                    128610,
                                    6400,
                                    7109,
                                    2769,
                                    9170,
                                    14430,
                                    104370,
                                    9179,
                                    178490,
                                    1839,
                                    3649,
                                    9690,
                                    20490,
                                    339,
                                    3980,
                                    9289,
                                    97370,
                                    16590,
                                    13480,
                                    3039,
                                    9209,
                                    108480,
                                    29490,
                                    14640,
                                    22230,
                                    2340,
                                    15880,
                                    155060,
                                    121920,
                                    2909,
                                    27250,
                                    163260,
                                    172970,
                                    2660,
                                    18100,
                                    5159,
                                    5870,
                                    3790,
                                    2880,
                                    4320,
                                    12500,
                                    56360,
                                    125710,
                                    17810,
                                    19190,
                                    106000,
                                    83140,
                                    42550,
                                    104300,
                                    56000,
                                    102609,
                                    49720,
                                    119469,
                                    171680,
                                    32940,
                                    81140,
                                    57710,
                                    46010,
                                    47900,
                                    12410,
                                    51430,
                                    52000,
                                    71890,
                                    38220,
                                    59550,
                                    30110,
                                    25690,
                                    60750,
                                    41920,
                                    42970,
                                    122470,
                                    41700,
                                    24520,
                                    36670,
                                    43590,
                                    28380,
                                    65420,
                                    20490,
                                    46900,
                                    74830,
                                    23260,
                                    30570,
                                    53800,
                                    48360,
                                    44400,
                                    28940,
                                    38850,
                                    55090,
                                    44390,
                                    117250,
                                    26040,
                                    38180,
                                    40279,
                                    21509,
                                    40690,
                                    43770,
                                    23870,
                                    34920,
                                    35680,
                                    47920,
                                    34530,
                                    10209,
                                    38060,
                                    36900,
                                    172090,
                                    22500,
                                    41440,
                                    48970,
                                    51970,
                                    40759,
                                    32670,
                                    29570,
                                    8320,
                                    32190,
                                    36220,
                                    26469,
                                    7490,
                                    50070,
                                    16550,
                                    52680,
                                    -14320,
                                    18900,
                                    55380,
                                    31810,
                                    30419,
                                    92140,
                                    31910,
                                    29040,
                                    139770,
                                    30299,
                                    117280,
                                    30630,
                                    29670,
                                    36720,
                                    -13690,
                                    31170,
                                    24230,
                                    -7440,
                                    28120,
                                    27790,
                                    26429,
                                    26000,
                                    27230,
                                    25920,
                                    76240,
                                    30360,
                                    186670,
                                    44830,
                                    116240,
                                    24560,
                                    29890,
                                    95180,
                                    82150,
                                    26890,
                                    70680,
                                    23220,
                                    173160,
                                    18330,
                                    29520,
                                    47580,
                                    40140,
                                    29100,
                                    28250,
                                    26230,
                                    27280,
                                    29190,
                                    15910,
                                    28300,
                                    15970,
                                    18410,
                                    23929,
                                    86500,
                                    26960,
                                    195790,
                                    23360,
                                    15049,
                                    27500,
                                    25880,
                                    29740,
                                    14950,
                                    18950,
                                    98230,
                                    19830,
                                    21830,
                                    33440,
                                    109480,
                                    16040,
                                    61550,
                                    23600,
                                    20700,
                                    24970,
                                    25500,
                                    19860,
                                    15920,
                                    25010,
                                    26910,
                                    14280,
                                    18950,
                                    15430,
                                    12709,
                                    22380,
                                    78950,
                                    4990,
                                    32920,
                                    110000,
                                    23040,
                                    16230,
                                    26429,
                                    10009,
                                    14770,
                                    27599,
                                    21410,
                                    19900,
                                    149800,
                                    159730,
                                    25800,
                                    9250,
                                    16530,
                                    14280,
                                    99670,
                                    28780,
                                    7340,
                                    11060,
                                    14120,
                                    7850,
                                    123859,
                                    27430,
                                    9960,
                                    32360,
                                    11210,
                                    104469,
                                    14710,
                                    11570,
                                    14290,
                                    95429,
                                    18660,
                                    4369,
                                    9129,
                                    9270,
                                    17570,
                                    8890,
                                    6709,
                                    9220,
                                    7710,
                                    11250,
                                    6599,
                                    5370,
                                    3400,
                                    4270,
                                    179,
                                    2290,
                                    4540,
                                    13700,
                                    93360,
                                    59470,
                                    8529,
                                    -851,
                                    19020,
                                    4139,
                                    5289,
                                    2350,
                                    6269,
                                    990,
                                    8240,
                                    7010,
                                    8050,
                                    1210,
                                    4560,
                                    1259,
                                    9949,
                                    8110,
                                    64180,
                                    3909,
                                    6729,
                                    2690,
                                    5280,
                                    150810,
                                    6709,
                                    148720,
                                    32080,
                                    2289,
                                    171240,
                                    6690,
                                    79710,
                                    122870,
                                    39720,
                                    3809,
                                    122739,
                                    30200,
                                    5390,
                                    5709,
                                    8730,
                                    118730,
                                    74280,
                                    13320,
                                    5130,
                                    4419,
                                    3000,
                                    3679,
                                    9389,
                                    63420,
                                    6690,
                                    95570,
                                    20350,
                                    5090,
                                    44240,
                                    120660,
                                    29440,
                                    2999,
                                    35740,
                                    63700,
                                    -1540,
                                    155930,
                                    145400,
                                    5790,
                                    939,
                                    175990,
                                    3370,
                                    5030,
                                    8129,
                                    69630,
                                    3980,
                                    19400,
                                    27460,
                                    10430,
                                    25930,
                                    6300,
                                    3050,
                                    5360,
                                    4789,
                                    5870,
                                    16930,
                                    1360,
                                    3990,
                                    3170,
                                    79640,
                                    12030,
                                    125269,
                                    7050,
                                    3980,
                                    42910,
                                    9890,
                                    -19210,
                                    25280,
                                    170010,
                                    10610,
                                    3749,
                                    3420,
                                    10510,
                                    2749,
                                    7790,
                                    1890,
                                    27759,
                                    140190,
                                    5329,
                                    3289,
                                    6660,
                                    82810,
                                    7319,
                                    1650,
                                    37550,
                                    8889,
                                    7769,
                                    499,
                                    9579,
                                    6610,
                                    35280,
                                    11940,
                                    7629,
                                    2200,
                                    1180,
                                    7390,
                                    159380,
                                    29129,
                                    172160,
                                    108520,
                                    1330,
                                    5769,
                                    1170,
                                    2310,
                                    4110,
                                    54490,
                                    2309,
                                    90020,
                                    1360,
                                    3090,
                                    147650,
                                    79810,
                                    53960,
                                    148120,
                                    5100,
                                    1890,
                                    669,
                                    4730,
                                    190970,
                                    -570,
                                    14780,
                                    2929,
                                    3439,
                                    8649,
                                    133040,
                                    96310,
                                    110079,
                                    9729,
                                    -151,
                                    4940,
                                    2090,
                                    151720,
                                    6060,
                                    2439,
                                    -1190,
                                    2919,
                                    34290,
                                    5939,
                                    2029,
                                    12110,
                                    15930,
                                    175700,
                                    5290,
                                    589,
                                    4910,
                                    -1241,
                                    14340,
                                    -2690,
                                    1250,
                                    10480,
                                    10930,
                                    116080,
                                    17710,
                                    -1590,
                                    6629,
                                    25540,
                                    -11360,
                                    2330,
                                    11860,
                                    27210,
                                    153740,
                                    5040,
                                    5950,
                                    1549,
                                    37630,
                                    4259,
                                    2010,
                                    34760,
                                    2959,
                                    4410,
                                    6640,
                                    6889,
                                    179130,
                                    2920,
                                    -60,
                                    9899,
                                    144140,
                                    2350,
                                    5719,
                                    3420,
                                    4159,
                                    3330,
                                    799,
                                    2390,
                                    5310,
                                    3079,
                                    4840,
                                    18340,
                                    3719,
                                    6260,
                                    5810,
                                    7309,
                                    3969,
                                    132430,
                                    7079,
                                    5280,
                                    549,
                                    2090,
                                    22160,
                                    1699,
                                    5679,
                                    2509,
                                    2129,
                                    2999,
                                    2469,
                                    4830,
                                    4780,
                                    3960,
                                    3040,
                                    2710,
                                    2440,
                                    2859,
                                    32670,
                                    1659,
                                    9360,
                                    4670,
                                    2080,
                                    4059,
                                    1059,
                                    2789,
                                    5639,
                                    3589,
                                    1709,
                                    5050,
                                    6039,
                                    3850,
                                    13180,
                                    2140,
                                    2079,
                                    6579,
                                    -1821,
                                    1389,
                                    7799,
                                    1739,
                                    5910,
                                    1610,
                                    5020,
                                    1809,
                                    -721,
                                    4659,
                                    2929,
                                    -4720,
                                    1829,
                                    5420,
                                    2709,
                                    50380,
                                    6510,
                                    4900,
                                    1380,
                                    78330,
                                    6539,
                                    5170,
                                    4370,
                                    409,
                                    92280,
                                    5740,
                                    -5240,
                                    67910,
                                    33020,
                                    13450,
                                    3690,
                                    6899,
                                    5139,
                                    67240,
                                    6620,
                                    2099,
                                    5599,
                                    13440,
                                    32679,
                                    28520,
                                    -180,
                                    30930,
                                    -421,
                                    4630,
                                    -641,
                                    8349,
                                    5080,
                                    129,
                                    1480,
                                    5289,
                                    11870,
                                    4140,
                                    4360,
                                    1450,
                                    1629,
                                    67510,
                                    -421,
                                    21240,
                                    4620,
                                    106560,
                                    2909,
                                    1640,
                                    1290,
                                    35360,
                                    3020,
                                    158790,
                                    2440,
                                    1200,
                                    -911,
                                    186220,
                                    88630,
                                    11220,
                                    2760,
                                    109090,
                                    1729,
                                    2269,
                                    30290,
                                    3889,
                                    28940,
                                    1820,
                                    28870,
                                    2559,
                                    1930,
                                    3350,
                                    2659,
                                    9469,
                                    690,
                                    1270,
                                    5479,
                                    1309,
                                    1579,
                                    149430,
                                    6060,
                                    2289,
                                    55039,
                                    1910,
                                    699,
                                    -770,
                                    1540,
                                    6850,
                                    64080,
                                    2819,
                                    850,
                                    166420,
                                    -441,
                                    1869,
                                    13020,
                                    480,
                                    5479,
                                    25160,
                                    -31,
                                    -981,
                                    2100,
                                    1620,
                                    7470,
                                    2270,
                                    2390,
                                    5259,
                                    10760,
                                    5520,
                                    13850,
                                    1910,
                                    4650,
                                    26980,
                                    5580,
                                    13470,
                                    1379,
                                    4770,
                                    -2110,
                                    67810,
                                    128539,
                                    59940,
                                    48220,
                                    5219,
                                    184470,
                                    1770,
                                    699,
                                    2079,
                                    11750,
                                    124680,
                                    6210,
                                    59900,
                                    14120,
                                    2260,
                                    1140,
                                    110020,
                                    1779,
                                    23809,
                                    -1401,
                                    34390,
                                    1970,
                                    67430,
                                    8870,
                                    44820,
                                    4270,
                                    3970,
                                    20880,
                                    123800,
                                    80690,
                                    74260,
                                    98010,
                                    5329,
                                    1080,
                                    1170,
                                    -1370,
                                    60700,
                                    3479,
                                    1419,
                                    2499,
                                    57480,
                                    2859,
                                    87760,
                                    3290,
                                    -2181,
                                    4539,
                                    859,
                                    3010,
                                    5810,
                                    -4340,
                                    158760,
                                    53230,
                                    3790,
                                    -6940,
                                    115210,
                                    -171,
                                    389,
                                    54720,
                                    81370,
                                    9070,
                                    -12800,
                                    102100,
                                    3790,
                                    140870,
                                    125290,
                                    66200,
                                    5500,
                                    7980,
                                    26760,
                                    13240,
                                    4789,
                                    14150,
                                    23180,
                                    8039,
                                    8580,
                                    8720,
                                    6790,
                                    144350,
                                    118030,
                                    4259,
                                    9330,
                                    4600,
                                    7759,
                                    166130,
                                    1229,
                                    6909,
                                    -1090,
                                    5270,
                                    118510,
                                    139370,
                                    4460,
                                    115410,
                                    8939,
                                    1140,
                                    -9890,
                                    1809,
                                    5070,
                                    6720,
                                    8089,
                                    3749,
                                    72070,
                                    8120,
                                    5770,
                                    6959,
                                    106649,
                                    -31,
                                    6090,
                                    5920,
                                    6360,
                                    3400,
                                    2849,
                                    7780,
                                    97370,
                                    157360,
                                    62720,
                                    21920,
                                    -2180,
                                    75390,
                                    69,
                                    26280,
                                    6740,
                                    7990,
                                    20550,
                                    2700,
                                    7050,
                                    104860,
                                    67500,
                                    140930,
                                    4179,
                                    4890,
                                    9140,
                                    459,
                                    2829,
                                    31800,
                                    3839,
                                    142650,
                                    86160,
                                    1739,
                                    22910,
                                    25480,
                                    175740,
                                    136730,
                                    2790,
                                    68020,
                                    41520,
                                    -771,
                                    2410,
                                    7269,
                                    61130,
                                    47270,
                                    539,
                                    12740,
                                    7960,
                                    74870,
                                    5390,
                                    2690,
                                    4800,
                                    107590,
                                    11250,
                                    13799,
                                    12540,
                                    -2471,
                                    3520,
                                    4869,
                                    3750,
                                    7290,
                                    11580,
                                    4570,
                                    93740,
                                    141260,
                                    -2510,
                                    4790,
                                    3800,
                                    22599,
                                    144230,
                                    36850,
                                    3710,
                                    3459,
                                    12609,
                                    13720,
                                    21469,
                                    13280,
                                    76830,
                                    2449,
                                    5709,
                                    3969,
                                    19,
                                    37430,
                                    569,
                                    166100,
                                    40190,
                                    163939,
                                    13330,
                                    190770,
                                    178250,
                                    25700,
                                    -721,
                                    4369,
                                    8630,
                                    147620,
                                    19530,
                                    16770,
                                    16040,
                                    869,
                                    37960,
                                    111130,
                                    55470,
                                    12310,
                                    49370,
                                    164270,
                                    -14760,
                                    15730,
                                    60470,
                                    39740,
                                    13420,
                                    4970,
                                    10200,
                                    7700,
                                    98310,
                                    27540,
                                    15350,
                                    1490,
                                    30840,
                                    5699,
                                    7070,
                                    15000,
                                    3360,
                                    4649,
                                    6919,
                                    6340,
                                    5950,
                                    10680,
                                    8300,
                                    6199,
                                    20900,
                                    4570,
                                    4429,
                                    7540,
                                    9350,
                                    10410,
                                    -871,
                                    7570,
                                    1659,
                                    289,
                                    8310,
                                    10310,
                                    5390,
                                    106550,
                                    6610,
                                    49240,
                                    127590,
                                    6780,
                                    5649,
                                    6169,
                                    32320,
                                    1240,
                                    -1721,
                                    4690,
                                    2439,
                                    7929,
                                    77530,
                                    128090,
                                    10840,
                                    100630,
                                    3630,
                                    188329,
                                    8720,
                                    84620,
                                    59530,
                                    11900,
                                    95580,
                                    5470,
                                    43960,
                                    74950,
                                    -381,
                                    47110,
                                    86950,
                                    66336,
                                    92680,
                                    82720,
                                    60920,
                                    1459,
                                    38380,
                                    17530,
                                    5669,
                                    141360,
                                    135700,
                                    29940,
                                    18850,
                                    3299,
                                    14900,
                                    59000,
                                    17080,
                                    -541,
                                    141500,
                                    -381,
                                    19600,
                                    15020,
                                    -571,
                                    11010,
                                    17110,
                                    15960,
                                    122080,
                                    47050,
                                    22710,
                                    63130,
                                    10169,
                                    5280,
                                    12150,
                                    11550,
                                    5280,
                                    174490,
                                    6590,
                                    3839,
                                    4519,
                                    156290,
                                    28769,
                                    73210,
                                    -7371,
                                    22900,
                                    10490,
                                    9810,
                                    9660,
                                    50119,
                                    8410,
                                    36810,
                                    13000,
                                    11760,
                                    78980,
                                    43510,
                                    10720,
                                    28590,
                                    13560,
                                    6270,
                                    8420,
                                    2440,
                                    18500,
                                    7820,
                                    11970,
                                    46580,
                                    15570,
                                    5070,
                                    143250,
                                    12110,
                                    2859,
                                    9860,
                                    44200,
                                    13850,
                                    8780,
                                    10440,
                                    13850,
                                    5960,
                                    -15830,
                                    12340,
                                    19080,
                                    8290,
                                    11060,
                                    164950,
                                    3810,
                                    9650,
                                    42270,
                                    170740,
                                    7550,
                                    47050,
                                    14190,
                                    12290,
                                    20970,
                                    1540,
                                    8470,
                                    479,
                                    2050,
                                    15610,
                                    93040,
                                    9579,
                                    -1440,
                                    107410,
                                    15830,
                                    23360,
                                    9890,
                                    97820,
                                    22490,
                                    7990,
                                    1110,
                                    4190,
                                    76240,
                                    22679,
                                    12740,
                                    28560,
                                    3850,
                                    29120,
                                    16780,
                                    2210,
                                    2070,
                                    13200,
                                    5299,
                                    1759,
                                    1940,
                                    17310,
                                    -20,
                                    6679,
                                    4910,
                                    4949,
                                    6390,
                                    1370,
                                    7520,
                                    88400,
                                    7240,
                                    155250,
                                    7090,
                                    33940,
                                    62660,
                                    8009,
                                    68800,
                                    10009,
                                    3970,
                                    4819,
                                    59930,
                                    174750,
                                    94460,
                                    136080,
                                    80230,
                                    28080,
                                    6040,
                                    19670,
                                    8119,
                                    12180,
                                    67460,
                                    28320,
                                    739,
                                    22780,
                                    7090,
                                    138100,
                                    35450,
                                    3299,
                                    13560,
                                    5820,
                                    8109,
                                    2330,
                                    74480,
                                    3000,
                                    9140,
                                    -31,
                                    10610,
                                    15980,
                                    10880,
                                    -11070,
                                    16900,
                                    7950,
                                    2989,
                                    4690,
                                    133840,
                                    4680,
                                    12070,
                                    3850,
                                    4790,
                                    7740,
                                    8119,
                                    2940,
                                    2280,
                                    4170,
                                    3679,
                                    103080,
                                    31040,
                                    3290,
                                    6560,
                                    1750,
                                    5440,
                                    5550,
                                    5639,
                                    50710,
                                    -1191,
                                    46540,
                                    6160,
                                    31120,
                                    5290,
                                    7730,
                                    7040,
                                    123430,
                                    2360,
                                    9969,
                                    6840,
                                    699,
                                    13000,
                                    113960,
                                    65610,
                                    2749,
                                    3590,
                                    3329,
                                    6059,
                                    104040,
                                    7060,
                                    174760,
                                    4980,
                                    166740,
                                    579,
                                    3500,
                                    41860,
                                    7109,
                                    5370,
                                    44670,
                                    22580,
                                    35230,
                                    26020,
                                    7019,
                                    9689,
                                    16860,
                                    3870,
                                    3509,
                                    12830,
                                    16580,
                                    1130,
                                    8240,
                                    56830,
                                    96679,
                                    16279,
                                    8519,
                                    13779,
                                    4509,
                                    56250,
                                    2770,
                                    3750,
                                    4310,
                                    8500,
                                    7010,
                                    6570,
                                    102840,
                                    27770,
                                    4400,
                                    3700,
                                    619,
                                    126290,
                                    5859,
                                    4740,
                                    11070,
                                    6030,
                                    -1230,
                                    -3230,
                                    7840,
                                    8179,
                                    91370,
                                    75930,
                                    134770,
                                    11439,
                                    63700,
                                    13590,
                                    130160,
                                    62680,
                                    6040,
                                    6850,
                                    6279,
                                    21589,
                                    7609,
                                    3599,
                                    3469,
                                    150150,
                                    46160,
                                    47580,
                                    6130,
                                    76360,
                                    -15750,
                                    14380,
                                    53620,
                                    10820,
                                    2150,
                                    8590,
                                    7600,
                                    4670,
                                    4599,
                                    6539,
                                    4560,
                                    32280,
                                    9640,
                                    7049,
                                    109840,
                                    7030,
                                    110150,
                                    5699,
                                    5200,
                                    119300,
                                    90730,
                                    132780,
                                    123130,
                                    12360,
                                    111580,
                                    5070,
                                    34940,
                                    16240,
                                    2900,
                                    949,
                                    2470,
                                    59120,
                                    7129,
                                    3359,
                                    90910,
                                    16180,
                                    1620,
                                    5370,
                                    -530,
                                    169590,
                                    146010,
                                    8650,
                                    37420,
                                    68050,
                                    126130,
                                    104560,
                                    2890,
                                    300,
                                    39230,
                                    18150,
                                    27519,
                                    7760,
                                    3370,
                                    1429,
                                    92090,
                                    119149,
                                    9929,
                                    2479,
                                    2150,
                                    6709,
                                    121649,
                                    36730,
                                    35990,
                                    51330,
                                    10270,
                                    6070,
                                    629,
                                    5249,
                                    18510,
                                    10270,
                                    3240,
                                    -320,
                                    24230,
                                    3089,
                                    117210,
                                    21750,
                                    40279,
                                    17190,
                                    7349,
                                    9460,
                                    1779,
                                    6609,
                                    2610,
                                    4960,
                                    5409,
                                    4910,
                                    2419,
                                    10290,
                                    7109,
                                    130530,
                                    19860,
                                    13650,
                                    13560,
                                    -12130,
                                    98940,
                                    -17310,
                                    8470,
                                    9220,
                                    4239,
                                    196430,
                                    4250,
                                    1960,
                                    100150,
                                    3020,
                                    5370,
                                    28670,
                                    4899,
                                    8210,
                                    14040,
                                    5920,
                                    5090,
                                    39860,
                                    3999,
                                    17410,
                                    3290,
                                    105480,
                                    4550,
                                    5820,
                                    5080,
                                    136300,
                                    3870,
                                    35600,
                                    6140,
                                    11450,
                                    1390,
                                    33250,
                                    24640,
                                    30700,
                                    130530,
                                    28929,
                                    9389,
                                    24210,
                                    -1271,
                                    189460,
                                    1270,
                                    809,
                                    108290,
                                    9919,
                                    27180,
                                    1999,
                                    109,
                                    153130,
                                    3790,
                                    8969,
                                    18390,
                                    4769,
                                    8749,
                                    -8780,
                                    3630,
                                    1690,
                                    10960,
                                    18660,
                                    -570,
                                    -890,
                                    178930,
                                    4570,
                                    34270,
                                    560,
                                    2660,
                                    -2411,
                                    136430,
                                    12180,
                                    4140,
                                    9649,
                                    140230,
                                    4380,
                                    4079,
                                    16540,
                                    57939,
                                    70360,
                                    6430,
                                    9289,
                                    2630,
                                    52080,
                                    51340,
                                    5849,
                                    6270,
                                    14300,
                                    29160,
                                    42280,
                                    4750,
                                    8489,
                                    5850,
                                    39080,
                                    3519,
                                    6339,
                                    -410,
                                    17860,
                                    4819,
                                    15920,
                                    6989,
                                    80760,
                                    10780,
                                    2259,
                                    16490,
                                    -900,
                                    54960,
                                    11800,
                                    5480,
                                    14190,
                                    3900,
                                    5109,
                                    139540,
                                    63650,
                                    11880,
                                    779,
                                    17300,
                                    13759,
                                    -19560,
                                    17870,
                                    60550,
                                    8060,
                                    45310,
                                    35980,
                                    9810,
                                    186439,
                                    28220,
                                    12890,
                                    18940,
                                    10500,
                                    1900,
                                    101870,
                                    33000,
                                    2829,
                                    10080,
                                    7810,
                                    14990,
                                    12830,
                                    11150,
                                    74180,
                                    11610,
                                    -5510,
                                    168730,
                                    12080,
                                    11870,
                                    51010,
                                    10660,
                                    12100,
                                    7029,
                                    11399,
                                    -9330,
                                    10080,
                                    11860,
                                    29,
                                    8480,
                                    2259,
                                    -6170,
                                    9830,
                                    8520,
                                    37520,
                                    26400,
                                    -911,
                                    9440,
                                    7189,
                                    15620,
                                    4100,
                                    10450,
                                    1490,
                                    140990,
                                    2060,
                                    3139,
                                    44210,
                                    25770,
                                    23100,
                                    87670,
                                    17110,
                                    1519,
                                    5420,
                                    12470,
                                    7930,
                                    26280,
                                    5479,
                                    16890,
                                    118140,
                                    18870,
                                    -2140,
                                    7170,
                                    5970,
                                    14490,
                                    13030,
                                    10540,
                                    12540,
                                    24710,
                                    3859,
                                    14440,
                                    709,
                                    9459,
                                    10670,
                                    -1331,
                                    6929,
                                    65310,
                                    52000,
                                    10220,
                                    5870,
                                    128660,
                                    -181,
                                    5890,
                                    8850,
                                    120360,
                                    18260,
                                    11359,
                                    12780,
                                    152980,
                                    819,
                                    8909,
                                    10380,
                                    4769,
                                    9190,
                                    3159,
                                    11880,
                                    1019,
                                    80250,
                                    -2871,
                                    8630,
                                    5849,
                                    -701,
                                    11160,
                                    12569,
                                    25930,
                                    9190,
                                    9520,
                                    77590,
                                    159430,
                                    5500,
                                    82810,
                                    8159,
                                    150100,
                                    69350,
                                    4390,
                                    4850,
                                    42190,
                                    3150,
                                    8220,
                                    105090,
                                    1519,
                                    11399,
                                    135670,
                                    66470,
                                    8450,
                                    60900,
                                    13540,
                                    36730,
                                    144100,
                                    11530,
                                    12100,
                                    3100,
                                    100860,
                                    129860,
                                    11510,
                                    8860,
                                    26500,
                                    5639,
                                    12170,
                                    -2270,
                                    44410,
                                    16120,
                                    30179,
                                    10200,
                                    21850,
                                    8809,
                                    11399,
                                    4620,
                                    5800,
                                    8129,
                                    7480,
                                    -741,
                                    2209,
                                    10109,
                                    3860,
                                    3560,
                                    3750,
                                    2869,
                                    3609,
                                    3930,
                                    15860,
                                    125970,
                                    2250,
                                    5980,
                                    8679,
                                    17280,
                                    4880,
                                    3100,
                                    10260,
                                    11310,
                                    8189,
                                    6340,
                                    142520,
                                    7639,
                                    2520,
                                    -15210,
                                    9689,
                                    161580,
                                    7429,
                                    122080,
                                    7520,
                                    43620,
                                    7400,
                                    15089,
                                    9739,
                                    8429,
                                    16130,
                                    14840,
                                    6140,
                                    9810,
                                    139320,
                                    6690,
                                    9819,
                                    7380,
                                    125320,
                                    5950,
                                    139190,
                                    3900,
                                    5490,
                                    2730,
                                    -6791,
                                    4170,
                                    5029,
                                    7589,
                                    1279,
                                    91120,
                                    3300,
                                    6729,
                                    5110,
                                    1869,
                                    163990,
                                    -181,
                                    24830,
                                    58240,
                                    139070,
                                    117440,
                                    3400,
                                    3409,
                                    3880,
                                    1900,
                                    33150,
                                    5130,
                                    59400,
                                    23830,
                                    5120,
                                    20360,
                                    6019,
                                    6909,
                                    102410,
                                    629,
                                    3950,
                                    8239,
                                    184140,
                                    6149,
                                    10530,
                                    16750,
                                    85740,
                                    8930,
                                    46936,
                                    177860,
                                    5280,
                                    4449,
                                    11610,
                                    4369,
                                    5900,
                                    111890,
                                    10290,
                                    3850,
                                    137810,
                                    6650,
                                    6610,
                                    181180,
                                    23420,
                                    83300,
                                    168490,
                                    42670,
                                    7079,
                                    4789,
                                    4069,
                                    168130,
                                    4780,
                                    9250,
                                    4890,
                                    104120,
                                    40890,
                                    53380,
                                    120630,
                                    3310,
                                    182369,
                                    51350,
                                    54050,
                                    18320,
                                    49000,
                                    116900,
                                    7780,
                                    55430,
                                    25810,
                                    4270,
                                    5470,
                                    2610,
                                    8530,
                                    83570,
                                    144990,
                                    -191,
                                    50870,
                                    15120,
                                    9100,
                                    6899,
                                    5369,
                                    4339,
                                    95940,
                                    7060,
                                    177700,
                                    14580,
                                    62420,
                                    44680,
                                    36320,
                                    82790,
                                    11240,
                                    29640,
                                    5350,
                                    21309,
                                    8799,
                                    7690,
                                    6179,
                                    909,
                                    138260,
                                    3059,
                                    90480,
                                    87110,
                                    -4101,
                                    75260,
                                    2719,
                                    4339,
                                    2549,
                                    2070,
                                    6279,
                                    50830,
                                    179020,
                                    115620,
                                    1230,
                                    5409,
                                    7520,
                                    4549,
                                    -1141,
                                    13970,
                                    3320,
                                    18240,
                                    190990,
                                    3740,
                                    2349,
                                    3870,
                                    -101,
                                    8480,
                                    8560,
                                    16630,
                                    1389,
                                    4679,
                                    1150,
                                    -531,
                                    6899,
                                    -571,
                                    1109,
                                    3489,
                                    3940,
                                    4239,
                                    6350,
                                    989,
                                    6099,
                                    184330,
                                    4029,
                                    136120,
                                    11500,
                                    5270,
                                    4470,
                                    103190,
                                    37550,
                                    5079,
                                    4369,
                                    44680,
                                    79400,
                                    3469,
                                    127120,
                                    219,
                                    5580,
                                    77630,
                                    122940,
                                    7959,
                                    34560,
                                    4220,
                                    56650,
                                    53650,
                                    71330,
                                    26640,
                                    141620,
                                    83130,
                                    19550,
                                    7979,
                                    71320,
                                    7180,
                                    10129,
                                    -4100,
                                    -11900,
                                    2429,
                                    36700,
                                    15280,
                                    3340,
                                    11399,
                                    6780,
                                    13950,
                                    10560,
                                    7040,
                                    2330,
                                    161490,
                                    10209,
                                    74500,
                                    10610,
                                    16930,
                                    5230,
                                    4339,
                                    193090,
                                    1389,
                                    1530,
                                    11840,
                                    111649,
                                    8630,
                                    70180,
                                    11470,
                                    42450,
                                    5239,
                                    7730,
                                    8089,
                                    9149,
                                    5310,
                                    26140,
                                    6969,
                                    3950,
                                    8270,
                                    19130,
                                    8300,
                                    4419,
                                    59429,
                                    35930,
                                    166590,
                                    1579,
                                    669,
                                    17340,
                                    3090,
                                    176800,
                                    5580,
                                    29690,
                                    103940,
                                    31200,
                                    46640,
                                    151130,
                                    9630,
                                    7710,
                                    4560,
                                    127080,
                                    7350,
                                    26160,
                                    153950,
                                    80670,
                                    4330,
                                    4460,
                                    6990,
                                    9869,
                                    40380,
                                    5870,
                                    -2880,
                                    103500,
                                    21309,
                                    9840,
                                    22010,
                                    1879,
                                    155440,
                                    5320,
                                    9159,
                                    -240,
                                    10530,
                                    7170,
                                    8580,
                                    62590,
                                    10290,
                                    38390,
                                    154760,
                                    4079,
                                    86430,
                                    10380,
                                    709,
                                    2680,
                                    7610,
                                    5500,
                                    12500,
                                    39100,
                                    5030,
                                    122840,
                                    7719,
                                    193080,
                                    4229,
                                    4550,
                                    590,
                                    9099,
                                    1969,
                                    4239,
                                    130730,
                                    32719,
                                    5840,
                                    95030,
                                    1640,
                                    1160,
                                    77050,
                                    6460,
                                    32010,
                                    190340,
                                    182590,
                                    160430,
                                    86380,
                                    43179,
                                    113420,
                                    47640,
                                    151990,
                                    1530,
                                    52040,
                                    30700,
                                    41736,
                                    4560,
                                    118050,
                                    47880,
                                    168909,
                                    8310,
                                    2580,
                                    47640,
                                    29900,
                                    64940,
                                    27820,
                                    15440,
                                    20410,
                                    71090,
                                    2509,
                                    9179,
                                    2210,
                                    3400,
                                    5400,
                                    133700,
                                    91300,
                                    8799,
                                    27180,
                                    5639,
                                    28280,
                                    -6090,
                                    31850,
                                    59980,
                                    -25100,
                                    112600,
                                    26320,
                                    29020,
                                    9090,
                                    29070,
                                    8429,
                                    9599,
                                    1850,
                                    19120,
                                    13390,
                                    12529,
                                    11810,
                                    -130,
                                    5140,
                                    7759,
                                    3960,
                                    14660,
                                    3279,
                                    19110,
                                    182550,
                                    57820,
                                    10169,
                                    13660,
                                    14190,
                                    4360,
                                    19180,
                                    14070,
                                    5679,
                                    129820,
                                    70070,
                                    1580,
                                    4700,
                                    4869,
                                    73520,
                                    -1301,
                                    94730,
                                    14280,
                                    147660,
                                    72330,
                                    14620,
                                    14260,
                                    166400,
                                    959,
                                    1859,
                                    58280,
                                    41330,
                                    2109,
                                    15690,
                                    32590,
                                    195880,
                                    24560,
                                    56380,
                                    17240,
                                    -18780,
                                    5540,
                                    9860,
                                    116910,
                                    177079,
                                    5770,
                                    41940,
                                    990,
                                    168950,
                                    89070,
                                    22450,
                                    7950,
                                    187390,
                                    23220,
                                    63840,
                                    19090,
                                    50460,
                                    24420,
                                    19780,
                                    15800,
                                    21300,
                                    13850,
                                    31820,
                                    20840,
                                    21370,
                                    12700,
                                    14140,
                                    10550,
                                    8199,
                                    8609,
                                    890,
                                    12330,
                                    17620,
                                    4809,
                                    18490,
                                    7769,
                                    12850,
                                    13460,
                                    15880,
                                    176340,
                                    145900,
                                    8440,
                                    1930,
                                    4149,
                                    6859,
                                    83570,
                                    6909,
                                    83379,
                                    15069,
                                    4069,
                                    29480,
                                    93600,
                                    8350,
                                    3169,
                                    3969,
                                    -21580,
                                    13939,
                                    13870,
                                    7739,
                                    2300,
                                    19620,
                                    12230,
                                    12100,
                                    549,
                                    13010,
                                    9090,
                                    7509,
                                    14090,
                                    5739,
                                    3050,
                                    107120,
                                    127899,
                                    6969,
                                    133470,
                                    158020,
                                    16530,
                                    121510,
                                    12350,
                                    -10570,
                                    182369,
                                    152200
                                ]
                            },
                            {
                                "label": "Min Width Diameter",
                                "range": [
                                    98453,
                                    501789
                                ],
                                "values": [
                                    98453,
                                    319366,
                                    234498,
                                    455411,
                                    391333,
                                    147711,
                                    479081,
                                    208910,
                                    124041,
                                    344954,
                                    280876,
                                    501789,
                                    368624,
                                    98453,
                                    429823,
                                    234498,
                                    170419,
                                    391333,
                                    258167,
                                    479081,
                                    319366,
                                    124041,
                                    455411,
                                    280876,
                                    147711,
                                    368624,
                                    315981,
                                    203423,
                                    170419,
                                    318081,
                                    237211,
                                    321023,
                                    258211,
                                    260481,
                                    341011,
                                    429823,
                                    273989,
                                    296489,
                                    285589,
                                    302889,
                                    235581,
                                    214989,
                                    388889,
                                    392489,
                                    334089,
                                    432089,
                                    423289,
                                    358489,
                                    235589,
                                    244989,
                                    223823,
                                    229989,
                                    389489,
                                    262681,
                                    219489,
                                    226389,
                                    312723,
                                    344923,
                                    401889,
                                    464489,
                                    387789,
                                    283223,
                                    254689,
                                    233089,
                                    397989,
                                    370889,
                                    374289,
                                    256489,
                                    409489,
                                    410789,
                                    294711,
                                    380711,
                                    203011,
                                    280789,
                                    288211,
                                    234211,
                                    284989,
                                    353623,
                                    479081,
                                    143423,
                                    399489,
                                    313089,
                                    249823,
                                    282889,
                                    172623,
                                    287689,
                                    170419,
                                    325623,
                                    389789,
                                    348189,
                                    299689,
                                    275089,
                                    215523,
                                    226323,
                                    377489,
                                    412389,
                                    416623,
                                    497789,
                                    309389,
                                    340989,
                                    270623,
                                    294889,
                                    104423,
                                    121723,
                                    339623,
                                    334589,
                                    132823,
                                    386011,
                                    345723,
                                    206623,
                                    256481,
                                    408911,
                                    289011,
                                    149881,
                                    117823,
                                    317823,
                                    208589,
                                    319789,
                                    286723,
                                    428089,
                                    426289,
                                    425789,
                                    320589,
                                    321881,
                                    344989,
                                    398989,
                                    306581,
                                    412089,
                                    305823,
                                    284489,
                                    373989,
                                    282189,
                                    302723,
                                    442889,
                                    429989,
                                    343389,
                                    253681,
                                    315889,
                                    267123,
                                    174289,
                                    379823,
                                    319089,
                                    345489,
                                    170419,
                                    447589,
                                    305189,
                                    436189,
                                    387023,
                                    446989,
                                    439189,
                                    366089,
                                    472989,
                                    491189,
                                    465789,
                                    368289,
                                    416289,
                                    263023,
                                    195389,
                                    451889,
                                    368389,
                                    351889,
                                    458989,
                                    318823,
                                    413989,
                                    347389,
                                    360823,
                                    406189,
                                    361589,
                                    430589,
                                    481589,
                                    254689,
                                    422489,
                                    361823,
                                    379689,
                                    297389,
                                    380689,
                                    363089,
                                    383189,
                                    409289,
                                    388989,
                                    424089,
                                    397789,
                                    401389,
                                    386989,
                                    346911,
                                    450089,
                                    427789,
                                    391389,
                                    345789,
                                    402689,
                                    429389,
                                    434989,
                                    351789,
                                    468289,
                                    365381,
                                    402489,
                                    436689,
                                    372081,
                                    382889,
                                    384289,
                                    392689,
                                    411989,
                                    440111,
                                    390523,
                                    393789,
                                    376389,
                                    397089,
                                    495889,
                                    335489,
                                    424289,
                                    414889,
                                    409289,
                                    389889,
                                    408189,
                                    412189,
                                    384489,
                                    402189,
                                    433789,
                                    379489,
                                    271389,
                                    392989,
                                    401189,
                                    390989,
                                    410889,
                                    415389,
                                    381389,
                                    409089,
                                    449389,
                                    317089,
                                    387689,
                                    312189,
                                    409489,
                                    448489,
                                    405089,
                                    405389,
                                    449489,
                                    364611,
                                    424189,
                                    221489,
                                    418989,
                                    302823,
                                    408589,
                                    413189,
                                    389023,
                                    439689,
                                    417089,
                                    389289,
                                    420789,
                                    262889,
                                    172589,
                                    420789,
                                    419989,
                                    409989,
                                    405689,
                                    418289,
                                    410389,
                                    406689,
                                    408289,
                                    407089,
                                    423789,
                                    409289,
                                    423189,
                                    406389,
                                    423189,
                                    320489,
                                    418489,
                                    410189,
                                    417189,
                                    216823,
                                    424089,
                                    387123,
                                    395681,
                                    412389,
                                    239011,
                                    416489,
                                    418489,
                                    417389,
                                    429989,
                                    393289,
                                    419689,
                                    406789,
                                    332089,
                                    327089,
                                    419589,
                                    414389,
                                    413389,
                                    413089,
                                    403389,
                                    420889,
                                    261489,
                                    424189,
                                    412189,
                                    402889,
                                    426389,
                                    417789,
                                    415589,
                                    404889,
                                    418789,
                                    413189,
                                    415489,
                                    405789,
                                    408689,
                                    418789,
                                    437489,
                                    474489,
                                    399689,
                                    403689,
                                    414389,
                                    415589,
                                    416789,
                                    422489,
                                    196889,
                                    411489,
                                    424089,
                                    217881,
                                    423089,
                                    418989,
                                    421289,
                                    422589,
                                    411089,
                                    422489,
                                    211411,
                                    424789,
                                    415389,
                                    426889,
                                    417489,
                                    411789,
                                    430089,
                                    395023,
                                    411089,
                                    417289,
                                    428689,
                                    415989,
                                    423989,
                                    420289,
                                    387223,
                                    394923,
                                    432489,
                                    390181,
                                    439989,
                                    313523,
                                    490589,
                                    115023,
                                    398923,
                                    399881,
                                    236123,
                                    180089,
                                    399323,
                                    343723,
                                    190789,
                                    421389,
                                    415389,
                                    405981,
                                    427289,
                                    432089,
                                    403789,
                                    381789,
                                    420289,
                                    414789,
                                    418689,
                                    408789,
                                    436089,
                                    422189,
                                    318323,
                                    437789,
                                    420689,
                                    420789,
                                    411189,
                                    437289,
                                    435389,
                                    286689,
                                    444489,
                                    418989,
                                    437489,
                                    422289,
                                    418889,
                                    440489,
                                    427689,
                                    354023,
                                    418889,
                                    425389,
                                    414689,
                                    444189,
                                    208589,
                                    446389,
                                    418389,
                                    483989,
                                    421689,
                                    412689,
                                    328989,
                                    423089,
                                    427689,
                                    339989,
                                    425289,
                                    381789,
                                    421389,
                                    227189,
                                    353123,
                                    426989,
                                    428289,
                                    418189,
                                    425589,
                                    427189,
                                    420489,
                                    432589,
                                    428189,
                                    426189,
                                    396223,
                                    421289,
                                    421489,
                                    420189,
                                    435811,
                                    422389,
                                    446681,
                                    486789,
                                    421089,
                                    426089,
                                    422589,
                                    422689,
                                    435189,
                                    359323,
                                    485289,
                                    433189,
                                    351789,
                                    387423,
                                    322489,
                                    304689,
                                    426289,
                                    420489,
                                    423589,
                                    146223,
                                    398889,
                                    397981,
                                    406189,
                                    418481,
                                    408789,
                                    241489,
                                    395589,
                                    398489,
                                    419289,
                                    425189,
                                    426189,
                                    405281,
                                    141123,
                                    398281,
                                    229389,
                                    422189,
                                    426589,
                                    428189,
                                    420989,
                                    386989,
                                    262789,
                                    421089,
                                    476189,
                                    232189,
                                    413589,
                                    412989,
                                    494589,
                                    422689,
                                    269481,
                                    223989,
                                    426389,
                                    368711,
                                    397811,
                                    418989,
                                    429089,
                                    414489,
                                    417889,
                                    426211,
                                    410689,
                                    425289,
                                    445289,
                                    415489,
                                    421489,
                                    370789,
                                    387223,
                                    416789,
                                    412789,
                                    284489,
                                    351223,
                                    399689,
                                    472889,
                                    415889,
                                    290923,
                                    407389,
                                    393123,
                                    410989,
                                    348089,
                                    359789,
                                    419789,
                                    218289,
                                    427389,
                                    417489,
                                    370389,
                                    395381,
                                    417189,
                                    400789,
                                    389289,
                                    388689,
                                    420889,
                                    171989,
                                    146311,
                                    419789,
                                    388981,
                                    421089,
                                    396381,
                                    370489,
                                    484089,
                                    418989,
                                    362889,
                                    388423,
                                    392289,
                                    400889,
                                    408889,
                                    419389,
                                    365023,
                                    413889,
                                    277089,
                                    407889,
                                    403989,
                                    421389,
                                    461689,
                                    432989,
                                    409889,
                                    455389,
                                    412489,
                                    440389,
                                    426989,
                                    188189,
                                    483589,
                                    436689,
                                    405289,
                                    247189,
                                    330089,
                                    441189,
                                    453789,
                                    425189,
                                    418089,
                                    415889,
                                    374611,
                                    417589,
                                    409789,
                                    330223,
                                    276689,
                                    408981,
                                    406181,
                                    501789,
                                    211389,
                                    413323,
                                    455411,
                                    277789,
                                    375689,
                                    314623,
                                    274711,
                                    188989,
                                    452011,
                                    366389,
                                    300689,
                                    285689,
                                    316823,
                                    333689,
                                    320523,
                                    501789,
                                    282889,
                                    345623,
                                    283289,
                                    442689,
                                    440889,
                                    318289,
                                    330589,
                                    341089,
                                    271123,
                                    325823,
                                    452589,
                                    316089,
                                    323889,
                                    477281,
                                    289589,
                                    390923,
                                    265789,
                                    261489,
                                    353223,
                                    310711,
                                    501789,
                                    210223,
                                    325789,
                                    288423,
                                    284289,
                                    302889,
                                    326889,
                                    380323,
                                    338389,
                                    394989,
                                    294989,
                                    339689,
                                    302889,
                                    288089,
                                    334089,
                                    346589,
                                    329989,
                                    270589,
                                    317489,
                                    271689,
                                    315189,
                                    314789,
                                    383889,
                                    337789,
                                    270389,
                                    248381,
                                    303089,
                                    302189,
                                    320089,
                                    334089,
                                    134211,
                                    337889,
                                    313589,
                                    333089,
                                    452889,
                                    308089,
                                    443289,
                                    305989,
                                    448989,
                                    338789,
                                    291989,
                                    296981,
                                    317589,
                                    362389,
                                    336689,
                                    344389,
                                    211089,
                                    353789,
                                    173989,
                                    289523,
                                    325089,
                                    316589,
                                    370689,
                                    331089,
                                    338489,
                                    329189,
                                    340589,
                                    322889,
                                    323489,
                                    335789,
                                    372489,
                                    376589,
                                    423389,
                                    316189,
                                    209089,
                                    318489,
                                    481389,
                                    334189,
                                    467889,
                                    246023,
                                    334289,
                                    384889,
                                    274989,
                                    396589,
                                    409189,
                                    391489,
                                    342589,
                                    290989,
                                    338389,
                                    319789,
                                    348289,
                                    352489,
                                    346989,
                                    449511,
                                    345689,
                                    318823,
                                    395089,
                                    350689,
                                    351489,
                                    285081,
                                    339189,
                                    179889,
                                    355189,
                                    411289,
                                    334789,
                                    332989,
                                    210389,
                                    409289,
                                    354289,
                                    426489,
                                    353489,
                                    370489,
                                    325389,
                                    348989,
                                    302423,
                                    320289,
                                    367789,
                                    358789,
                                    344089,
                                    356789,
                                    360189,
                                    365589,
                                    352689,
                                    354689,
                                    445989,
                                    358289,
                                    423489,
                                    392689,
                                    358989,
                                    404289,
                                    400889,
                                    348589,
                                    498789,
                                    342389,
                                    380489,
                                    258523,
                                    458689,
                                    353711,
                                    343789,
                                    339689,
                                    320789,
                                    387789,
                                    392489,
                                    364789,
                                    407289,
                                    398489,
                                    387989,
                                    430089,
                                    313281,
                                    404389,
                                    404189,
                                    379589,
                                    372289,
                                    435189,
                                    422489,
                                    410189,
                                    248189,
                                    400689,
                                    413089,
                                    316723,
                                    401089,
                                    409889,
                                    447489,
                                    360189,
                                    426089,
                                    406489,
                                    399089,
                                    356089,
                                    402889,
                                    401689,
                                    399589,
                                    408689,
                                    396289,
                                    402789,
                                    417089,
                                    416789,
                                    407089,
                                    421989,
                                    425889,
                                    404389,
                                    384789,
                                    315189,
                                    464089,
                                    390781,
                                    425289,
                                    380589,
                                    416389,
                                    412889,
                                    407289,
                                    407089,
                                    420889,
                                    401389,
                                    408689,
                                    412289,
                                    421689,
                                    367811,
                                    422189,
                                    406289,
                                    402689,
                                    288611,
                                    394981,
                                    402489,
                                    418889,
                                    409989,
                                    407689,
                                    400689,
                                    176589,
                                    424989,
                                    419889,
                                    336389,
                                    392889,
                                    341689,
                                    410089,
                                    240589,
                                    415689,
                                    343681,
                                    425789,
                                    412889,
                                    467689,
                                    405489,
                                    161523,
                                    385989,
                                    435589,
                                    432489,
                                    421589,
                                    445789,
                                    414989,
                                    367889,
                                    386589,
                                    438889,
                                    443089,
                                    415289,
                                    416889,
                                    397389,
                                    482189,
                                    416389,
                                    418789,
                                    421389,
                                    453789,
                                    440189,
                                    301489,
                                    303411,
                                    423889,
                                    405389,
                                    254889,
                                    413089,
                                    417489,
                                    343111,
                                    323489,
                                    410989,
                                    501789,
                                    324189,
                                    425489,
                                    428489,
                                    414789,
                                    423289,
                                    418189,
                                    419889,
                                    415089,
                                    418489,
                                    426189,
                                    400889,
                                    419089,
                                    330389,
                                    416489,
                                    442089,
                                    409289,
                                    418989,
                                    366689,
                                    420889,
                                    413889,
                                    438989,
                                    342689,
                                    409689,
                                    424289,
                                    393881,
                                    415689,
                                    425289,
                                    411889,
                                    426889,
                                    450189,
                                    262889,
                                    414489,
                                    419889,
                                    354223,
                                    490689,
                                    429589,
                                    430289,
                                    243289,
                                    329923,
                                    412089,
                                    417789,
                                    334023,
                                    404689,
                                    325989,
                                    408389,
                                    404489,
                                    412789,
                                    413989,
                                    425889,
                                    496989,
                                    317489,
                                    362189,
                                    263589,
                                    421489,
                                    416089,
                                    429089,
                                    418689,
                                    414689,
                                    411181,
                                    416689,
                                    214589,
                                    412189,
                                    416889,
                                    420289,
                                    285689,
                                    171189,
                                    449589,
                                    416789,
                                    416889,
                                    416089,
                                    420489,
                                    146123,
                                    410489,
                                    404989,
                                    414489,
                                    413389,
                                    417289,
                                    408389,
                                    286689,
                                    263989,
                                    429489,
                                    429289,
                                    417389,
                                    411889,
                                    191589,
                                    419189,
                                    412389,
                                    433689,
                                    415589,
                                    431889,
                                    419389,
                                    424489,
                                    424689,
                                    427489,
                                    277789,
                                    421889,
                                    413889,
                                    415689,
                                    414189,
                                    430389,
                                    423689,
                                    400289,
                                    431989,
                                    416489,
                                    395989,
                                    217689,
                                    429689,
                                    416489,
                                    423389,
                                    351423,
                                    428489,
                                    418189,
                                    409689,
                                    444389,
                                    420389,
                                    423289,
                                    425289,
                                    361489,
                                    415189,
                                    419689,
                                    417189,
                                    423189,
                                    414689,
                                    419389,
                                    423889,
                                    176489,
                                    422589,
                                    413389,
                                    418789,
                                    330389,
                                    422289,
                                    421589,
                                    424589,
                                    405481,
                                    408489,
                                    415789,
                                    392181,
                                    419689,
                                    421989,
                                    419389,
                                    485389,
                                    428589,
                                    426189,
                                    425689,
                                    417689,
                                    425089,
                                    400489,
                                    425989,
                                    420989,
                                    419289,
                                    426889,
                                    428481,
                                    427789,
                                    418989,
                                    418689,
                                    422489,
                                    422789,
                                    423089,
                                    404781,
                                    428989,
                                    421189,
                                    420389,
                                    418689,
                                    421389,
                                    419189,
                                    398089,
                                    429189,
                                    224189,
                                    420089,
                                    349023,
                                    420189,
                                    425189,
                                    424889,
                                    418389,
                                    417889,
                                    419689,
                                    414289,
                                    416389,
                                    421289,
                                    415989,
                                    419389,
                                    421989,
                                    420989,
                                    416989,
                                    421889,
                                    418789,
                                    421389,
                                    411689,
                                    422689,
                                    421589,
                                    421689,
                                    419989,
                                    414189,
                                    419489,
                                    427989,
                                    418489,
                                    421589,
                                    349723,
                                    283989,
                                    420689,
                                    421789,
                                    419989,
                                    390489,
                                    425389,
                                    424089,
                                    424089,
                                    423689,
                                    196989,
                                    413389,
                                    401189,
                                    428689,
                                    474589,
                                    380289,
                                    471889,
                                    421789,
                                    418389,
                                    432389,
                                    411589,
                                    427789,
                                    413789,
                                    393389,
                                    431989,
                                    483589,
                                    427589,
                                    431489,
                                    423989,
                                    500489,
                                    419189,
                                    410289,
                                    411989,
                                    330489,
                                    423989,
                                    408889,
                                    419089,
                                    429389,
                                    436189,
                                    428289,
                                    350523,
                                    342311,
                                    427989,
                                    355423,
                                    416589,
                                    412189,
                                    416689,
                                    431389,
                                    421889,
                                    232189,
                                    422589,
                                    302889,
                                    422389,
                                    417789,
                                    426889,
                                    290589,
                                    306489,
                                    427589,
                                    428189,
                                    381889,
                                    427489,
                                    417089,
                                    292889,
                                    419889,
                                    333389,
                                    429589,
                                    332089,
                                    419189,
                                    420489,
                                    425289,
                                    414189,
                                    416089,
                                    417889,
                                    419089,
                                    409989,
                                    422689,
                                    428989,
                                    198489,
                                    416189,
                                    421889,
                                    191389,
                                    415689,
                                    429789,
                                    424489,
                                    429389,
                                    210289,
                                    316989,
                                    424589,
                                    429289,
                                    281881,
                                    423189,
                                    425089,
                                    420589,
                                    422989,
                                    423989,
                                    449189,
                                    427089,
                                    424589,
                                    419789,
                                    426589,
                                    420089,
                                    420089,
                                    435889,
                                    420189,
                                    432189,
                                    414589,
                                    422289,
                                    426689,
                                    424289,
                                    421989,
                                    438989,
                                    209089,
                                    418989,
                                    429089,
                                    415889,
                                    459689,
                                    423389,
                                    427389,
                                    394589,
                                    435589,
                                    261089,
                                    424089,
                                    447789,
                                    415989,
                                    303289,
                                    376989,
                                    425689,
                                    295789,
                                    419589,
                                    427189,
                                    419389,
                                    284589,
                                    414989,
                                    316689,
                                    420789,
                                    372511,
                                    427089,
                                    323489,
                                    417089,
                                    355589,
                                    424089,
                                    427089,
                                    423989,
                                    198789,
                                    303889,
                                    342189,
                                    364689,
                                    419489,
                                    415989,
                                    424089,
                                    428489,
                                    283789,
                                    414989,
                                    421589,
                                    422789,
                                    337989,
                                    418189,
                                    392189,
                                    415889,
                                    428589,
                                    412389,
                                    415189,
                                    339723,
                                    420689,
                                    414189,
                                    402189,
                                    423489,
                                    346923,
                                    292189,
                                    445311,
                                    229489,
                                    418889,
                                    401589,
                                    467089,
                                    424089,
                                    490789,
                                    396789,
                                    420889,
                                    404089,
                                    334889,
                                    242823,
                                    441789,
                                    404989,
                                    465189,
                                    423389,
                                    408511,
                                    413289,
                                    382281,
                                    460389,
                                    411989,
                                    401589,
                                    411889,
                                    210289,
                                    312489,
                                    420189,
                                    424489,
                                    433789,
                                    404189,
                                    242111,
                                    414489,
                                    440689,
                                    424689,
                                    418089,
                                    298689,
                                    447089,
                                    419189,
                                    295689,
                                    397389,
                                    431389,
                                    431981,
                                    418689,
                                    421089,
                                    423589,
                                    396889,
                                    415289,
                                    485089,
                                    418589,
                                    418089,
                                    428189,
                                    452289,
                                    428089,
                                    418889,
                                    418589,
                                    412189,
                                    426789,
                                    428289,
                                    419989,
                                    316089,
                                    450189,
                                    297589,
                                    349589,
                                    321589,
                                    431889,
                                    434089,
                                    394989,
                                    424389,
                                    274889,
                                    347289,
                                    431789,
                                    422289,
                                    462189,
                                    341789,
                                    153111,
                                    425989,
                                    427889,
                                    374011,
                                    430189,
                                    302489,
                                    404789,
                                    410389,
                                    447289,
                                    457189,
                                    399681,
                                    396689,
                                    352281,
                                    423389,
                                    373489,
                                    410889,
                                    428589,
                                    412589,
                                    427489,
                                    418689,
                                    400089,
                                    497489,
                                    428089,
                                    422389,
                                    381011,
                                    421189,
                                    282089,
                                    415889,
                                    407889,
                                    425789,
                                    222889,
                                    377911,
                                    421789,
                                    376011,
                                    431489,
                                    423589,
                                    412089,
                                    422289,
                                    286889,
                                    423989,
                                    420089,
                                    479389,
                                    490189,
                                    437889,
                                    414889,
                                    419789,
                                    320789,
                                    382489,
                                    294289,
                                    417689,
                                    419189,
                                    255689,
                                    422589,
                                    350089,
                                    412989,
                                    404489,
                                    420289,
                                    414689,
                                    423089,
                                    421589,
                                    437489,
                                    414089,
                                    308789,
                                    418889,
                                    224389,
                                    420489,
                                    199089,
                                    268289,
                                    479081,
                                    416989,
                                    418089,
                                    392489,
                                    310589,
                                    427489,
                                    406089,
                                    411389,
                                    423089,
                                    383189,
                                    261489,
                                    273089,
                                    413689,
                                    406089,
                                    353089,
                                    369389,
                                    409489,
                                    411381,
                                    372389,
                                    418589,
                                    492089,
                                    423789,
                                    427789,
                                    365689,
                                    357389,
                                    420289,
                                    307889,
                                    377389,
                                    430789,
                                    402711,
                                    430789,
                                    433189,
                                    419289,
                                    406881,
                                    428389,
                                    361289,
                                    395989,
                                    401789,
                                    388789,
                                    298823,
                                    413089,
                                    413489,
                                    410389,
                                    406289,
                                    398981,
                                    423489,
                                    424089,
                                    302189,
                                    412889,
                                    392981,
                                    415689,
                                    340923,
                                    310289,
                                    400689,
                                    392389,
                                    460889,
                                    415989,
                                    407289,
                                    408089,
                                    405589,
                                    418389,
                                    403281,
                                    411889,
                                    366011,
                                    407489,
                                    297489,
                                    424889,
                                    408389,
                                    444489,
                                    414489,
                                    268489,
                                    413589,
                                    288589,
                                    299489,
                                    412789,
                                    305989,
                                    420089,
                                    401189,
                                    422289,
                                    413589,
                                    457689,
                                    367289,
                                    124041,
                                    437611,
                                    161211,
                                    379881,
                                    420189,
                                    302023,
                                    342523,
                                    385089,
                                    307189,
                                    474789,
                                    367389,
                                    418289,
                                    377789,
                                    373789,
                                    401411,
                                    397989,
                                    405189,
                                    315789,
                                    372211,
                                    415789,
                                    422589,
                                    425489,
                                    404689,
                                    415689,
                                    417189,
                                    219989,
                                    413289,
                                    371689,
                                    281489,
                                    417089,
                                    405989,
                                    408289,
                                    397289,
                                    424989,
                                    198889,
                                    409889,
                                    427389,
                                    424589,
                                    222889,
                                    409089,
                                    325689,
                                    438489,
                                    295789,
                                    428889,
                                    408689,
                                    417189,
                                    349589,
                                    365311,
                                    392689,
                                    409789,
                                    395189,
                                    424989,
                                    259723,
                                    388589,
                                    423889,
                                    407189,
                                    419089,
                                    408589,
                                    350389,
                                    390789,
                                    398589,
                                    406089,
                                    387989,
                                    402089,
                                    427089,
                                    180289,
                                    403689,
                                    414189,
                                    412189,
                                    431789,
                                    413289,
                                    225611,
                                    386681,
                                    406289,
                                    275189,
                                    387089,
                                    399389,
                                    405989,
                                    402889,
                                    407189,
                                    489289,
                                    275689,
                                    413289,
                                    394089,
                                    462389,
                                    408289,
                                    323289,
                                    335923,
                                    410889,
                                    411089,
                                    410389,
                                    413089,
                                    416989,
                                    278289,
                                    401689,
                                    460389,
                                    330023,
                                    416189,
                                    195689,
                                    372489,
                                    309189,
                                    391889,
                                    205623,
                                    307889,
                                    407889,
                                    422689,
                                    415889,
                                    317389,
                                    407989,
                                    411423,
                                    337189,
                                    342323,
                                    334589,
                                    405989,
                                    415689,
                                    431089,
                                    407789,
                                    408789,
                                    420189,
                                    422389,
                                    394981,
                                    413989,
                                    409989,
                                    419689,
                                    399289,
                                    398889,
                                    425089,
                                    408589,
                                    372789,
                                    402389,
                                    171289,
                                    409889,
                                    414389,
                                    486189,
                                    407689,
                                    326789,
                                    380981,
                                    415089,
                                    428589,
                                    486489,
                                    374289,
                                    166481,
                                    474989,
                                    412489,
                                    393989,
                                    419389,
                                    385381,
                                    404589,
                                    410989,
                                    416189,
                                    410589,
                                    422389,
                                    419989,
                                    394181,
                                    241789,
                                    412289,
                                    400081,
                                    419189,
                                    418589,
                                    421689,
                                    378489,
                                    258989,
                                    415789,
                                    306389,
                                    421089,
                                    416689,
                                    402989,
                                    400281,
                                    461489,
                                    404789,
                                    393581,
                                    419889,
                                    416889,
                                    360389,
                                    420989,
                                    397381,
                                    432289,
                                    402889,
                                    422389,
                                    405589,
                                    423389,
                                    428989,
                                    421089,
                                    435989,
                                    334989,
                                    423389,
                                    413889,
                                    412189,
                                    397581,
                                    413389,
                                    418289,
                                    407389,
                                    496689,
                                    407981,
                                    309389,
                                    412189,
                                    327589,
                                    418889,
                                    410489,
                                    418389,
                                    445489,
                                    422189,
                                    408089,
                                    390681,
                                    424789,
                                    455789,
                                    234189,
                                    281689,
                                    390581,
                                    426889,
                                    415489,
                                    418189,
                                    392681,
                                    405189,
                                    412189,
                                    412989,
                                    254389,
                                    416989,
                                    425789,
                                    284189,
                                    423689,
                                    438089,
                                    347089,
                                    328989,
                                    410489,
                                    425589,
                                    420589,
                                    439889,
                                    372189,
                                    413089,
                                    422689,
                                    420489,
                                    417989,
                                    422489,
                                    428389,
                                    269489,
                                    263989,
                                    408989,
                                    430589,
                                    409989,
                                    282689,
                                    274289,
                                    422089,
                                    423289,
                                    419689,
                                    365789,
                                    427689,
                                    424089,
                                    247389,
                                    499089,
                                    428081,
                                    408789,
                                    410589,
                                    470889,
                                    415189,
                                    413389,
                                    394711,
                                    421489,
                                    419089,
                                    421089,
                                    409389,
                                    424989,
                                    395089,
                                    295523,
                                    479089,
                                    394011,
                                    490789,
                                    361889,
                                    227189,
                                    270023,
                                    454389,
                                    416581,
                                    393281,
                                    429889,
                                    376689,
                                    361789,
                                    365089,
                                    303289,
                                    242189,
                                    241989,
                                    420489,
                                    419189,
                                    462289,
                                    406989,
                                    178589,
                                    412589,
                                    432289,
                                    414889,
                                    416789,
                                    425089,
                                    413789,
                                    366011,
                                    419189,
                                    266989,
                                    498389,
                                    419289,
                                    260389,
                                    417489,
                                    447289,
                                    454789,
                                    406789,
                                    388789,
                                    386489,
                                    250989,
                                    390489,
                                    434189,
                                    291611,
                                    313089,
                                    394389,
                                    379389,
                                    412789,
                                    408289,
                                    419089,
                                    260589,
                                    302489,
                                    457189,
                                    396689,
                                    273989,
                                    409589,
                                    390381,
                                    422089,
                                    443889,
                                    257689,
                                    473289,
                                    454589,
                                    369289,
                                    332489,
                                    241189,
                                    465889,
                                    501789,
                                    380489,
                                    356289,
                                    456589,
                                    360189,
                                    421089,
                                    423489,
                                    339511,
                                    261289,
                                    469489,
                                    436989,
                                    457289,
                                    443689,
                                    422289,
                                    381489,
                                    380181,
                                    435489,
                                    456089,
                                    454089,
                                    281489,
                                    424289,
                                    306689,
                                    410089,
                                    440389,
                                    474989,
                                    434489,
                                    458889,
                                    395723,
                                    420289,
                                    210989,
                                    423889,
                                    368323,
                                    411189,
                                    434989,
                                    441689,
                                    413689,
                                    437189,
                                    398981,
                                    372723,
                                    458589,
                                    424889,
                                    361311,
                                    261781,
                                    429189,
                                    353289,
                                    420189,
                                    381089,
                                    437389,
                                    394889,
                                    346123,
                                    412589,
                                    431389,
                                    176489,
                                    418289,
                                    424189,
                                    372289,
                                    428589,
                                    421089,
                                    303089,
                                    420789,
                                    420689,
                                    343389,
                                    428589,
                                    411889,
                                    251189,
                                    406789,
                                    433689,
                                    362889,
                                    173989,
                                    423289,
                                    416589,
                                    420989,
                                    436789,
                                    326089,
                                    406789,
                                    427389,
                                    412289,
                                    276889,
                                    309289,
                                    310389,
                                    326789,
                                    485489,
                                    322489,
                                    409889,
                                    476689,
                                    415489,
                                    226189,
                                    414089,
                                    424689,
                                    453889,
                                    340623,
                                    319989,
                                    399789,
                                    412689,
                                    346489,
                                    429889,
                                    428089,
                                    405889,
                                    423089,
                                    411289,
                                    467589,
                                    411489,
                                    432889,
                                    414189,
                                    385481,
                                    430489,
                                    270689,
                                    248489,
                                    422089,
                                    501089,
                                    421189,
                                    266189,
                                    421889,
                                    347489,
                                    421989,
                                    433389,
                                    334323,
                                    197489,
                                    401989,
                                    414989,
                                    339681,
                                    449389,
                                    383189,
                                    417489,
                                    419889,
                                    401489,
                                    192611,
                                    232389,
                                    419289,
                                    427089,
                                    380789,
                                    362189,
                                    437989,
                                    372289,
                                    417889,
                                    408289,
                                    383989,
                                    409589,
                                    401389,
                                    420889,
                                    406189,
                                    420589,
                                    233589,
                                    399889,
                                    371189,
                                    387989,
                                    373811,
                                    405889,
                                    419789,
                                    301189,
                                    412789,
                                    413989,
                                    472889,
                                    419789,
                                    426689,
                                    349389,
                                    198323,
                                    412989,
                                    283989,
                                    422789,
                                    392481,
                                    417389,
                                    416089,
                                    431289,
                                    398481,
                                    249689,
                                    417989,
                                    401981,
                                    197389,
                                    366589,
                                    415889,
                                    295423,
                                    413789,
                                    423789,
                                    236089,
                                    302789,
                                    424489,
                                    415989,
                                    415689,
                                    360889,
                                    409489,
                                    412289,
                                    217989,
                                    420689,
                                    451889,
                                    360489,
                                    414989,
                                    382089,
                                    347689,
                                    415189,
                                    420789,
                                    389781,
                                    420789,
                                    350089,
                                    387989,
                                    416189,
                                    343489,
                                    372989,
                                    439189,
                                    283489,
                                    382781,
                                    386589,
                                    387589,
                                    384789,
                                    406889,
                                    398389,
                                    403889,
                                    399589,
                                    419789,
                                    404289,
                                    372511,
                                    264889,
                                    413189,
                                    391389,
                                    386689,
                                    387089,
                                    409789,
                                    321089,
                                    375689,
                                    413589,
                                    407589,
                                    385089,
                                    405489,
                                    402989,
                                    416989,
                                    387889,
                                    491389,
                                    381089,
                                    422189,
                                    419089,
                                    415089,
                                    423889,
                                    353489,
                                    412389,
                                    397389,
                                    336689,
                                    415189,
                                    400389,
                                    429689,
                                    409189,
                                    402089,
                                    391089,
                                    402489,
                                    192689,
                                    333789,
                                    395589,
                                    383123,
                                    229189,
                                    349623,
                                    411889,
                                    403289,
                                    353189,
                                    414189,
                                    334223,
                                    399989,
                                    423989,
                                    347623,
                                    400689,
                                    408989,
                                    410089,
                                    395889,
                                    409189,
                                    386989,
                                    425589,
                                    253289,
                                    431489,
                                    402489,
                                    406289,
                                    287789,
                                    408189,
                                    410089,
                                    393489,
                                    333889,
                                    404589,
                                    258889,
                                    414489,
                                    404789,
                                    462689,
                                    416189,
                                    253789,
                                    235289,
                                    278889,
                                    402289,
                                    351889,
                                    279289,
                                    401589,
                                    204889,
                                    403589,
                                    412789,
                                    258089,
                                    327089,
                                    415289,
                                    319789,
                                    392389,
                                    312489,
                                    444789,
                                    398489,
                                    434789,
                                    421789,
                                    430189,
                                    262189,
                                    406689,
                                    399189,
                                    346789,
                                    410389,
                                    411089,
                                    333489,
                                    289689,
                                    346589,
                                    337989,
                                    397789,
                                    392289,
                                    398689,
                                    400789,
                                    418589,
                                    394789,
                                    400489,
                                    404989,
                                    289189,
                                    414689,
                                    418689,
                                    401189,
                                    421189,
                                    407289,
                                    433089,
                                    412689,
                                    419489,
                                    458189,
                                    417381,
                                    367911,
                                    482989,
                                    398989,
                                    365989,
                                    407989,
                                    416789,
                                    407189,
                                    431689,
                                    407889,
                                    404389,
                                    342589,
                                    407389,
                                    491589,
                                    404889,
                                    405889,
                                    409989,
                                    413489,
                                    398989,
                                    409589,
                                    432589,
                                    396789,
                                    414889,
                                    407389,
                                    402489,
                                    453489,
                                    332423,
                                    403389,
                                    399689,
                                    468589,
                                    412889,
                                    403589,
                                    253989,
                                    464589,
                                    415289,
                                    442181,
                                    404789,
                                    400889,
                                    489489,
                                    414689,
                                    410089,
                                    414489,
                                    492889,
                                    415989,
                                    379211,
                                    412789,
                                    418489,
                                    413689,
                                    369711,
                                    180889,
                                    283589,
                                    413489,
                                    429389,
                                    500089,
                                    336389,
                                    412789,
                                    421689,
                                    423989,
                                    432789,
                                    385289,
                                    421489,
                                    501789,
                                    405489,
                                    407589,
                                    400189,
                                    417589,
                                    418689,
                                    224689,
                                    425489,
                                    413289,
                                    421389,
                                    301389,
                                    420289,
                                    421489,
                                    299289,
                                    386389,
                                    415489,
                                    170419,
                                    217189,
                                    418989,
                                    416289,
                                    407689,
                                    417089,
                                    417789,
                                    374889,
                                    410889,
                                    416289,
                                    180981,
                                    392289,
                                    388689,
                                    281989,
                                    433589,
                                    356789,
                                    326889,
                                    350089,
                                    416989,
                                    406181,
                                    424089,
                                    246489,
                                    415989,
                                    420289,
                                    420889,
                                    399589,
                                    376889,
                                    341989,
                                    361489,
                                    417689,
                                    278089,
                                    206289,
                                    347289,
                                    387589,
                                    276789,
                                    255789,
                                    414989,
                                    211489,
                                    328311,
                                    409089,
                                    418089,
                                    423689,
                                    471489,
                                    448089,
                                    228889,
                                    419689,
                                    480089,
                                    420589,
                                    425789,
                                    287789,
                                    433089,
                                    340423,
                                    280389,
                                    423189,
                                    255789,
                                    421989,
                                    498589,
                                    425989,
                                    459589,
                                    426889,
                                    285389,
                                    335389,
                                    430289,
                                    207689,
                                    427789,
                                    431889,
                                    398281,
                                    425689,
                                    445189,
                                    429189,
                                    211989,
                                    427689,
                                    343789,
                                    306189,
                                    417589,
                                    418389,
                                    460289,
                                    425089,
                                    415989,
                                    381489,
                                    259589,
                                    359589,
                                    282489,
                                    416689,
                                    243589,
                                    426289,
                                    309189,
                                    418089,
                                    434589,
                                    378389,
                                    182889,
                                    422389,
                                    421289,
                                    426089,
                                    428789,
                                    427989,
                                    424189,
                                    390489,
                                    424889,
                                    425989,
                                    438289,
                                    432089,
                                    297789,
                                    416489,
                                    442689,
                                    329889,
                                    433389,
                                    422389,
                                    427289,
                                    426889,
                                    366823,
                                    232489,
                                    431781,
                                    399589,
                                    173411,
                                    367123,
                                    374089,
                                    127923,
                                    279289,
                                    408281,
                                    435089,
                                    361023,
                                    281789,
                                    439089,
                                    462881,
                                    437589,
                                    412989,
                                    281489,
                                    374389,
                                    481189,
                                    323481,
                                    411589,
                                    335289,
                                    332289,
                                    425489,
                                    402389,
                                    179589,
                                    437489,
                                    397581,
                                    409281,
                                    462589,
                                    395281,
                                    424489,
                                    404081,
                                    462789,
                                    433489,
                                    450789,
                                    418989,
                                    424389,
                                    393081,
                                    413989,
                                    418289,
                                    413189,
                                    401681,
                                    421489,
                                    303889,
                                    426689,
                                    240789,
                                    436689,
                                    397111,
                                    448489,
                                    421389,
                                    249889,
                                    428889,
                                    425489,
                                    400389,
                                    437289,
                                    406489,
                                    357989,
                                    411089,
                                    401289,
                                    333423,
                                    419489,
                                    408889,
                                    415289,
                                    422689,
                                    447389,
                                    417089,
                                    427289,
                                    417089,
                                    314489,
                                    451789,
                                    409589,
                                    496489,
                                    177489,
                                    185889,
                                    432989,
                                    426089,
                                    399389,
                                    381511,
                                    325789,
                                    368611,
                                    307889,
                                    376011,
                                    425789,
                                    386389,
                                    492489,
                                    475489,
                                    304689,
                                    423189,
                                    351989,
                                    422289,
                                    268189,
                                    316289,
                                    386711,
                                    306489,
                                    334223,
                                    404889,
                                    433089,
                                    447989,
                                    419089,
                                    250589,
                                    252789,
                                    398689,
                                    415389,
                                    416689,
                                    416989,
                                    295389,
                                    417589,
                                    302189,
                                    423189,
                                    399489,
                                    439089,
                                    385989,
                                    436889,
                                    411889,
                                    327889,
                                    404189,
                                    438989,
                                    207489,
                                    410989,
                                    412689,
                                    417989,
                                    411689,
                                    424789,
                                    391789,
                                    334789,
                                    410489,
                                    239389,
                                    417589,
                                    248989,
                                    386781,
                                    328323,
                                    415889,
                                    399789,
                                    423089,
                                    415389,
                                    369489,
                                    499589,
                                    414389,
                                    437489,
                                    396681,
                                    412189,
                                    216911,
                                    410189,
                                    380723,
                                    269389,
                                    227889,
                                    254489,
                                    480989,
                                    384989,
                                    254589,
                                    336389,
                                    363889,
                                    412489,
                                    466389,
                                    501789,
                                    170419,
                                    421189,
                                    467289,
                                    456989,
                                    368689,
                                    423689,
                                    291989,
                                    454389,
                                    341823,
                                    465389,
                                    343623,
                                    421389,
                                    341689,
                                    284889,
                                    446689,
                                    423989,
                                    427689,
                                    430789,
                                    262789,
                                    321789,
                                    345411,
                                    423789,
                                    311989,
                                    442389,
                                    393023,
                                    395689,
                                    409289,
                                    424989,
                                    501789,
                                    457789,
                                    355589,
                                    409589,
                                    418889,
                                    406089,
                                    434489,
                                    413789,
                                    431289,
                                    403589,
                                    368889,
                                    394781,
                                    428689,
                                    424089,
                                    436389,
                                    413189,
                                    424189,
                                    410189,
                                    455989,
                                    414689,
                                    243289,
                                    357589,
                                    427089,
                                    411189,
                                    425889,
                                    398481,
                                    350281,
                                    499089,
                                    349989,
                                    304589,
                                    421089,
                                    438989,
                                    414789,
                                    434089,
                                    431589,
                                    364823,
                                    424489,
                                    417989,
                                    357189,
                                    331489,
                                    381589,
                                    418189,
                                    260789,
                                    420189,
                                    422189,
                                    328989,
                                    438489,
                                    417689,
                                    477889,
                                    419889,
                                    221989,
                                    199189,
                                    269989,
                                    334389,
                                    473589,
                                    419389,
                                    417189,
                                    413981,
                                    375989,
                                    415089,
                                    432389,
                                    425889,
                                    301289,
                                    399089,
                                    386581,
                                    418289,
                                    263889,
                                    373589,
                                    382389,
                                    417181,
                                    402189,
                                    417589,
                                    348023,
                                    423789,
                                    399789,
                                    440289,
                                    342589,
                                    435389,
                                    416089,
                                    439789,
                                    454389,
                                    458289,
                                    413789,
                                    425689,
                                    415889,
                                    407489,
                                    437589,
                                    407689,
                                    386889,
                                    417089,
                                    405289,
                                    412189,
                                    393989,
                                    364389,
                                    276789,
                                    413389,
                                    286489,
                                    416289,
                                    418189,
                                    316089,
                                    479689,
                                    221989,
                                    415089,
                                    406089,
                                    423989,
                                    209789,
                                    423289,
                                    433089,
                                    401089,
                                    437589,
                                    404389,
                                    411089,
                                    407389,
                                    446789,
                                    355589,
                                    407489,
                                    403789,
                                    428289,
                                    354689,
                                    423889,
                                    412689,
                                    404889,
                                    425389,
                                    428289,
                                    414589,
                                    173789,
                                    329089,
                                    220711,
                                    456589,
                                    492489,
                                    309689,
                                    377289,
                                    477489,
                                    314089,
                                    206411
                                ]
                            },
                            {
                                "label": "RF Block",
                                "range": [
                                    1417,
                                    107154
                                ],
                                "values": [
                                    1417,
                                    23377,
                                    3376,
                                    33336,
                                    5635,
                                    10812,
                                    6898,
                                    21273,
                                    2484,
                                    35126,
                                    5626,
                                    51096,
                                    7384,
                                    22020,
                                    18912,
                                    52449,
                                    7498,
                                    87528,
                                    11359,
                                    107154,
                                    9197,
                                    18159,
                                    13115,
                                    41120,
                                    4254,
                                    53966,
                                    17129,
                                    14957,
                                    12469,
                                    12882,
                                    19875,
                                    23547,
                                    16325,
                                    15238,
                                    15452,
                                    31817,
                                    18210,
                                    16237,
                                    13815,
                                    24070,
                                    14163,
                                    10748,
                                    16292,
                                    12787,
                                    19559,
                                    10597,
                                    34781,
                                    25859,
                                    23121,
                                    7331,
                                    19298,
                                    17056,
                                    18788,
                                    12009,
                                    8997,
                                    9280,
                                    10990,
                                    9825,
                                    13690,
                                    14547,
                                    15443,
                                    14758,
                                    22429,
                                    9324,
                                    13396,
                                    10915,
                                    12615,
                                    13307,
                                    16842,
                                    12533,
                                    11312,
                                    29347,
                                    2923,
                                    28796,
                                    42332,
                                    12953,
                                    14401,
                                    16151,
                                    23973,
                                    4730,
                                    21716,
                                    13116,
                                    13175,
                                    15085,
                                    8140,
                                    14046,
                                    15629,
                                    13231,
                                    5612,
                                    14571,
                                    14929,
                                    12812,
                                    9048,
                                    10826,
                                    20129,
                                    17258,
                                    12673,
                                    11513,
                                    12391,
                                    14423,
                                    10741,
                                    14543,
                                    4797,
                                    6770,
                                    12516,
                                    15056,
                                    26071,
                                    38770,
                                    15137,
                                    15072,
                                    11241,
                                    26828,
                                    8765,
                                    10555,
                                    10704,
                                    13486,
                                    6364,
                                    10951,
                                    12683,
                                    21652,
                                    27201,
                                    21344,
                                    10776,
                                    9748,
                                    11037,
                                    12370,
                                    8567,
                                    13685,
                                    11766,
                                    12085,
                                    11494,
                                    20165,
                                    13118,
                                    14030,
                                    13022,
                                    10399,
                                    14657,
                                    11485,
                                    10530,
                                    13011,
                                    6136,
                                    10941,
                                    24564,
                                    2983,
                                    44046,
                                    27024,
                                    13288,
                                    11442,
                                    25304,
                                    11719,
                                    10889,
                                    42292,
                                    21241,
                                    13750,
                                    11650,
                                    12963,
                                    7752,
                                    11368,
                                    12729,
                                    10642,
                                    9786,
                                    12557,
                                    11922,
                                    10954,
                                    10880,
                                    9807,
                                    11606,
                                    10332,
                                    11490,
                                    12266,
                                    8847,
                                    11958,
                                    9329,
                                    11618,
                                    30498,
                                    9096,
                                    9656,
                                    10880,
                                    12137,
                                    10590,
                                    30171,
                                    10776,
                                    12029,
                                    10048,
                                    9194,
                                    12699,
                                    11935,
                                    10320,
                                    12246,
                                    10999,
                                    11670,
                                    12919,
                                    10448,
                                    28090,
                                    9996,
                                    11446,
                                    11869,
                                    11452,
                                    11130,
                                    10617,
                                    10938,
                                    10938,
                                    61633,
                                    9401,
                                    10986,
                                    10264,
                                    11382,
                                    26443,
                                    7246,
                                    10959,
                                    10865,
                                    10461,
                                    15205,
                                    10010,
                                    11370,
                                    10761,
                                    9628,
                                    10072,
                                    15113,
                                    15277,
                                    10752,
                                    15445,
                                    10415,
                                    10409,
                                    11365,
                                    42807,
                                    10732,
                                    80687,
                                    14568,
                                    10607,
                                    25736,
                                    10835,
                                    25227,
                                    10372,
                                    10690,
                                    10861,
                                    9204,
                                    24356,
                                    9578,
                                    10690,
                                    16420,
                                    32922,
                                    9966,
                                    10328,
                                    22516,
                                    11073,
                                    10370,
                                    10319,
                                    16053,
                                    12519,
                                    10850,
                                    10016,
                                    23430,
                                    9967,
                                    10409,
                                    16565,
                                    33216,
                                    10086,
                                    11852,
                                    10717,
                                    71528,
                                    10854,
                                    6473,
                                    9864,
                                    24531,
                                    10169,
                                    10465,
                                    13817,
                                    8117,
                                    10114,
                                    10539,
                                    9383,
                                    9575,
                                    9905,
                                    10607,
                                    10809,
                                    12302,
                                    11300,
                                    17273,
                                    19981,
                                    10379,
                                    62047,
                                    32661,
                                    10668,
                                    10740,
                                    11887,
                                    10168,
                                    10328,
                                    10606,
                                    5848,
                                    19699,
                                    9904,
                                    10606,
                                    12471,
                                    10735,
                                    10454,
                                    10221,
                                    11269,
                                    10282,
                                    10788,
                                    10518,
                                    13610,
                                    10157,
                                    12402,
                                    12469,
                                    10341,
                                    11117,
                                    11692,
                                    11407,
                                    11290,
                                    10950,
                                    11411,
                                    10684,
                                    15902,
                                    9235,
                                    11594,
                                    10388,
                                    10673,
                                    10287,
                                    11358,
                                    10456,
                                    21224,
                                    11029,
                                    9757,
                                    10623,
                                    20290,
                                    11303,
                                    10606,
                                    10576,
                                    10914,
                                    10215,
                                    11150,
                                    10688,
                                    20300,
                                    10648,
                                    10158,
                                    9969,
                                    10490,
                                    9674,
                                    14900,
                                    8394,
                                    58012,
                                    9555,
                                    18938,
                                    12074,
                                    10625,
                                    16410,
                                    18293,
                                    8646,
                                    7452,
                                    10486,
                                    10598,
                                    10851,
                                    9883,
                                    9527,
                                    9921,
                                    8487,
                                    12350,
                                    21204,
                                    10475,
                                    33939,
                                    10793,
                                    10449,
                                    12448,
                                    11840,
                                    16981,
                                    9941,
                                    9714,
                                    10921,
                                    17966,
                                    13494,
                                    13501,
                                    9559,
                                    12461,
                                    10527,
                                    10273,
                                    12408,
                                    10142,
                                    8618,
                                    10065,
                                    10490,
                                    19855,
                                    11973,
                                    6992,
                                    27078,
                                    9865,
                                    22933,
                                    10190,
                                    39964,
                                    15056,
                                    10890,
                                    10469,
                                    9225,
                                    9722,
                                    22231,
                                    10448,
                                    16940,
                                    8739,
                                    9933,
                                    10792,
                                    10162,
                                    10820,
                                    10476,
                                    10596,
                                    15300,
                                    10848,
                                    10490,
                                    10626,
                                    11052,
                                    11152,
                                    9908,
                                    10688,
                                    10853,
                                    23939,
                                    10974,
                                    10706,
                                    11293,
                                    25292,
                                    10575,
                                    44141,
                                    9329,
                                    42453,
                                    11111,
                                    33703,
                                    9989,
                                    14744,
                                    29684,
                                    10627,
                                    12450,
                                    10102,
                                    10804,
                                    22365,
                                    15455,
                                    10235,
                                    17927,
                                    28090,
                                    22636,
                                    5696,
                                    10830,
                                    11452,
                                    37616,
                                    10548,
                                    14079,
                                    2381,
                                    9319,
                                    5708,
                                    10278,
                                    10270,
                                    10173,
                                    10438,
                                    10466,
                                    14781,
                                    11824,
                                    13649,
                                    11169,
                                    10106,
                                    10054,
                                    48407,
                                    10727,
                                    8452,
                                    10180,
                                    11032,
                                    9142,
                                    27478,
                                    10124,
                                    10562,
                                    10836,
                                    10135,
                                    7096,
                                    9831,
                                    11865,
                                    10439,
                                    10077,
                                    10337,
                                    10278,
                                    10402,
                                    40924,
                                    10160,
                                    24221,
                                    8787,
                                    12698,
                                    13555,
                                    20043,
                                    9006,
                                    10211,
                                    30486,
                                    10615,
                                    5012,
                                    13470,
                                    11561,
                                    21404,
                                    11943,
                                    35820,
                                    10150,
                                    10799,
                                    10569,
                                    10388,
                                    18464,
                                    10494,
                                    10739,
                                    17119,
                                    10382,
                                    10994,
                                    10169,
                                    10365,
                                    10862,
                                    10219,
                                    35420,
                                    11482,
                                    36677,
                                    10085,
                                    9303,
                                    10751,
                                    26201,
                                    9832,
                                    9444,
                                    11268,
                                    16820,
                                    24669,
                                    11580,
                                    10429,
                                    13545,
                                    31487,
                                    14811,
                                    28689,
                                    13605,
                                    22274,
                                    13142,
                                    15556,
                                    39192,
                                    11083,
                                    28305,
                                    22002,
                                    32055,
                                    11237,
                                    14968,
                                    15304,
                                    10818,
                                    14371,
                                    9237,
                                    10504,
                                    11672,
                                    15811,
                                    20320,
                                    13030,
                                    18281,
                                    37483,
                                    10853,
                                    18766,
                                    33670,
                                    11700,
                                    25359,
                                    13903,
                                    19952,
                                    17043,
                                    18835,
                                    21038,
                                    13206,
                                    10850,
                                    13772,
                                    8348,
                                    14495,
                                    25290,
                                    14003,
                                    13966,
                                    12454,
                                    16773,
                                    15792,
                                    14666,
                                    12615,
                                    18555,
                                    20326,
                                    13386,
                                    16211,
                                    11108,
                                    12505,
                                    18943,
                                    13578,
                                    13475,
                                    9963,
                                    13037,
                                    24033,
                                    10640,
                                    25696,
                                    8173,
                                    12725,
                                    9708,
                                    9863,
                                    12975,
                                    12783,
                                    29488,
                                    10613,
                                    15552,
                                    10566,
                                    9981,
                                    11013,
                                    10682,
                                    10087,
                                    12383,
                                    11656,
                                    10325,
                                    10872,
                                    8027,
                                    11261,
                                    11077,
                                    38056,
                                    10047,
                                    9527,
                                    9601,
                                    12561,
                                    10987,
                                    10731,
                                    10944,
                                    6680,
                                    11525,
                                    10922,
                                    10432,
                                    38982,
                                    12574,
                                    19619,
                                    12819,
                                    8162,
                                    9543,
                                    12403,
                                    9836,
                                    14314,
                                    22537,
                                    11423,
                                    11359,
                                    16214,
                                    12020,
                                    11313,
                                    9979,
                                    10532,
                                    11140,
                                    5538,
                                    11040,
                                    10342,
                                    7274,
                                    11035,
                                    10156,
                                    9986,
                                    10486,
                                    12454,
                                    12438,
                                    24463,
                                    20432,
                                    20455,
                                    12397,
                                    37736,
                                    10196,
                                    18212,
                                    15145,
                                    18863,
                                    13024,
                                    13364,
                                    12974,
                                    41227,
                                    11856,
                                    11346,
                                    11326,
                                    12760,
                                    10202,
                                    15894,
                                    11309,
                                    22422,
                                    17922,
                                    9380,
                                    11075,
                                    11609,
                                    9989,
                                    21795,
                                    16305,
                                    10791,
                                    18100,
                                    10980,
                                    12215,
                                    10666,
                                    10339,
                                    7981,
                                    12100,
                                    10235,
                                    28922,
                                    10339,
                                    11453,
                                    15440,
                                    24216,
                                    8614,
                                    14903,
                                    11618,
                                    10720,
                                    10714,
                                    11399,
                                    10649,
                                    10249,
                                    11125,
                                    11523,
                                    13787,
                                    10415,
                                    12882,
                                    10920,
                                    11001,
                                    23505,
                                    19807,
                                    12172,
                                    76180,
                                    10338,
                                    10975,
                                    8062,
                                    13561,
                                    20564,
                                    11107,
                                    9966,
                                    8921,
                                    34621,
                                    36878,
                                    11835,
                                    10960,
                                    11871,
                                    10982,
                                    29514,
                                    10178,
                                    10481,
                                    11149,
                                    10573,
                                    9197,
                                    34702,
                                    15114,
                                    11222,
                                    7482,
                                    11016,
                                    28924,
                                    9036,
                                    11100,
                                    12007,
                                    30205,
                                    10454,
                                    10890,
                                    10902,
                                    10595,
                                    10095,
                                    10696,
                                    10249,
                                    10609,
                                    10740,
                                    10824,
                                    10277,
                                    10679,
                                    10296,
                                    13965,
                                    9912,
                                    10483,
                                    9972,
                                    10735,
                                    19105,
                                    24162,
                                    10498,
                                    9856,
                                    11457,
                                    10418,
                                    10479,
                                    9695,
                                    10405,
                                    20038,
                                    21024,
                                    10611,
                                    10964,
                                    10095,
                                    18471,
                                    10126,
                                    11042,
                                    10546,
                                    13961,
                                    9864,
                                    10287,
                                    10254,
                                    10350,
                                    36948,
                                    10205,
                                    19478,
                                    16141,
                                    10222,
                                    32500,
                                    9865,
                                    19020,
                                    32054,
                                    7968,
                                    10325,
                                    26167,
                                    15826,
                                    10497,
                                    26223,
                                    10784,
                                    11040,
                                    21312,
                                    13074,
                                    11326,
                                    10699,
                                    11514,
                                    10271,
                                    9270,
                                    27080,
                                    11929,
                                    29848,
                                    13399,
                                    10618,
                                    16773,
                                    38775,
                                    15158,
                                    10308,
                                    16630,
                                    24280,
                                    10359,
                                    26577,
                                    25968,
                                    11063,
                                    9358,
                                    24236,
                                    10131,
                                    10633,
                                    8785,
                                    16274,
                                    10153,
                                    17928,
                                    10168,
                                    12024,
                                    15155,
                                    10751,
                                    10514,
                                    10726,
                                    10694,
                                    10684,
                                    12918,
                                    10318,
                                    9723,
                                    10353,
                                    18212,
                                    11901,
                                    35670,
                                    10645,
                                    10501,
                                    14751,
                                    11704,
                                    5960,
                                    21709,
                                    33016,
                                    11319,
                                    10692,
                                    9730,
                                    11579,
                                    10545,
                                    10898,
                                    10450,
                                    16733,
                                    20856,
                                    10557,
                                    10411,
                                    9420,
                                    31288,
                                    35500,
                                    10552,
                                    7849,
                                    8744,
                                    10903,
                                    9795,
                                    9018,
                                    10362,
                                    11398,
                                    11504,
                                    21077,
                                    9900,
                                    19523,
                                    22921,
                                    48955,
                                    10100,
                                    35563,
                                    17163,
                                    10109,
                                    10710,
                                    10407,
                                    10174,
                                    10338,
                                    19927,
                                    10088,
                                    11713,
                                    9719,
                                    10242,
                                    37731,
                                    15195,
                                    6232,
                                    41049,
                                    10615,
                                    10017,
                                    9755,
                                    10709,
                                    14637,
                                    9291,
                                    11864,
                                    10109,
                                    10156,
                                    11304,
                                    67519,
                                    17390,
                                    17379,
                                    12079,
                                    10161,
                                    10612,
                                    9842,
                                    15579,
                                    10903,
                                    9928,
                                    10148,
                                    10154,
                                    16966,
                                    10889,
                                    10372,
                                    12307,
                                    13177,
                                    26663,
                                    10878,
                                    9647,
                                    10531,
                                    9319,
                                    13014,
                                    9437,
                                    9204,
                                    12344,
                                    11695,
                                    29491,
                                    4829,
                                    9900,
                                    33272,
                                    14803,
                                    6452,
                                    10605,
                                    11949,
                                    14380,
                                    41594,
                                    10764,
                                    11066,
                                    10315,
                                    13599,
                                    10388,
                                    10160,
                                    22538,
                                    10492,
                                    10394,
                                    11021,
                                    11273,
                                    16408,
                                    10459,
                                    9505,
                                    11608,
                                    27802,
                                    10337,
                                    10946,
                                    10642,
                                    10364,
                                    19852,
                                    9766,
                                    9477,
                                    10783,
                                    10463,
                                    32639,
                                    33506,
                                    10877,
                                    11257,
                                    11148,
                                    11070,
                                    10769,
                                    32854,
                                    11405,
                                    10836,
                                    9867,
                                    10488,
                                    14866,
                                    10453,
                                    10822,
                                    10211,
                                    10304,
                                    10483,
                                    10395,
                                    10455,
                                    11100,
                                    10595,
                                    10385,
                                    10249,
                                    10315,
                                    10299,
                                    14743,
                                    10506,
                                    4196,
                                    10680,
                                    8481,
                                    10569,
                                    10217,
                                    10535,
                                    10788,
                                    10380,
                                    10104,
                                    10496,
                                    10774,
                                    10578,
                                    12092,
                                    10172,
                                    10273,
                                    11082,
                                    28496,
                                    10138,
                                    11213,
                                    10182,
                                    10541,
                                    10214,
                                    10813,
                                    10209,
                                    9657,
                                    10418,
                                    10325,
                                    9225,
                                    10075,
                                    10889,
                                    8608,
                                    11322,
                                    11055,
                                    10799,
                                    10054,
                                    22351,
                                    34451,
                                    10954,
                                    10801,
                                    10028,
                                    10797,
                                    10584,
                                    8069,
                                    23265,
                                    19284,
                                    10490,
                                    12889,
                                    11179,
                                    10694,
                                    23407,
                                    10668,
                                    10530,
                                    10576,
                                    33861,
                                    16659,
                                    18867,
                                    10082,
                                    16290,
                                    9883,
                                    14526,
                                    9639,
                                    10930,
                                    10400,
                                    6394,
                                    10245,
                                    10304,
                                    11994,
                                    10994,
                                    11345,
                                    10426,
                                    8470,
                                    17899,
                                    10053,
                                    16420,
                                    10516,
                                    29232,
                                    10200,
                                    10599,
                                    10119,
                                    14293,
                                    10478,
                                    27110,
                                    10359,
                                    9926,
                                    9912,
                                    29435,
                                    17805,
                                    12276,
                                    10674,
                                    26997,
                                    10445,
                                    20195,
                                    9146,
                                    10524,
                                    10816,
                                    10555,
                                    10744,
                                    10242,
                                    10180,
                                    14829,
                                    10046,
                                    11402,
                                    13681,
                                    9995,
                                    10387,
                                    10157,
                                    10482,
                                    15997,
                                    21537,
                                    20617,
                                    7234,
                                    19940,
                                    10347,
                                    9837,
                                    10492,
                                    3567,
                                    15063,
                                    10527,
                                    14404,
                                    26219,
                                    9845,
                                    10367,
                                    12283,
                                    10012,
                                    11008,
                                    16150,
                                    10090,
                                    9801,
                                    10182,
                                    10385,
                                    11210,
                                    10227,
                                    10945,
                                    10796,
                                    12408,
                                    10596,
                                    12523,
                                    10445,
                                    10863,
                                    15001,
                                    11714,
                                    4158,
                                    10011,
                                    11102,
                                    18453,
                                    25567,
                                    34427,
                                    21636,
                                    17312,
                                    11486,
                                    25894,
                                    10305,
                                    11143,
                                    10014,
                                    7083,
                                    29212,
                                    11225,
                                    13217,
                                    12442,
                                    10534,
                                    30505,
                                    18992,
                                    9916,
                                    9305,
                                    9562,
                                    14432,
                                    10474,
                                    15954,
                                    11336,
                                    14433,
                                    10782,
                                    10858,
                                    13947,
                                    13731,
                                    16533,
                                    18216,
                                    23681,
                                    32935,
                                    9827,
                                    10190,
                                    9891,
                                    12630,
                                    10233,
                                    10130,
                                    10387,
                                    15376,
                                    10256,
                                    24143,
                                    10237,
                                    9739,
                                    10317,
                                    9752,
                                    8255,
                                    10923,
                                    8741,
                                    37789,
                                    61374,
                                    8664,
                                    4220,
                                    34907,
                                    3366,
                                    9820,
                                    18920,
                                    28985,
                                    11698,
                                    10181,
                                    82710,
                                    10549,
                                    34749,
                                    25408,
                                    11746,
                                    16455,
                                    10624,
                                    17395,
                                    12460,
                                    11048,
                                    12144,
                                    12643,
                                    13238,
                                    11049,
                                    10607,
                                    10713,
                                    16579,
                                    22372,
                                    10607,
                                    11766,
                                    11282,
                                    10549,
                                    22312,
                                    9792,
                                    12057,
                                    9784,
                                    10705,
                                    21263,
                                    39010,
                                    10601,
                                    20597,
                                    10461,
                                    10502,
                                    8825,
                                    10079,
                                    10800,
                                    11227,
                                    20574,
                                    10297,
                                    28465,
                                    11264,
                                    10799,
                                    11484,
                                    32910,
                                    10132,
                                    10895,
                                    21699,
                                    10646,
                                    10735,
                                    10696,
                                    11264,
                                    19742,
                                    42988,
                                    41859,
                                    10492,
                                    5759,
                                    24954,
                                    10411,
                                    13437,
                                    11267,
                                    5603,
                                    10173,
                                    10822,
                                    11230,
                                    33464,
                                    17149,
                                    11761,
                                    10849,
                                    11071,
                                    10266,
                                    10318,
                                    5839,
                                    14954,
                                    10101,
                                    39692,
                                    29152,
                                    9676,
                                    12924,
                                    11540,
                                    43420,
                                    30908,
                                    9929,
                                    23278,
                                    17192,
                                    9964,
                                    10193,
                                    20560,
                                    27021,
                                    19244,
                                    9997,
                                    11196,
                                    11353,
                                    14331,
                                    10630,
                                    9783,
                                    10959,
                                    14011,
                                    21597,
                                    12489,
                                    10930,
                                    19611,
                                    10617,
                                    10366,
                                    32400,
                                    5912,
                                    12172,
                                    32577,
                                    65364,
                                    44139,
                                    10069,
                                    10473,
                                    10503,
                                    9310,
                                    33098,
                                    10077,
                                    10394,
                                    10412,
                                    5522,
                                    12512,
                                    10444,
                                    11968,
                                    23134,
                                    20539,
                                    10636,
                                    10680,
                                    9865,
                                    17915,
                                    9652,
                                    57471,
                                    17323,
                                    19811,
                                    12337,
                                    19754,
                                    25944,
                                    18475,
                                    9532,
                                    10535,
                                    20382,
                                    26345,
                                    13869,
                                    12280,
                                    12403,
                                    10090,
                                    14846,
                                    17309,
                                    11379,
                                    11821,
                                    18237,
                                    46284,
                                    7399,
                                    12253,
                                    21048,
                                    14545,
                                    12262,
                                    14172,
                                    11900,
                                    11608,
                                    23811,
                                    11756,
                                    12709,
                                    11665,
                                    13314,
                                    11359,
                                    11199,
                                    13162,
                                    11013,
                                    10641,
                                    10930,
                                    11373,
                                    16875,
                                    10709,
                                    14663,
                                    19210,
                                    9117,
                                    10354,
                                    10345,
                                    10785,
                                    33407,
                                    11203,
                                    9776,
                                    22824,
                                    5670,
                                    9550,
                                    10557,
                                    11541,
                                    8667,
                                    41163,
                                    10187,
                                    17357,
                                    76115,
                                    10894,
                                    10300,
                                    14510,
                                    15094,
                                    9959,
                                    9200,
                                    10324,
                                    8811,
                                    10727,
                                    15676,
                                    34492,
                                    11302,
                                    30983,
                                    10239,
                                    27184,
                                    11148,
                                    16012,
                                    13382,
                                    11702,
                                    18726,
                                    10832,
                                    16952,
                                    24133,
                                    9454,
                                    21152,
                                    22064,
                                    5202,
                                    29716,
                                    8219,
                                    18975,
                                    10078,
                                    11633,
                                    10604,
                                    9357,
                                    25145,
                                    82471,
                                    25294,
                                    13270,
                                    8653,
                                    20891,
                                    41040,
                                    11945,
                                    9080,
                                    25991,
                                    8592,
                                    26568,
                                    12760,
                                    9918,
                                    11163,
                                    25627,
                                    12672,
                                    15235,
                                    18263,
                                    11658,
                                    12806,
                                    11580,
                                    10176,
                                    11538,
                                    10923,
                                    11015,
                                    18276,
                                    10587,
                                    10847,
                                    10852,
                                    18896,
                                    14635,
                                    16942,
                                    18271,
                                    8292,
                                    12197,
                                    11126,
                                    11489,
                                    14929,
                                    9764,
                                    15179,
                                    11765,
                                    10865,
                                    25110,
                                    10109,
                                    10387,
                                    15412,
                                    11745,
                                    10938,
                                    10866,
                                    7458,
                                    11852,
                                    31513,
                                    11403,
                                    16621,
                                    11869,
                                    22140,
                                    27762,
                                    11317,
                                    10083,
                                    11296,
                                    18886,
                                    12088,
                                    4649,
                                    10649,
                                    11756,
                                    5362,
                                    5696,
                                    11160,
                                    12697,
                                    10587,
                                    11287,
                                    49254,
                                    5111,
                                    11307,
                                    16226,
                                    65648,
                                    10693,
                                    12976,
                                    9795,
                                    11685,
                                    13300,
                                    9676,
                                    11079,
                                    19515,
                                    4971,
                                    36232,
                                    30848,
                                    8851,
                                    9364,
                                    12046,
                                    10543,
                                    27251,
                                    14449,
                                    25057,
                                    8742,
                                    10756,
                                    10119,
                                    31794,
                                    16824,
                                    13457,
                                    13126,
                                    10940,
                                    8487,
                                    15164,
                                    12277,
                                    10026,
                                    10669,
                                    11707,
                                    10301,
                                    10134,
                                    10264,
                                    12246,
                                    9538,
                                    10608,
                                    10708,
                                    9828,
                                    30769,
                                    10272,
                                    10700,
                                    22730,
                                    10375,
                                    28088,
                                    10679,
                                    15887,
                                    26494,
                                    10750,
                                    16367,
                                    10320,
                                    20659,
                                    11089,
                                    25920,
                                    37391,
                                    9229,
                                    57506,
                                    24371,
                                    13704,
                                    10908,
                                    12191,
                                    10632,
                                    11670,
                                    22268,
                                    14633,
                                    10035,
                                    28198,
                                    10394,
                                    18725,
                                    16048,
                                    9974,
                                    12317,
                                    10831,
                                    11404,
                                    8516,
                                    12843,
                                    10178,
                                    13677,
                                    9834,
                                    23288,
                                    11986,
                                    11347,
                                    18648,
                                    12240,
                                    21040,
                                    10354,
                                    10543,
                                    29142,
                                    10722,
                                    11426,
                                    11068,
                                    9953,
                                    11366,
                                    10677,
                                    10497,
                                    10617,
                                    10630,
                                    11202,
                                    22069,
                                    48435,
                                    10150,
                                    10683,
                                    9589,
                                    10529,
                                    21533,
                                    10302,
                                    24630,
                                    9491,
                                    12154,
                                    10609,
                                    10864,
                                    10744,
                                    10824,
                                    11051,
                                    35643,
                                    10335,
                                    11128,
                                    10196,
                                    20262,
                                    14029,
                                    15512,
                                    13132,
                                    9473,
                                    10776,
                                    10227,
                                    10858,
                                    27460,
                                    10466,
                                    41882,
                                    10425,
                                    23124,
                                    9776,
                                    10710,
                                    10243,
                                    11306,
                                    11631,
                                    13932,
                                    9667,
                                    15904,
                                    15014,
                                    34062,
                                    12569,
                                    10702,
                                    10223,
                                    10575,
                                    24485,
                                    12828,
                                    20228,
                                    11740,
                                    11350,
                                    15787,
                                    12331,
                                    11897,
                                    11918,
                                    5419,
                                    11540,
                                    10408,
                                    10647,
                                    10595,
                                    9036,
                                    11470,
                                    11221,
                                    15296,
                                    19651,
                                    11423,
                                    10007,
                                    9515,
                                    38820,
                                    10686,
                                    10398,
                                    23090,
                                    11000,
                                    9523,
                                    9228,
                                    10795,
                                    11570,
                                    25015,
                                    16290,
                                    41501,
                                    23156,
                                    27076,
                                    9705,
                                    16633,
                                    39615,
                                    25068,
                                    11360,
                                    10211,
                                    14392,
                                    9340,
                                    16150,
                                    8181,
                                    51944,
                                    8740,
                                    17771,
                                    10974,
                                    24164,
                                    8383,
                                    11886,
                                    6533,
                                    11492,
                                    10738,
                                    11183,
                                    11084,
                                    10903,
                                    10390,
                                    9487,
                                    10620,
                                    8266,
                                    15542,
                                    11094,
                                    17072,
                                    33639,
                                    33150,
                                    12483,
                                    10196,
                                    29392,
                                    24209,
                                    18940,
                                    30223,
                                    25634,
                                    20366,
                                    6509,
                                    14943,
                                    10926,
                                    10030,
                                    9480,
                                    10221,
                                    15497,
                                    6424,
                                    12117,
                                    25062,
                                    13167,
                                    9658,
                                    9925,
                                    19563,
                                    62188,
                                    21058,
                                    14014,
                                    57943,
                                    19077,
                                    25315,
                                    15032,
                                    12432,
                                    13616,
                                    14913,
                                    20394,
                                    17053,
                                    26546,
                                    10478,
                                    10214,
                                    21465,
                                    18236,
                                    14091,
                                    11012,
                                    11873,
                                    12159,
                                    33008,
                                    14540,
                                    14730,
                                    20518,
                                    13484,
                                    12526,
                                    4889,
                                    10978,
                                    11327,
                                    11275,
                                    11315,
                                    37227,
                                    15152,
                                    12142,
                                    30949,
                                    13920,
                                    6760,
                                    13238,
                                    10143,
                                    11176,
                                    10785,
                                    12044,
                                    10015,
                                    11509,
                                    10305,
                                    9929,
                                    11989,
                                    11969,
                                    9381,
                                    19884,
                                    14021,
                                    9348,
                                    12366,
                                    6139,
                                    60031,
                                    5686,
                                    9360,
                                    11195,
                                    11103,
                                    17782,
                                    14637,
                                    10345,
                                    24660,
                                    10742,
                                    10857,
                                    9383,
                                    10755,
                                    11377,
                                    8993,
                                    11301,
                                    10398,
                                    8455,
                                    9976,
                                    13778,
                                    8067,
                                    31746,
                                    10800,
                                    10741,
                                    10798,
                                    37306,
                                    6794,
                                    15761,
                                    11289,
                                    11595,
                                    4846,
                                    20598,
                                    9148,
                                    10764,
                                    41269,
                                    10303,
                                    11103,
                                    17525,
                                    9367,
                                    22586,
                                    9782,
                                    10147,
                                    33394,
                                    28569,
                                    9935,
                                    9319,
                                    13227,
                                    30809,
                                    10949,
                                    11866,
                                    12566,
                                    10833,
                                    11049,
                                    10057,
                                    10110,
                                    10675,
                                    11593,
                                    12021,
                                    30957,
                                    4385,
                                    23884,
                                    21501,
                                    21241,
                                    19901,
                                    4683,
                                    9416,
                                    28303,
                                    12191,
                                    11174,
                                    9041,
                                    15090,
                                    19681,
                                    10345,
                                    9568,
                                    22790,
                                    20433,
                                    10896,
                                    11544,
                                    19006,
                                    7436,
                                    17652,
                                    10867,
                                    11300,
                                    14826,
                                    12256,
                                    18901,
                                    17356,
                                    22603,
                                    20761,
                                    15085,
                                    10008,
                                    10169,
                                    9754,
                                    12484,
                                    21462,
                                    10322,
                                    10221,
                                    21330,
                                    10370,
                                    9100,
                                    12219,
                                    9615,
                                    12862,
                                    11684,
                                    10562,
                                    30345,
                                    10522,
                                    11059,
                                    28976,
                                    8969,
                                    23416,
                                    4984,
                                    13203,
                                    11497,
                                    6010,
                                    12975,
                                    44056,
                                    10758,
                                    18000,
                                    16477,
                                    11233,
                                    19186,
                                    12322,
                                    12033,
                                    8707,
                                    11488,
                                    10317,
                                    14374,
                                    9960,
                                    10525,
                                    11512,
                                    11073,
                                    9890,
                                    11719,
                                    11539,
                                    10378,
                                    12021,
                                    20131,
                                    34812,
                                    16470,
                                    10299,
                                    14957,
                                    11583,
                                    12118,
                                    10190,
                                    11986,
                                    5592,
                                    10248,
                                    11855,
                                    6832,
                                    9332,
                                    11067,
                                    4082,
                                    10369,
                                    9916,
                                    15017,
                                    12934,
                                    9081,
                                    10595,
                                    10432,
                                    11759,
                                    10559,
                                    11043,
                                    8917,
                                    21134,
                                    9891,
                                    9176,
                                    16130,
                                    12942,
                                    13627,
                                    18725,
                                    10904,
                                    9808,
                                    10271,
                                    10536,
                                    10638,
                                    13854,
                                    10695,
                                    11433,
                                    39161,
                                    11455,
                                    18960,
                                    11107,
                                    10703,
                                    12723,
                                    9257,
                                    11431,
                                    11105,
                                    10333,
                                    10313,
                                    11585,
                                    10344,
                                    11084,
                                    21966,
                                    8377,
                                    10323,
                                    8185,
                                    14299,
                                    10609,
                                    10551,
                                    16646,
                                    11337,
                                    10546,
                                    10707,
                                    26303,
                                    12953,
                                    9294,
                                    11267,
                                    39151,
                                    8228,
                                    10602,
                                    11245,
                                    10260,
                                    10439,
                                    9924,
                                    10518,
                                    10226,
                                    13153,
                                    9727,
                                    10631,
                                    10293,
                                    4908,
                                    11351,
                                    11699,
                                    13297,
                                    7873,
                                    10887,
                                    13199,
                                    39299,
                                    10164,
                                    28920,
                                    11162,
                                    21162,
                                    10873,
                                    5283,
                                    9938,
                                    13808,
                                    5140,
                                    10517,
                                    12483,
                                    9389,
                                    23219,
                                    19894,
                                    16043,
                                    11175,
                                    14779,
                                    11053,
                                    10940,
                                    39710,
                                    10974,
                                    12795,
                                    10458,
                                    29754,
                                    19573,
                                    11346,
                                    10526,
                                    11079,
                                    10434,
                                    11672,
                                    6137,
                                    10845,
                                    18903,
                                    11224,
                                    10704,
                                    12516,
                                    10495,
                                    11055,
                                    10604,
                                    9788,
                                    10452,
                                    10533,
                                    4945,
                                    9983,
                                    11643,
                                    9712,
                                    10519,
                                    13844,
                                    10913,
                                    14131,
                                    10514,
                                    14742,
                                    33770,
                                    8857,
                                    13931,
                                    10485,
                                    20982,
                                    10189,
                                    10240,
                                    11140,
                                    12490,
                                    10792,
                                    10299,
                                    28767,
                                    10669,
                                    13604,
                                    6395,
                                    10977,
                                    39186,
                                    10903,
                                    61691,
                                    10745,
                                    18824,
                                    10159,
                                    12396,
                                    11054,
                                    10595,
                                    20240,
                                    9738,
                                    10219,
                                    21439,
                                    41329,
                                    10739,
                                    10896,
                                    4868,
                                    52815,
                                    10708,
                                    38900,
                                    9872,
                                    9994,
                                    13546,
                                    8304,
                                    10149,
                                    10501,
                                    14794,
                                    9865,
                                    24487,
                                    10105,
                                    10997,
                                    10480,
                                    8867,
                                    15620,
                                    4849,
                                    14141,
                                    21448,
                                    44760,
                                    24356,
                                    10123,
                                    10512,
                                    32705,
                                    10711,
                                    14130,
                                    10830,
                                    26961,
                                    13539,
                                    10216,
                                    12642,
                                    10823,
                                    11040,
                                    13619,
                                    10147,
                                    10247,
                                    11415,
                                    30393,
                                    10969,
                                    11854,
                                    7609,
                                    46668,
                                    22548,
                                    7873,
                                    62534,
                                    10747,
                                    10471,
                                    11411,
                                    14595,
                                    10810,
                                    26857,
                                    11315,
                                    10359,
                                    13682,
                                    19665,
                                    19345,
                                    27815,
                                    14945,
                                    20679,
                                    31038,
                                    13784,
                                    15296,
                                    10509,
                                    10744,
                                    22472,
                                    10520,
                                    11555,
                                    10757,
                                    27673,
                                    14992,
                                    14989,
                                    27100,
                                    10319,
                                    27530,
                                    7593,
                                    15409,
                                    11668,
                                    10774,
                                    17530,
                                    11036,
                                    8222,
                                    10799,
                                    20249,
                                    10742,
                                    20896,
                                    13897,
                                    38765,
                                    18303,
                                    9745,
                                    71755,
                                    12680,
                                    11783,
                                    5892,
                                    22802,
                                    8486,
                                    23485,
                                    11273,
                                    24528,
                                    12647,
                                    27395,
                                    18613,
                                    19047,
                                    25991,
                                    6369,
                                    22035,
                                    11269,
                                    4850,
                                    11819,
                                    23594,
                                    10413,
                                    10210,
                                    38584,
                                    10776,
                                    11590,
                                    26886,
                                    12407,
                                    15941,
                                    10203,
                                    10543,
                                    16827,
                                    10406,
                                    10801,
                                    16961,
                                    25091,
                                    26117,
                                    4995,
                                    10669,
                                    4570,
                                    10934,
                                    5509,
                                    12342,
                                    11069,
                                    11221,
                                    18032,
                                    10606,
                                    10294,
                                    10794,
                                    10149,
                                    23535,
                                    11605,
                                    11509,
                                    10267,
                                    10945,
                                    10808,
                                    10208,
                                    12462,
                                    9539,
                                    10996,
                                    13746,
                                    11135,
                                    10701,
                                    22650,
                                    10277,
                                    9871,
                                    22744,
                                    23044,
                                    33427,
                                    3378,
                                    9747,
                                    8703,
                                    7656,
                                    9463,
                                    10656,
                                    11297,
                                    15888,
                                    14886,
                                    11302,
                                    38639,
                                    10594,
                                    10537,
                                    14643,
                                    57349,
                                    14269,
                                    11499,
                                    10223,
                                    15088,
                                    28919,
                                    23684,
                                    13888,
                                    13690,
                                    26912,
                                    12774,
                                    11234,
                                    26520,
                                    10459,
                                    11919,
                                    8800,
                                    9204,
                                    10845,
                                    18581,
                                    12632,
                                    10618,
                                    11108,
                                    10805,
                                    24695,
                                    11472,
                                    10718,
                                    10299,
                                    55165,
                                    12039,
                                    11745,
                                    12596,
                                    12705,
                                    36938,
                                    10675,
                                    25627,
                                    10441,
                                    10320,
                                    11116,
                                    32508,
                                    10810,
                                    18654,
                                    23086,
                                    16685,
                                    8342,
                                    11231,
                                    10819,
                                    11306,
                                    10918,
                                    16246,
                                    10979,
                                    10863,
                                    11223,
                                    8547,
                                    12869,
                                    10174,
                                    26564,
                                    10143,
                                    16311,
                                    10658,
                                    10181,
                                    12059,
                                    9562,
                                    32135,
                                    9438,
                                    29761,
                                    26396,
                                    16018,
                                    16535,
                                    46584,
                                    14336,
                                    9155,
                                    21595,
                                    27259,
                                    11287,
                                    7579,
                                    38688,
                                    46567,
                                    6178,
                                    8256,
                                    31900,
                                    12278,
                                    19151,
                                    10862,
                                    3608,
                                    15766,
                                    12738,
                                    15914,
                                    42111,
                                    10020,
                                    36021,
                                    10692,
                                    6690,
                                    9883,
                                    15079,
                                    12033,
                                    9900,
                                    22825,
                                    11361,
                                    11951,
                                    37286,
                                    11418,
                                    10924,
                                    11337,
                                    9619,
                                    10213,
                                    10856,
                                    11048,
                                    10842,
                                    12414,
                                    10325,
                                    16869,
                                    11143,
                                    25523,
                                    9572,
                                    8037,
                                    9731,
                                    10596,
                                    14328,
                                    10393,
                                    41055,
                                    20795,
                                    14812,
                                    29254,
                                    9532,
                                    9682,
                                    22098,
                                    10576,
                                    14922,
                                    27530,
                                    22068,
                                    44823,
                                    62466,
                                    15851,
                                    17035,
                                    13790,
                                    32455,
                                    9763,
                                    22771,
                                    20480,
                                    5260,
                                    10708,
                                    36714,
                                    21263,
                                    35770,
                                    11534,
                                    5466,
                                    21040,
                                    12474,
                                    25403,
                                    12246,
                                    12780,
                                    19804,
                                    14025,
                                    22915,
                                    11714,
                                    10546,
                                    10914,
                                    4907,
                                    25442,
                                    21807,
                                    11633,
                                    9574,
                                    11884,
                                    20814,
                                    10725,
                                    15213,
                                    21476,
                                    24079,
                                    34650,
                                    11473,
                                    14708,
                                    11460,
                                    14527,
                                    12063,
                                    11321,
                                    10635,
                                    38457,
                                    9976,
                                    11387,
                                    12442,
                                    9942,
                                    11507,
                                    21903,
                                    14923,
                                    12090,
                                    12044,
                                    13137,
                                    23724,
                                    16638,
                                    12050,
                                    23906,
                                    12763,
                                    10095,
                                    10450,
                                    16574,
                                    7953,
                                    23314,
                                    46235,
                                    10924,
                                    10452,
                                    11349,
                                    49136,
                                    8569,
                                    28080,
                                    12395,
                                    31054,
                                    17199,
                                    10749,
                                    12401,
                                    23741,
                                    9983,
                                    10240,
                                    14952,
                                    18745,
                                    10093,
                                    15763,
                                    15947,
                                    22766,
                                    9734,
                                    11323,
                                    9103,
                                    8183,
                                    10813,
                                    11526,
                                    31744,
                                    37984,
                                    10665,
                                    18484,
                                    10234,
                                    28322,
                                    24927,
                                    12733,
                                    11218,
                                    26552,
                                    11835,
                                    19255,
                                    13685,
                                    18189,
                                    14281,
                                    11213,
                                    12967,
                                    12791,
                                    13413,
                                    23402,
                                    14537,
                                    13631,
                                    13160,
                                    14190,
                                    13652,
                                    11060,
                                    11685,
                                    9787,
                                    11534,
                                    14020,
                                    10163,
                                    11664,
                                    11130,
                                    11526,
                                    11963,
                                    11541,
                                    36500,
                                    31777,
                                    11087,
                                    5208,
                                    10415,
                                    11008,
                                    17780,
                                    13966,
                                    11527,
                                    12402,
                                    9959,
                                    15587,
                                    11744,
                                    11524,
                                    10972,
                                    9728,
                                    6301,
                                    11682,
                                    11987,
                                    10687,
                                    11419,
                                    10401,
                                    11515,
                                    11320,
                                    10253,
                                    9305,
                                    11693,
                                    10882,
                                    11733,
                                    22243,
                                    10735,
                                    29551,
                                    12129,
                                    7360,
                                    16884,
                                    43866,
                                    16754,
                                    22618,
                                    10169,
                                    10098,
                                    31603,
                                    17397
                                ]
                            }
                        ]
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jeff20628m",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/24.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-02-22 07:36:12",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jeff20628m",
                "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-18T05:43:08.108302Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~babit13/7.embed",
            "fid": "babit13:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/babit13:7/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/babit13/7/2_UYCMUAT5JSRV43V00CXF0VLHZZWUEO.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/babit13/7/8_O74RZ87WUHKX0L5MINL12DJTHG0UJV.png",
                "list-thumb": "https://api.plotly.com/v2/files/babit13:7/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/babit13:7",
                "plots": "https://api.plotly.com/v2/plots/babit13:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=babit13"
            },
            "owner": "babit13",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 19,
            "web_url": "https://chart-studio.plotly.com/~babit13/7/",
            "world_readable": true,
            "date_modified": "2019-06-18T05:43:08.126Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~babit13/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255, 153, 51, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "1982",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:6:f010b1",
                        "ysrc": "babit13:6:b26682"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(55, 128, 191, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "1983",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:6:f010b1",
                        "ysrc": "babit13:6:194253"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(50, 171, 96, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "1984",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:6:f010b1",
                        "ysrc": "babit13:6:65d012"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(128, 0, 128, 1.0)",
                            "shape": "linear",
                            "width": 1.3
                        },
                        "mode": "lines",
                        "name": "1985",
                        "text": "",
                        "type": "scatter",
                        "xsrc": "babit13:6:f010b1",
                        "ysrc": "babit13:6:8c3472"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "text": "Year wise Trend"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            11
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            12719.900000000001,
                            17605.899999999998
                        ],
                        "title": {
                            "font": {
                                "color": "#4D5663"
                            },
                            "text": ""
                        },
                        "showgrid": true,
                        "tickfont": {
                            "color": "#4D5663"
                        },
                        "autorange": true,
                        "gridcolor": "#E1E5ED",
                        "zerolinecolor": "#E1E5ED"
                    },
                    "legend": {
                        "font": {
                            "color": "#4D5663"
                        },
                        "bgcolor": "#F5F6F9"
                    },
                    "autosize": true,
                    "plot_bgcolor": "#F5F6F9",
                    "paper_bgcolor": "#F5F6F9"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~babit13",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/67.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-18 05:17:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "babit13",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}