{
  "openapi": "3.0.3",
  "info": {
    "description": "Sportmicro is happy to have you here! Thanks for visiting our tennis documentation. You will learn all there is to know about Sportmicro' Tennis API right here.",
    "title": "Sportmicro",
    "version": "1.0.0",
    "termsOfService": "https://sportmicro.com/terms",
    "contact": {
      "name": "Sportmicro Support",
      "email": "support@sportmicro.com",
      "url": "https://sportmicro.com/contact"
    },
    "x-logo": {
      "url": "https://sportmicro.com/png/icons/tennis.png",
      "altText": "Sportmicro tennis logo"
    },
    "license": {
      "name": "MIT",
      "url": "https://opensource.org/licenses/MIT"
    }
  },
  "paths": {
    "/matches-statistics": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Statistics",
        "description": "This endpoint allows you to retrieve the statistics from matches.\n\nTypes of the statistics:\n**Drop shot**, **Second serve**, **First serve return points**, **Second serve return points**, **Total won**, **Forehand**, **Lob**, **Receiver points won**, **Tiebreaks**, **Total**, **Return**, **Max games in a row**, **First serve points**, **Break points converted**, **Backhand**, **Service games won**, **Second serve points**, **First serve**, **Overhead**, **Service games played**, **Overhead stroke**, **Service points won**, **Groundstroke**, **Aces**, **Volley**, **Break points saved**, **Max points in a row**, **Return games played**, **Double faults**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet statistics from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-statistics?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-statistics.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-statistics"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 1,
                      "statistics": [
                        {
                          "type": "Aces",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "2",
                          "home_team": "1"
                        },
                        {
                          "type": "Aces",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "3",
                          "home_team": "1"
                        },
                        {
                          "type": "Aces",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "2",
                          "home_team": "2"
                        },
                        {
                          "type": "Aces",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "7",
                          "home_team": "4"
                        },
                        {
                          "type": "Backhand",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "12",
                          "home_team": "9"
                        },
                        {
                          "type": "Backhand",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "10",
                          "home_team": "8"
                        },
                        {
                          "type": "Backhand",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "7",
                          "home_team": "7"
                        },
                        {
                          "type": "Break points converted",
                          "period": "1ST",
                          "category": "Return",
                          "away_team": "0",
                          "home_team": "1"
                        },
                        {
                          "type": "Break points converted",
                          "period": "2ND",
                          "category": "Return",
                          "away_team": "0",
                          "home_team": "1"
                        },
                        {
                          "type": "Break points converted",
                          "period": "3RD",
                          "category": "Return",
                          "away_team": "2",
                          "home_team": "3"
                        },
                        {
                          "type": "Break points converted",
                          "period": "ALL",
                          "category": "Return",
                          "away_team": "2",
                          "home_team": "5"
                        },
                        {
                          "type": "Break points saved",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "0/1 (0%)",
                          "home_team": "3/3 (100%)"
                        },
                        {
                          "type": "Break points saved",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "1/2 (50%)",
                          "home_team": "0/0 (0%)"
                        },
                        {
                          "type": "Break points saved",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "0/3 (0%)",
                          "home_team": "2/4 (50%)"
                        },
                        {
                          "type": "Break points saved",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "1/6 (16%)",
                          "home_team": "5/7 (71%)"
                        },
                        {
                          "type": "Double faults",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Double faults",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "1",
                          "home_team": "0"
                        },
                        {
                          "type": "Double faults",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "1",
                          "home_team": "0"
                        },
                        {
                          "type": "Double faults",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "2",
                          "home_team": "0"
                        },
                        {
                          "type": "Drop shot",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Drop shot",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "First serve",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "16/27 (59%)",
                          "home_team": "19/29 (66%)"
                        },
                        {
                          "type": "First serve",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "16/25 (64%)",
                          "home_team": "16/23 (70%)"
                        },
                        {
                          "type": "First serve",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "20/36 (56%)",
                          "home_team": "25/37 (68%)"
                        },
                        {
                          "type": "First serve",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "52/88 (59%)",
                          "home_team": "60/89 (67%)"
                        },
                        {
                          "type": "First serve points",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "13/16 (81%)",
                          "home_team": "16/19 (84%)"
                        },
                        {
                          "type": "First serve points",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "12/16 (75%)",
                          "home_team": "14/16 (88%)"
                        },
                        {
                          "type": "First serve points",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "12/20 (60%)",
                          "home_team": "15/25 (60%)"
                        },
                        {
                          "type": "First serve points",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "37/52 (71%)",
                          "home_team": "45/60 (75%)"
                        },
                        {
                          "type": "First serve return points",
                          "period": "1ST",
                          "category": "Return",
                          "away_team": "3/19 (15%)",
                          "home_team": "3/16 (18%)"
                        },
                        {
                          "type": "First serve return points",
                          "period": "2ND",
                          "category": "Return",
                          "away_team": "2/16 (12%)",
                          "home_team": "4/16 (25%)"
                        },
                        {
                          "type": "First serve return points",
                          "period": "3RD",
                          "category": "Return",
                          "away_team": "10/25 (40%)",
                          "home_team": "8/20 (40%)"
                        },
                        {
                          "type": "First serve return points",
                          "period": "ALL",
                          "category": "Return",
                          "away_team": "15/60 (25%)",
                          "home_team": "15/52 (28%)"
                        },
                        {
                          "type": "Forehand",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "15",
                          "home_team": "9"
                        },
                        {
                          "type": "Forehand",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "24",
                          "home_team": "9"
                        },
                        {
                          "type": "Forehand",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "21",
                          "home_team": "23"
                        },
                        {
                          "type": "Groundstroke",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "27",
                          "home_team": "18"
                        },
                        {
                          "type": "Groundstroke",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "33",
                          "home_team": "15"
                        },
                        {
                          "type": "Groundstroke",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "27",
                          "home_team": "28"
                        },
                        {
                          "type": "Lob",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "1",
                          "home_team": "1"
                        },
                        {
                          "type": "Lob",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Max games in a row",
                          "period": "1ST",
                          "category": "Games",
                          "away_team": "1",
                          "home_team": "2"
                        },
                        {
                          "type": "Max games in a row",
                          "period": "2ND",
                          "category": "Games",
                          "away_team": "1",
                          "home_team": "3"
                        },
                        {
                          "type": "Max games in a row",
                          "period": "3RD",
                          "category": "Games",
                          "away_team": "4",
                          "home_team": "5"
                        },
                        {
                          "type": "Max games in a row",
                          "period": "ALL",
                          "category": "Games",
                          "away_team": "4",
                          "home_team": "5"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "5",
                          "home_team": "5"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "5",
                          "home_team": "6"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "5",
                          "home_team": "7"
                        },
                        {
                          "type": "Max points in a row",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "5",
                          "home_team": "7"
                        },
                        {
                          "type": "Overhead",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "1",
                          "home_team": "1"
                        },
                        {
                          "type": "Overhead stroke",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "7",
                          "home_team": "10"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "3",
                          "home_team": "9"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "14",
                          "home_team": "17"
                        },
                        {
                          "type": "Receiver points won",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "24",
                          "home_team": "36"
                        },
                        {
                          "type": "Return",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Return",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Return games played",
                          "period": "1ST",
                          "category": "Return",
                          "away_team": "5",
                          "home_team": "5"
                        },
                        {
                          "type": "Return games played",
                          "period": "2ND",
                          "category": "Return",
                          "away_team": "5",
                          "home_team": "4"
                        },
                        {
                          "type": "Return games played",
                          "period": "3RD",
                          "category": "Return",
                          "away_team": "6",
                          "home_team": "6"
                        },
                        {
                          "type": "Return games played",
                          "period": "ALL",
                          "category": "Return",
                          "away_team": "16",
                          "home_team": "15"
                        },
                        {
                          "type": "Second serve",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "11/11 (100%)",
                          "home_team": "10/10 (100%)"
                        },
                        {
                          "type": "Second serve",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "8/9 (89%)",
                          "home_team": "7/7 (100%)"
                        },
                        {
                          "type": "Second serve",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "15/16 (94%)",
                          "home_team": "12/12 (100%)"
                        },
                        {
                          "type": "Second serve",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "34/36 (94%)",
                          "home_team": "29/29 (100%)"
                        },
                        {
                          "type": "Second serve points",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "4/11 (36%)",
                          "home_team": "6/10 (60%)"
                        },
                        {
                          "type": "Second serve points",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "4/9 (44%)",
                          "home_team": "6/7 (86%)"
                        },
                        {
                          "type": "Second serve points",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "7/16 (44%)",
                          "home_team": "8/12 (67%)"
                        },
                        {
                          "type": "Second serve points",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "15/36 (42%)",
                          "home_team": "20/29 (69%)"
                        },
                        {
                          "type": "Second serve return points",
                          "period": "1ST",
                          "category": "Return",
                          "away_team": "4/10 (40%)",
                          "home_team": "7/11 (63%)"
                        },
                        {
                          "type": "Second serve return points",
                          "period": "2ND",
                          "category": "Return",
                          "away_team": "1/7 (14%)",
                          "home_team": "5/9 (55%)"
                        },
                        {
                          "type": "Second serve return points",
                          "period": "3RD",
                          "category": "Return",
                          "away_team": "4/12 (33%)",
                          "home_team": "9/16 (56%)"
                        },
                        {
                          "type": "Second serve return points",
                          "period": "ALL",
                          "category": "Return",
                          "away_team": "9/29 (31%)",
                          "home_team": "21/36 (58%)"
                        },
                        {
                          "type": "Service games played",
                          "period": "1ST",
                          "category": "Service",
                          "away_team": "5",
                          "home_team": "5"
                        },
                        {
                          "type": "Service games played",
                          "period": "2ND",
                          "category": "Service",
                          "away_team": "4",
                          "home_team": "5"
                        },
                        {
                          "type": "Service games played",
                          "period": "3RD",
                          "category": "Service",
                          "away_team": "6",
                          "home_team": "6"
                        },
                        {
                          "type": "Service games played",
                          "period": "ALL",
                          "category": "Service",
                          "away_team": "15",
                          "home_team": "16"
                        },
                        {
                          "type": "Service games won",
                          "period": "ALL",
                          "category": "Games",
                          "away_team": "10",
                          "home_team": "14"
                        },
                        {
                          "type": "Service points won",
                          "period": "1ST",
                          "category": "Points",
                          "away_team": "17",
                          "home_team": "22"
                        },
                        {
                          "type": "Service points won",
                          "period": "2ND",
                          "category": "Points",
                          "away_team": "16",
                          "home_team": "20"
                        },
                        {
                          "type": "Service points won",
                          "period": "3RD",
                          "category": "Points",
                          "away_team": "19",
                          "home_team": "23"
                        },
                        {
                          "type": "Service points won",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "52",
                          "home_team": "65"
                        },
                        {
                          "type": "Tiebreaks",
                          "period": "1ST",
                          "category": "Miscellaneous",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Tiebreaks",
                          "period": "2ND",
                          "category": "Miscellaneous",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Tiebreaks",
                          "period": "3RD",
                          "category": "Miscellaneous",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Tiebreaks",
                          "period": "ALL",
                          "category": "Miscellaneous",
                          "away_team": "0",
                          "home_team": "0"
                        },
                        {
                          "type": "Total",
                          "period": "ALL",
                          "category": "Errors",
                          "away_team": "27",
                          "home_team": "18"
                        },
                        {
                          "type": "Total",
                          "period": "ALL",
                          "category": "Points",
                          "away_team": "76",
                          "home_team": "101"
                        },
                        {
                          "type": "Total",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "36",
                          "home_team": "17"
                        },
                        {
                          "type": "Total",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "36",
                          "home_team": "35"
                        },
                        {
                          "type": "Total won",
                          "period": "ALL",
                          "category": "Games",
                          "away_team": "12",
                          "home_team": "19"
                        },
                        {
                          "type": "Volley",
                          "period": "ALL",
                          "category": "Unforced errors",
                          "away_team": "0",
                          "home_team": "1"
                        },
                        {
                          "type": "Volley",
                          "period": "ALL",
                          "category": "Winners",
                          "away_team": "1",
                          "home_team": "2"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Statistics"
      }
    },
    "/matches-powers": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Powers",
        "description": "This endpoint allows you to retrieve the powers from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet powers from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-powers?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-powers.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-powers"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 1,
                      "set": 1,
                      "games": [
                        {
                          "game": 1,
                          "value": 29,
                          "break_occurred": false
                        },
                        {
                          "game": 2,
                          "value": -10,
                          "break_occurred": false
                        },
                        {
                          "game": 3,
                          "value": 10,
                          "break_occurred": false
                        },
                        {
                          "game": 4,
                          "value": -12,
                          "break_occurred": false
                        },
                        {
                          "game": 5,
                          "value": 53,
                          "break_occurred": false
                        },
                        {
                          "game": 6,
                          "value": -45.4,
                          "break_occurred": false
                        },
                        {
                          "game": 7,
                          "value": 10,
                          "break_occurred": false
                        },
                        {
                          "game": 8,
                          "value": -14,
                          "break_occurred": false
                        },
                        {
                          "game": 9,
                          "value": 54,
                          "break_occurred": false
                        },
                        {
                          "game": 10,
                          "value": 65,
                          "break_occurred": true
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Powers"
      }
    },
    "/teams": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams",
        "description": "This endpoint allows you to retrieve the teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the team by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet teams<br />`https://tennis.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://tennis.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://tennis.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://tennis.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://tennis.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://tennis.sportmicro.com/teams?primary_league_id=eq.{primary_league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.country_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.class_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.tournament_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.teams.primary_league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 366107,
                      "name": "K. Coppez / F. Navarro M",
                      "short_name": "Coppez K / Navarro M F",
                      "full_name": "K. Coppez / F. Navarro M",
                      "gender": "F",
                      "name_code": "K/F",
                      "national": false,
                      "type": 2,
                      "color_primary": "#374df5",
                      "color_secondary": "#374df5",
                      "color_text": "#ffffff",
                      "hash_image": "4f31bbdf1379d329b29f89324fa2eb2b180ff77a77df09904f52e49afb6ab0ba",
                      "sub_teams": [
                        169535,
                        105381
                      ],
                      "class_id": 166,
                      "class_name": "ITF Women",
                      "class_hash_image": "cb4abcc53b652d7b628fb7455db4bf2791f50695da98ca6d0f02d8f9bbe26283"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams"
      }
    },
    "/leagues-by-class": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues By Class",
        "description": "This endpoint allows you to retrieve the leagues from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **class_id**<br />`https://tennis.sportmicro.com/leagues-by-category?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues-by-class.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues-by-class"
                  },
                  "type": "array",
                  "example": [
                    {
                      "class_id": 28,
                      "class_name": "Challenger",
                      "class_hash_image": "96ae6b1996feda3127c70abd756b5612bb35a4e69ecbee3b1c538fc0f861b13c",
                      "leagues": [
                        {
                          "id": 46,
                          "name": "Canberra - Australia",
                          "hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab"
                        },
                        {
                          "id": 10246,
                          "name": "Francavilla - Italy",
                          "hash_image": "943634fe18c81103ae84914d55ecf8adbd5ae61b27aa4b48ef0a6a69cf019509"
                        },
                        {
                          "id": 11353,
                          "name": "Savannah - USA",
                          "hash_image": "45e1dae127a27ff3e8d87fda4097151e5ddf572a5a5e39961e9b19a5ea972103"
                        },
                        {
                          "id": 11995,
                          "name": "Shymkent II - Kazakhstan",
                          "hash_image": "e4323c2adf926e501000f21e20414ac723a3ee54b76156dfa95f2fe17771d0f9"
                        },
                        {
                          "id": 12382,
                          "name": "Shymkent II - Kazakhstan - Doubles",
                          "hash_image": "0f0eb990c764e144cbd7a19ccb8899344816b98582cd3fff5e18c45ccc4e0b6b"
                        },
                        {
                          "id": 13046,
                          "name": "Rome - Italy - Doubles",
                          "hash_image": "a89221ce32dbb391a32281acd5f181f4b57bd2e4157a06b36d6c72bb0a51e011"
                        },
                        {
                          "id": 13120,
                          "name": "Shymkent - Kazakhstan - Doubles",
                          "hash_image": "1547959223db37e1251c6b9a902f22e45ae93b3c34beff44c91059476dd7a3d6"
                        },
                        {
                          "id": 13147,
                          "name": "Ostrava - Czech Republic - Doubles",
                          "hash_image": "5b925122eb36e428d12627b7e2586c0809b2dc5578a6651b811c207492c3cfa7"
                        },
                        {
                          "id": 14161,
                          "name": "Grodzisk Mazowiecki - Poland - Doubles",
                          "hash_image": "3804e90b990d82d58f56987eed1f068fd96bd2f338bc8cd5853d4ed4361446e5"
                        },
                        {
                          "id": 14172,
                          "name": "Santa Cruz - Bolivia",
                          "hash_image": "69b88dd0a2c0c3bd73e9b0872a188e5b595603f21a0e9ccf8abfea1c0fac6231"
                        },
                        {
                          "id": 14197,
                          "name": "Tallahassee - USA",
                          "hash_image": "11fc05afa9460df4bfd3ea6efe3d9d8c3365b14878f7ca62b6b3a11667aad433"
                        },
                        {
                          "id": 14201,
                          "name": "Kobe - Japan",
                          "hash_image": "7cebed668d26c4bac7525ee779e77f2cdd973a2a3220473d0380e367f4407165"
                        },
                        {
                          "id": 14261,
                          "name": "Orleans - France",
                          "hash_image": "5779d636d2ed5da5d4f5f24395715c8a830dec98729e8fb413eb2b9db09ad391"
                        },
                        {
                          "id": 14268,
                          "name": "Charleston - SC - USA",
                          "hash_image": "2388c0e2242136e5c0965d8fbbb53e80e40818b6656700fa9cc0cb2baae2b01f"
                        },
                        {
                          "id": 14288,
                          "name": "Antofagasta - Chile",
                          "hash_image": "90b56c20d4b17c573015066e21e6b9234c33835626abc941a49de6c6c7cdfeb7"
                        },
                        {
                          "id": 14305,
                          "name": "Koblenz - Germany - Doubles",
                          "hash_image": "d6229984dc5ac711d84323b23a49f49485db8b84e5a606ec15c61c3c3f32171e"
                        },
                        {
                          "id": 14330,
                          "name": "Tenerife 2 - Spain",
                          "hash_image": "399c101a51f79b245e21c4351b7fb28b22218139ea405de8cea9af840b5d98fe"
                        },
                        {
                          "id": 14795,
                          "name": "Aix en Provence - France",
                          "hash_image": "ad1c182925c7858748ab7d67c0689b741b2b221b2c8980e40d22d43262bbd859"
                        },
                        {
                          "id": 14798,
                          "name": "Mauthausen - Austria",
                          "hash_image": "c32dc6e61a5daf35531a3edfa04d604464daae392438d6ff11dcd660be081045"
                        },
                        {
                          "id": 14802,
                          "name": "Ostrava - Czech Republic",
                          "hash_image": "44d4224fd447a23cab2a66e72b495876db3b116057668afab6a18015d90f16ae"
                        },
                        {
                          "id": 14821,
                          "name": "San Miguel de Tucuman - Argentina",
                          "hash_image": "ed04aa7ca7e92315f2714444d8a0d0d865eaa9647b4ac068e54f2c61735affc8"
                        },
                        {
                          "id": 14822,
                          "name": "Rome - Italy",
                          "hash_image": "85983dce5eb3dfd88ac049d2268a59aae8f429da6caea085fc7fca626b65915a"
                        },
                        {
                          "id": 14823,
                          "name": "Abidjan 2 - Cote d'Ivoire - Doubles",
                          "hash_image": "c7d02207d1644ebe5ef941800789135281887a4f7f3468d811ade96db64bcc85"
                        },
                        {
                          "id": 15076,
                          "name": "Kigali 2 - Rwanda",
                          "hash_image": "202b173e15842cea194285b99fa2917920c1e3584b49d179f1d6fc80eb4510ae"
                        },
                        {
                          "id": 15084,
                          "name": "Kigali 2 - Rwanda - Doubles",
                          "hash_image": "88bb28a3e9d6b68bc2fb9bd8652cb9ed5a4213212b35d2bd09f40be8a8d23942"
                        },
                        {
                          "id": 15228,
                          "name": "ATP Challenger Manama 2 - Bahrain Men Singles",
                          "hash_image": "33af8ae1c240f336ed0d28fc407a62a7f0ecd20976a490232a310f19370d025b"
                        },
                        {
                          "id": 15232,
                          "name": "Bergamo - Italy - Doubles",
                          "hash_image": "d67f856df20f1d79677b62797aa36c091a831e67cf19919f88357a05df0f1d27"
                        },
                        {
                          "id": 15293,
                          "name": "Kigali 1 - Rwanda - Doubles",
                          "hash_image": "946c8a8deb9b43571b1f74921e85a1bff712ee49ad0d7677d9ea13a1b9e79622"
                        },
                        {
                          "id": 15335,
                          "name": "Gwangju - South Korea",
                          "hash_image": "4d286e2d719487a9be994514b26ca0ee34be077dd63379e55186be986ff95b63"
                        },
                        {
                          "id": 15387,
                          "name": "Champaign - USA",
                          "hash_image": "db73cc1bae051e8f27109fd34b791a1d1425beb81f3a4b868e51fdf4eddd22af"
                        },
                        {
                          "id": 15417,
                          "name": "Punta del Este - Uruguay",
                          "hash_image": "9cef292a9aeea6d7a1bbea25be122f3b0efed86323d12793f3125c4a72a9e7a7"
                        },
                        {
                          "id": 15538,
                          "name": "Nonthaburi 3 - Thailand",
                          "hash_image": "d74194883fb7ec27e8d0d0cd3bb5d30a619e6f7094a1b1a3eac3a2efbfced3e0"
                        },
                        {
                          "id": 15580,
                          "name": "Curitiba - Brazil",
                          "hash_image": "1cb900964e451b299a129d850348e4d84d93c9ebb89a0a4d759a0389a66d77c3"
                        },
                        {
                          "id": 15607,
                          "name": "ATP Challenger Sioux Falls - USA Men Singles",
                          "hash_image": "1caf45529cf74978821d94af06e732c12a553602c6df04abeb534676d1eadcc9"
                        },
                        {
                          "id": 15954,
                          "name": "ATP Challenger Jingshan - China - Men Singles",
                          "hash_image": "004f7a03a71145427f1815d4ae441f5dff6ce10afd15dfd93d98791d9bdeefe4"
                        },
                        {
                          "id": 16174,
                          "name": "Savannah - USA - Doubles",
                          "hash_image": "cac8044555af6fd33f5d13a9e3223189e10a865fabf24b0ce1dfc450ef9f7cc8"
                        },
                        {
                          "id": 16250,
                          "name": "Bad Waltersdorf - Austria",
                          "hash_image": "fbc5f36a93f7c379899de0f72b93876a7149377935f610a01569cb8db0ea31a7"
                        },
                        {
                          "id": 16486,
                          "name": "Genoa - Italy",
                          "hash_image": "f914db70a2bdeee9d67a731877543de2656995fa24a75925f694f620ae6dfdf8"
                        },
                        {
                          "id": 16881,
                          "name": "Barranquilla - Colombia",
                          "hash_image": "8b8460de1b6a53c8818d1ce27a4e9b2a96fa6071eaa46124dcff03f646b029d0"
                        },
                        {
                          "id": 16928,
                          "name": "ATP Challenger Hersonissos 4 - Greece Men Singles",
                          "hash_image": "777f57a08cec7e2f383449d08c55fa866fc8f15f0e6fd13066a01389d2d5e37e"
                        },
                        {
                          "id": 17233,
                          "name": "Aix en Provence - France - Doubles",
                          "hash_image": "fce0d32555ae7784f81e655b487850d62d831673f296d49a9c7c88a9d5826a8f"
                        },
                        {
                          "id": 17555,
                          "name": "Santiago 3 - Chile",
                          "hash_image": "a02f00d682e6702311d4b6d6c25eaa453a0c541daabb3af1462c90e331b1fab0"
                        },
                        {
                          "id": 17786,
                          "name": "Szekesfehervar - Hungary",
                          "hash_image": "552614b6e1254b53760e53e6240b8233321138904d92d488538c2fc20da40086"
                        },
                        {
                          "id": 17790,
                          "name": "Sibiu - Romania",
                          "hash_image": "8c45005175423351732e30c74aaf86dc0150d064eae6227ace113224d6ed5a54"
                        },
                        {
                          "id": 17928,
                          "name": "Cagliari - Italy",
                          "hash_image": "989b338188cf8195384ee4fb31f63aa2d47070905daededfd66ad0f7c3b06c7f"
                        },
                        {
                          "id": 17933,
                          "name": "Cagliari - Italy - Doubles",
                          "hash_image": "8e02c10982bfbb8a9b78c60f6e80640d26ee0c2c75197bb71da59daec9194ec6"
                        },
                        {
                          "id": 18059,
                          "name": "Drummondville - Canada",
                          "hash_image": "c7cf2d9771f4ddf3bfcf98509de77d45f4454d6b336f9c4be3c37880bdcaac26"
                        },
                        {
                          "id": 18331,
                          "name": "Nonthaburi - Thailand",
                          "hash_image": "dc13fb85e62dca4fcd8095bd3179da1b4b17e3ce9a4a0f79bbe1353aed70249a"
                        },
                        {
                          "id": 18378,
                          "name": "Liberec - Czech Republic",
                          "hash_image": "c11cc3acfc4e63224e3deb7134c0a86080b482d1a85849392a48634e2a755389"
                        },
                        {
                          "id": 18505,
                          "name": "Andria - Italy Men Singles",
                          "hash_image": "c20b354616e0ee8af734376e57489b76c076fcc0ba2ca2315f7ce56baa60533e"
                        },
                        {
                          "id": 18959,
                          "name": "Guangzhou - China - Doubles",
                          "hash_image": "9bc655f2e2ed9baa0eec21f6a10719fc4afd5c2f12d9cbffa4b737fbd4a615a9"
                        },
                        {
                          "id": 18981,
                          "name": "Bloomfield Hills - USA",
                          "hash_image": "65897fa0a320901390597ffaf331a6a26336da768584ee5033977b9a81d91ab9"
                        },
                        {
                          "id": 18990,
                          "name": "Taipei - Chinese Taipei Men Singles",
                          "hash_image": "c460b15978ab9039e23aeeb5ceeeab3759e6185b4c79d9863d6022ad24e23140"
                        },
                        {
                          "id": 20624,
                          "name": "ATP Challenger Phan Thiet - Vietnam Men Doubles",
                          "hash_image": "ce048ffe26c3ea7c7df74020aae89cdbdc367e2bdcd011329aeca6c6acb1ed89"
                        },
                        {
                          "id": 20914,
                          "name": "ATP Challenger Soma Bay - Egypt Men Doubles",
                          "hash_image": "e643a51848944e42a4aa71e18f018fb7d5bb6a28fc185d526f78d7bffcaaafad"
                        },
                        {
                          "id": 21097,
                          "name": "ATP Challenger Phan Thiet 2 - Vietnam Men Singles",
                          "hash_image": "6a30db267dd69eda838e5795c5f91def6708894f72c90f62550703e943c87a28"
                        },
                        {
                          "id": 21100,
                          "name": "ATP Challenger Phan Thiet 2 - Vietnam Men Doubles",
                          "hash_image": "8f87966ff42d372da707dffec2532cd49534e38620e25a5f918bd0249bafe74f"
                        },
                        {
                          "id": 21121,
                          "name": "Rosario - Argentina - Doubles",
                          "hash_image": "786aa9ada242030e49e0640510c9bce1a0815309aed1f9882e88adf85f56d399"
                        },
                        {
                          "id": 21143,
                          "name": "ATP Challenger Baton Rouge - USA Men Singles",
                          "hash_image": "6e59cf945e5c4f96fc15e812065eae5cc4558e49a7973bc8cb9e74deea34c831"
                        },
                        {
                          "id": 21209,
                          "name": "Brisbane 2 - Australia - Doubles",
                          "hash_image": "f660b6f353eaab33142c44acde949d14aba17b4bc7cb6e183124c0aea6ecb092"
                        },
                        {
                          "id": 21255,
                          "name": "ATP Challenger Baton Rouge - USA Men Doubles",
                          "hash_image": "234c09f17fce4920d977e72951532c1f40734ecb72973dd0d35f2c932fb864fd"
                        },
                        {
                          "id": 21257,
                          "name": "New Delhi - India - Doubles",
                          "hash_image": "173b2f8c12b27bec77a427afca3d442af496333c5639d2bfd04a932db122cf71"
                        },
                        {
                          "id": 21299,
                          "name": "New Delhi - India",
                          "hash_image": "96c7fae99b948cca68d1b6e9a1194456738f06a14b93c782c739b1bd50e5c268"
                        },
                        {
                          "id": 21404,
                          "name": "ATP Challenger Metepec - Mexico Men Singles",
                          "hash_image": "64df7c8849d8cadf0b455a1d86a0c645143788e5261afe976db9d21a0a9aad7e"
                        },
                        {
                          "id": 21430,
                          "name": "ATP Challenger Fujairah - UAE Men Singles",
                          "hash_image": "d8bc62a0ac91ee841c6008e516b21ad7a9068346fe87f47bf00abbdf54c65bdb"
                        },
                        {
                          "id": 21436,
                          "name": "ATP Challenger Fujairah - UAE Men Doubles",
                          "hash_image": "bfaafb0e87454c8766edc18daa93c2f0949c7228db06825cd5ab3cba3e975a63"
                        },
                        {
                          "id": 21437,
                          "name": "Hersonissos 2 - Greece - Doubles",
                          "hash_image": "375c00aab8e25f29a05861c083668d47341c846441671fb35b451a21e0200609"
                        },
                        {
                          "id": 21439,
                          "name": "Cap Cana - Dominican Republic",
                          "hash_image": "6d59ffe8a31d4b798e031dae80c1310276e622d612b08ce7125cb51fc03b00ac"
                        },
                        {
                          "id": 21453,
                          "name": "Cap Cana - Dominican Republic - Doubles",
                          "hash_image": "63767bd471abae89d92fbfa2d218ffc20340ed965d2ac4ea45b0e45af57b6b09"
                        },
                        {
                          "id": 21468,
                          "name": "Morelia - Mexico",
                          "hash_image": "b47b277e9bdfffa8f45535df4dbd72bb63749909a50ba72dbcb318cdd0ab1c4d"
                        },
                        {
                          "id": 21486,
                          "name": "Sao Paulo - Brazil Men Singles",
                          "hash_image": "18eb38fdf956545fdd4a26f580ef3db1f233263427d8bd0e6ff1003f2ffb7aee"
                        },
                        {
                          "id": 21524,
                          "name": "Morelia - Mexico - Doubles",
                          "hash_image": "beaae9391f9d5b327a850153c1173de39bb2ba98ac6be344b2428f90ac2537f2"
                        },
                        {
                          "id": 21531,
                          "name": "Bucaramanga - Colombia Men Double",
                          "hash_image": "a2b6d78066a58478228b33b167d5fdf2fa9d38a18382bae03ad9b71584fbdcc1"
                        },
                        {
                          "id": 21532,
                          "name": "Napoli - Italy - Doubles",
                          "hash_image": "2b9b7e4c374dab26df044fe7a6dba0dc0db6ca1a5860f09d87b2892504935ae5"
                        },
                        {
                          "id": 21572,
                          "name": "Girona - Spain - Doubles",
                          "hash_image": "a7a276780535e32cefb86c2d0408d42f3faf6d2f6df3461572dd0825f40f6897"
                        },
                        {
                          "id": 21593,
                          "name": "ATP Challenger Miyazaki - Japan Men Singles",
                          "hash_image": "6203d0a35d5282dedc10873fb9f8c0e48ef5e5a62dfa0b92149fb2b7ce1b26cb"
                        },
                        {
                          "id": 21599,
                          "name": "ATP Challenger Miyazaki - Japan Men Doubles",
                          "hash_image": "d4290bb17b0de9d973906e68c462e31d637ee1e70a5256d675b99971a6c0d10c"
                        },
                        {
                          "id": 21602,
                          "name": "Menorca - Spain - Doubles",
                          "hash_image": "5897a921d254dc1da643c0939a38dacf4d3cd271f99d345cadc1a28f1f5f8e58"
                        },
                        {
                          "id": 21607,
                          "name": "Sao Leopoldo - Brazil Men Double",
                          "hash_image": "54b3b6a6278921b8d104175f79664da02cb5f45b9a773e54c18feb7625fe1881"
                        },
                        {
                          "id": 21622,
                          "name": "Monza - Italy - Doubles",
                          "hash_image": "731fd04a45d080dfd5b83ee18b69c269c94d593b66f85086c43020505945fa4f"
                        },
                        {
                          "id": 21627,
                          "name": "Abidjan 2 - Cote d'Ivoire",
                          "hash_image": "3c61f0e3f197b5e694c9380d4fa37fd7740b59a3e8397dbb194839fce27dd18e"
                        },
                        {
                          "id": 21629,
                          "name": "Mauthausen - Austria - Doubles",
                          "hash_image": "d95d60641b53809cb53707609e88c5688adf8c6e454fd2c9980e120de1fa8899"
                        },
                        {
                          "id": 21631,
                          "name": "Wuxi - China",
                          "hash_image": "ddef52c638b0bb3cbebdb19d4e38a6a4c04fac4a8c9683137d86449c48eba287"
                        },
                        {
                          "id": 21655,
                          "name": "Santos - Brazil",
                          "hash_image": "1314ce8ec7b40b3794306edf8eb7998ab00d490a2b6c7b065da70333ea79ac43"
                        },
                        {
                          "id": 21677,
                          "name": "Brazzaville - Republic of Congo - Doubles",
                          "hash_image": "080f4addbf1e80c7e0be5481722b4b7a112e74a4e1a6b977fddcc8c0f2591e67"
                        },
                        {
                          "id": 21681,
                          "name": "Wuxi - China - Doubles",
                          "hash_image": "e0d16f9f10421e713a4c361d5b64116cf6582029e19725ff171c0e59374c3ed0"
                        },
                        {
                          "id": 21687,
                          "name": "Oeiras 4 - Portugal",
                          "hash_image": "24de2165c8fb9c2716422fbf2f2e8c9cd300f4a414d64fbd34947b5a04971190"
                        },
                        {
                          "id": 21704,
                          "name": "Kosice - Slovakia Men Singles",
                          "hash_image": "984065b8ef6b2a21f1d3b1e969a384fe6a8e9f1807d6aa02fd96e7950df146be"
                        },
                        {
                          "id": 21705,
                          "name": "Kosice - Slovakia Men Double",
                          "hash_image": "711d08ab038dfe143f2707dca7cf068ea0d05327dcd6cf4486d22f6a0d6db0c9"
                        },
                        {
                          "id": 21707,
                          "name": "ATP Challenger Chisinau - Moldova Men Doubles",
                          "hash_image": "25b41e3908fa82931b3207b4062cc851ade1665ba32e66ff39b3927697969b8b"
                        },
                        {
                          "id": 21709,
                          "name": "ATP Challenger Birmingham - Great Britain Men Singles",
                          "hash_image": "f9e862e5d7123b290598d7ce4bc1552d5b80d4042eedc7338127d84f1bf07fb6"
                        },
                        {
                          "id": 21717,
                          "name": "Tyler - USA",
                          "hash_image": "1c366850f64933e7d4908b709a7ff26ca6f744a98e09bd8e13189c77f40594eb"
                        },
                        {
                          "id": 21730,
                          "name": "Tyler - USA - Doubles",
                          "hash_image": "44446eca5b3f8098ec1b6c0d792c8215f1b8985b698f040b67c2b067906e1e34"
                        },
                        {
                          "id": 21744,
                          "name": "ATP Challenger Birmingham - Great Britain Men Doubles",
                          "hash_image": "3457418440e24daf28e2a66d70acef7bf73449dd3e2a05dcd92bc373350a22ea"
                        },
                        {
                          "id": 21747,
                          "name": "Nottingham 2 - Great Britain",
                          "hash_image": "44f11e40d7abc1557385c8ce182e1ce90d87b3a31f72523bba875ffbc588a2f3"
                        },
                        {
                          "id": 21751,
                          "name": "ATP Challenger Royan - France Men Singles",
                          "hash_image": "fb7daba91d088ea31df1de2505c6240ad0d84b9d3c3f9dcdb44ab7730d9e7813"
                        },
                        {
                          "id": 21755,
                          "name": "ATP Challenger Royan - France Men Doubles",
                          "hash_image": "a2e7fad982a63f2183c5c790f63465656cae23babe29960e3210960f64534a24"
                        },
                        {
                          "id": 21759,
                          "name": "Piracicaba - Brazil - Doubles",
                          "hash_image": "2fe136faf33cdaaafcc4ce8f0be72e9c20af0fc47bf157983024169735cf27ed"
                        },
                        {
                          "id": 21764,
                          "name": "ATP Challenger Targu Mures - Romania Men Doubles",
                          "hash_image": "e0aab1b4ea3acc27e42f9d4fc1beebd495e21914d724db178256ccdf94c00e2b"
                        },
                        {
                          "id": 21770,
                          "name": "Troyes - France - Doubles",
                          "hash_image": "9b3dcdf83f0450b695bb207811e4c5cf174ce40ecb611656d5b70aed540208e8"
                        },
                        {
                          "id": 21785,
                          "name": "Brasov - Romania - Doubles",
                          "hash_image": "f0deb7413ea7d58a5c4c87be3625683f658e427b6980e85ec11a6534bc9cad0b"
                        },
                        {
                          "id": 21787,
                          "name": "ATP Challenger Nottingham 3 - Great Britain Men Doubles",
                          "hash_image": "f96ca8fab509aea0f5b30486bacd0d7bbde493eb0deb9c2f66447f048fa98c18"
                        },
                        {
                          "id": 21790,
                          "name": "ATP Challenger Newport - USA Men Doubles",
                          "hash_image": "bba3e8866f546e749115da86be3d2d850a0e1af52f530aad3e9b9feec70ea351"
                        },
                        {
                          "id": 21791,
                          "name": "ATP Challenger Bunschoten - Netherlands Men Singles",
                          "hash_image": "f3e41278ec2d803affb31d0adff1d861f1f3aa14e0f823c37e796348c8d1e2f5"
                        },
                        {
                          "id": 21798,
                          "name": "ATP Challenger Bunschoten - Netherlands Men Doubles",
                          "hash_image": "aaa1b74e79b4dcd4ebd7019daab53d48f657eb35fb3ca14a57344a06aebc2ddd"
                        },
                        {
                          "id": 21801,
                          "name": "ATP Challenger Lincoln (NE) - USA Men Doubles",
                          "hash_image": "6baf94db0ce0746631fe833370c388581681707f350e091e07b9e4437f946107"
                        },
                        {
                          "id": 21805,
                          "name": "Bloomfield Hills - USA - Doubles",
                          "hash_image": "6f45d29c8e3cd8420f3880b8c84f0c5fd5a1e46d4415d3d4e5cbf1d94d813b0b"
                        },
                        {
                          "id": 21808,
                          "name": "ATP Challenger Hagen - Germany Men Doubles",
                          "hash_image": "b174f29394f023bb26fa21e09799f6c30f62a7e19f9b5786de828a7da4204fce"
                        },
                        {
                          "id": 22008,
                          "name": "Barranquilla - Colombia - Doubles",
                          "hash_image": "56a553f1eaae15b60d7a366a2baecaf57b62d8df3ab787d769a7d3695d1f9f2a"
                        },
                        {
                          "id": 22332,
                          "name": "ATP Challenger Biella 7 - Italy Men Singles",
                          "hash_image": "e1a609e784939c381a15f7b4e80c8ec813250bc4c10fdb8c22f4bdd57b1d510e"
                        },
                        {
                          "id": 22585,
                          "name": "Brazzaville - Republic of Congo",
                          "hash_image": "db55ad7905b1a67fe1bf0348864a18c52b65489dd998ea7010c1af012a9159f6"
                        },
                        {
                          "id": 22677,
                          "name": "ATP Challenger Salinas 2 - Ecuador Men Singles",
                          "hash_image": "188b2a95369e4d8e81814b323df7d5193d835226fc3eee621490e16dcedbe278"
                        },
                        {
                          "id": 22713,
                          "name": "Bendigo - Australia",
                          "hash_image": "05efaee607b84816f4d45d0413b81b81bd3b2d009f55dc5e2b3eb86a6977c1a0"
                        },
                        {
                          "id": 22992,
                          "name": "ATP Challenger Antalya 3 - Turkey Men Singles",
                          "hash_image": "3ac88f2ea4e4746840a14310564772f92447302e35869b9c3599d9941005ec64"
                        },
                        {
                          "id": 23352,
                          "name": "Viña del Mar - Chile",
                          "hash_image": "22fdf83b9ec70fb3b4b03aced40719af9ef98274a38cb0e8e0505e297e28a4aa"
                        },
                        {
                          "id": 23429,
                          "name": "Santiago 2 - Chile",
                          "hash_image": "7772cc3c81739637470ff3a723b70a75ca933129567facbb8c9cd15eb9e29c0c"
                        },
                        {
                          "id": 23440,
                          "name": "ATP Challenger Dobrich - Bulgaria Men Doubles",
                          "hash_image": "0e25d5e83d30fb148aad4aab78a06ad6cf65ccfb2d5fe7ddebdbe6a9280555f2"
                        },
                        {
                          "id": 24474,
                          "name": "ATP Challenger Jiujiang - China Men Singles",
                          "hash_image": "fcf27b1dfb9ef33612d9f2647c326c72e18464bbb4671738c002fae277007289"
                        },
                        {
                          "id": 24631,
                          "name": "Liuzhou  China",
                          "hash_image": "f62720b22e0f683a6bcc1aab9cabfce4377fc93c986dd1dcbacedd214ccdf289"
                        },
                        {
                          "id": 24690,
                          "name": "ATP Challenger Metepec - Mexico Men Doubles",
                          "hash_image": "2d979ffa8a367b7ac74cc74d5fdc04a1596b32e1b0ca55b448ab432fa1dbe769"
                        },
                        {
                          "id": 24704,
                          "name": "Budapest - Hungary Men Double",
                          "hash_image": "e89e6fc52d7cc5fedade892290e9dd00e431053975518160149bde7c9bbf04c5"
                        },
                        {
                          "id": 24705,
                          "name": "Sassuolo - Italy - Doubles",
                          "hash_image": "b160825d2a7d8a5770552f55c4f363569d4045ffc9b022c4f9d5c902defce94a"
                        },
                        {
                          "id": 24995,
                          "name": "Florence - Italy",
                          "hash_image": "4fe3b325ee9383e3a90191c8b87c68c9edca13b4eae143f37dfd8f87722b677f"
                        },
                        {
                          "id": 25552,
                          "name": "ATP Challenger Oeiras 5 - Portugal Men Doubles",
                          "hash_image": "69e734564b83114c687cf68a88b68495a5e5552f7592596eac3b53a6ebc4d5e8"
                        },
                        {
                          "id": 25890,
                          "name": "Bastad - Sweden Men Singles",
                          "hash_image": "addbc22d6f7397c6445d8f39c0cf461c93c586c093a1d940b48196f737d5869d"
                        },
                        {
                          "id": 26308,
                          "name": "Hua Hin - Thailand Men Singles",
                          "hash_image": "524f7757eb7c7d6e7d52b4bec47a98e0c218445fecaa547f83ae9670dd9af7c6"
                        },
                        {
                          "id": 26743,
                          "name": "Padova - Italy Men Double",
                          "hash_image": "5edbefaa52d408f6115e81c24e7a4c5e4d36511819f0415c460bad1b22f5e1e2"
                        },
                        {
                          "id": 27728,
                          "name": "Tempe  USA",
                          "hash_image": "06da23c4bba0a4e430456adb701058d005343ffb68eddd03b647202ced306f72"
                        },
                        {
                          "id": 28018,
                          "name": "Mersin - Turkey Men Double",
                          "hash_image": "9c50152473273194542cc8fb68ddeecb36f364a4d672d9e242acfdddc943ea08"
                        },
                        {
                          "id": 28068,
                          "name": "Rimouski - Canada Men Double",
                          "hash_image": "107379f6ae3d63d8129c6cebd4875c07b5af408749649bcb01f2d00a311dff96"
                        },
                        {
                          "id": 28069,
                          "name": "Rimouski - Canada Men Singles",
                          "hash_image": "bb55641b112df59e4336dc61243a5e61b6e48c2ead40f520bae7fc5c52ee56e4"
                        },
                        {
                          "id": 28177,
                          "name": "Geneva - Switzerland Men Double",
                          "hash_image": "e7a5573eb5b883f458fb10b877b6e6179e8d57b423f59eb0e753a4400c0e878d"
                        },
                        {
                          "id": 28265,
                          "name": "Villa Allende - Argentina Men Double",
                          "hash_image": "0c54a773dd21aa51b03f05e2bbeadbdd4fc978c44e2a0203e38b70fe03954efc"
                        },
                        {
                          "id": 28284,
                          "name": "San Jose do Rio Preto - Brazil Men Double",
                          "hash_image": "a3ea467da0e6e7bb11f8676c2d0e8f699014a27caebddd8e8fe0520e153b02ad"
                        },
                        {
                          "id": 28330,
                          "name": "Lermontov - Russia Men Double",
                          "hash_image": "1b1e6c1983e4706d6c8cd87006214ecfdd98a476fbc35b46ff887140791cfbd5"
                        },
                        {
                          "id": 28511,
                          "name": "Orbetello - Italy Men Singles",
                          "hash_image": "cbecac5b46ac5f4e88f5360c05585ad926a026108d69bc7e62bee63f517d4b57"
                        },
                        {
                          "id": 28541,
                          "name": "Timisoara - Romania Men Double",
                          "hash_image": "6c207ce6696afbd0c7f289d0313d5acf14c0af857bf83387e367f890d1cf5a22"
                        },
                        {
                          "id": 28575,
                          "name": "Kun-Ming - China Men Singles",
                          "hash_image": "efe07ed21d55866a858c2be706c5971213b073e35e0114a82d8155873e675e39"
                        },
                        {
                          "id": 28586,
                          "name": "Chitre - Panama Men Double",
                          "hash_image": "4ba318fb2e60af9c9ebaa9d9d97ddbaf8f3be689ccda989468e856da4b9123d0"
                        },
                        {
                          "id": 28658,
                          "name": "Da Nang - Vietnam - Doubles",
                          "hash_image": "7dc2cc0a316bb754a012c67f5400b6c9e3cd4b04903f30ac7b81721eca6cfaf6"
                        },
                        {
                          "id": 29095,
                          "name": "ATP Challenger Jiujiang - China Men Doubles",
                          "hash_image": "e3921c99897214783bf5e4aec801de444cb8aed4b298645f6b9d4ca4d36d5d48"
                        },
                        {
                          "id": 29142,
                          "name": "Bercuit - Belgium Men Double",
                          "hash_image": "ef86cf938c07a2e568732f811d1c9e9afecf498830e240d1128bf3612afdc2c3"
                        },
                        {
                          "id": 29164,
                          "name": "Honolulu - USA Men Double",
                          "hash_image": "2c5b5e7d597bbd5675103b257123e8fca8392539ee4791fa57e7d855093732b2"
                        },
                        {
                          "id": 29167,
                          "name": "Singapore - Singapore Men Double",
                          "hash_image": "2794f9c2f798e9f17c4fbe8a40e63da60a549e751f2e183bd3364be4c1911b49"
                        },
                        {
                          "id": 29189,
                          "name": "Copa Petrobras São Paulo Men Singles",
                          "hash_image": "4c84bf42abd5c8edcbbea6d031d9ce7d898387659f9e96df2f18b8c63d478bdf"
                        },
                        {
                          "id": 29191,
                          "name": "Copa Petrobras São Paulo Men Double",
                          "hash_image": "29cee4e95208141d6627ea073a0a1ccf18cdf36f849fa5cb147b02aaa5768bfa"
                        },
                        {
                          "id": 29192,
                          "name": "Calabasas - USA Men Singles",
                          "hash_image": "e45327adbf1443d32dc67406cd2d3051ce6f7b76d82bfa36c7bd317f4326a534"
                        },
                        {
                          "id": 29193,
                          "name": "Asuncion - Paraguay",
                          "hash_image": "25a5254343b39f59bf85fef6e0e4aa59a26f5f967adf1735a8171086e1fd35b3"
                        },
                        {
                          "id": 29332,
                          "name": "Bogota-2 - Colombia Men Double",
                          "hash_image": "0a127ca914985490a172a09fb03c6d265cc96f0f5da669922f600bc380e2fe89"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Class"
      }
    },
    "/seasons-by-league": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons By League",
        "description": "This endpoint allows you to retrieve the seasons from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **league_id**<br />`https://tennis.sportmicro.com/seasons-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 46,
                      "league_name": "Canberra - Australia",
                      "league_hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab",
                      "seasons": [
                        {
                          "id": 50,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2026",
                          "year": "2026",
                          "start_time": "2026-01-04"
                        },
                        {
                          "id": 55612,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2024",
                          "year": "2024",
                          "start_time": "2023-12-31"
                        },
                        {
                          "id": 55622,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2023",
                          "year": "2023",
                          "start_time": "2022-12-31"
                        },
                        {
                          "id": 58645,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2025",
                          "year": "2025",
                          "start_time": "2024-12-29"
                        },
                        {
                          "id": 64113,
                          "name": "2020 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2020",
                          "start_time": "2020-01-06"
                        },
                        {
                          "id": 73934,
                          "name": "2018 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2018",
                          "start_time": "2018-01-11"
                        },
                        {
                          "id": 76475,
                          "name": "2019 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2019",
                          "start_time": "2019-01-10"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By League"
      }
    },
    "/media-leagues": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Media Leagues",
        "description": "This endpoint allows you to retrieve the media from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **league_id**<br />`https://tennis.sportmicro.com/media-leagues?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.media-leagues.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/media-leagues"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 308,
                      "league_id": 67,
                      "title": "D. Medvedev 2 - 0 B. Nakashima",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=XLyIURu_Yq0",
                      "thumbnail_url": "https://i.ytimg.com/vi/XLyIURu_Yq0/hqdefault.jpg",
                      "date_published": "2026-01-11T11:20:25+00:00",
                      "channel_url": "https://www.youtube.com/watch?v=XLyIURu_Yq0"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Leagues"
      }
    },
    "/seasons-groups": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Groups",
        "description": "This endpoint allows you to retrieve the groups from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet groups from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-groups?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-groups.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-groups"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 109,
                      "season_name": "ATP World Tour Finals Men Singles 2024",
                      "groups": [
                        {
                          "name": "Björn Borg Group",
                          "tournament_id": 29022,
                          "tournament_name": "Tour Finals Turin - Italy - Björn Borg Group"
                        },
                        {
                          "name": "Jimmy Connors Group",
                          "tournament_id": 89,
                          "tournament_name": "Tour Finals Turin - Italy - Jimmy Connors Group"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Groups"
      }
    },
    "/rankings": {
      "get": {
        "tags": [
          "Standings"
        ],
        "summary": "Rankings",
        "description": "This endpoint allows you to retrieve the rankings for ATP and WTA.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 30 minutes.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet official rankings for **ATP**<br />`https://tennis.sportmicro.com/rankings?type=eq.atp&class=eq.official`<br /><br />Get live rankings for **ATP**<br />`https://tennis.sportmicro.com/rankings?type=eq.atp&class=eq.now`<br /><br />Get official rankings for **WTA**<br />`https://tennis.sportmicro.com/rankings?type=eq.wta&class=eq.official`<br /><br />Get live rankings for **WTA**<br />`https://tennis.sportmicro.com/rankings?type=eq.wta&class=eq.now`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.rankings.type"
          },
          {
            "$ref": "#/components/parameters/rowFilter.rankings.class"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/rankings"
                  },
                  "type": "array",
                  "example": [
                    {
                      "type": "atp",
                      "class": "now",
                      "team_id": 138,
                      "team_name": "Jannik Sinner",
                      "team_hash_image": "b1f4dc58d39cd76fa6753046391d74c72fcc68c72200d5e5461b944748c6703e",
                      "rank": 1,
                      "points": 13710,
                      "next_win_points": 13750,
                      "max_points": 14700
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Rankings"
      }
    },
    "/matches-weather": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Weather",
        "description": "This endpoint allows you to retrieve the weather from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every hour.\n**Recommended Calls**: Limit calls to 1 every hour.\n\n### Use Cases\nGet weather based on the **id**<br />`https://tennis.sportmicro.com/matches-weather?id=eq.{id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-weather.id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-weather"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "dt": "2023-10-24T15:00:00+00:00",
                      "temp": 282.42,
                      "feels_like": 280.9,
                      "pressure": 1003,
                      "humidity": 94,
                      "dew_point": 280.89,
                      "uvi": 0.16,
                      "clouds": 94,
                      "wind_speed": 2.81,
                      "wind_deg": 58,
                      "wind_gust": 6.48,
                      "weather_id": 500,
                      "weather_main": "Rain",
                      "weather_description": "light rain",
                      "weather_icon": "10d",
                      "pop": 0.61
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Weather"
      }
    },
    "/matches": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches",
        "description": "This endpoint allows you to retrieve the matches.\nYou can use `id` from the `seasons`, `tournaments`, `rounds`, `arenas`, `referees` and `teams` endpoint to get the matches.\nMatches status codes:\n\n`type` | `description`\n--- | ---\ncanceled | Abandoned\ncanceled | Canceled\ncanceled | Cancelled\ndelayed | Start delayed\nendure | End of day 1\nendure | Will continue\nfinished | Defaulted\nfinished | Removed\nfinished | 3rd set\nfinished | Retired\nfinished | Player 1 defaulted, player 2 won\nfinished | Player 2 defaulted, player 1 won\nfinished | Defaulted\nfinished | 2nd set\nfinished | Ended\nfinished | Coverage canceled\nfinished | Walkover\ninterrupted | Interrupted\nlive | 3rd set\nlive | 1st set\nlive | 2nd set\npostponed | Postponed\nsuspended | Suspended\nupcoming | Not started\nlive | 4th set\nlive | 5th set\nlive | 6th set\nlive | 7th set\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `period5`, `normaltime`, `penalties`, `series`, `point`, `period1_tie_break`, `period2_tie_break`, `period3_tie_break`, `period4_tie_break`, `period5_tie_break`, `team`, `match_id`.\n\nFor **time extras or injuries** we have fields for covering that: **current**, **period1**, **period2**, **period3**, **period4**, **period5**, **current_period_start_timestamp**, **match_id**, **time**, **period_count**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds.<br />**Recommended Calls**: Limit calls to 1 every 10 seconds.\n\n### Use Cases\nGet matches<br />`https://tennis.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://tennis.sportmicro.com/matches?id=eq.{id}`<br /><br />Get matches based on the **start_time** (gte = greater than or equal to, lt = lower than)<br />`https://tennis.sportmicro.com/matches?start_time=gte.2023-04-27&start_time=lt.2023-04-28`<br /><br />Get matches based on the **status_type**<br />`https://tennis.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://tennis.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://tennis.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://tennis.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://tennis.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://tennis.sportmicro.com/matches?referee_id=eq.{referee_id}`<br /><br />**H2H** - Get head to head matches with teams ex.(home_team_id, away_team_id)<br />`https://tennis.sportmicro.com/matches?or=(home_team_id.eq.{home_team_id}, away_team_id.eq.{home_team_id}, home_team_id.eq.{away_team_id}, away_team_id.eq.{away_team_id})`<br /><br />Get home team matches based on the **home_team_id**<br />`https://tennis.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://tennis.sportmicro.com/matches?away_team_id=eq.{away_team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.tournament_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.round_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.arena_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.referee_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.home_team_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches.away_team_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "Jannik Sinner vs Arthur Rinderknech",
                      "first_to_serve": 1,
                      "ground_type": "Red clay",
                      "tournament_id": 106,
                      "tournament_name": "French Open, Paris, France",
                      "tournament_importance": 0,
                      "season_id": 116,
                      "season_name": "French Open Men Singles 2025",
                      "round_id": 1512,
                      "round": {
                        "id": 1512,
                        "name": "Round of 128",
                        "round": 64,
                        "end_time": "2025-05-27",
                        "start_time": "2025-05-25"
                      },
                      "status": {
                        "type": "finished",
                        "reason": "Ended"
                      },
                      "status_type": "finished",
                      "arena_id": 43,
                      "arena_name": "Court Philippe Chatrier",
                      "arena_hash_image": "d7a1c97ec65ca97fba08379f00b1e8ec724be43d9f2040a5e4f90bd17d463c23",
                      "home_team_id": 138,
                      "home_team_name": "Jannik Sinner",
                      "home_team_hash_image": "b1f4dc58d39cd76fa6753046391d74c72fcc68c72200d5e5461b944748c6703e",
                      "away_team_id": 159,
                      "away_team_name": "Arthur Rinderknech",
                      "away_team_hash_image": "ca0b9a9de6fec5c25e755d9776710996d342a4f2821f05cd9054c7cacff6824c",
                      "home_team_score": {
                        "current": 3,
                        "display": 3,
                        "period_1": 6,
                        "period_2": 6,
                        "period_3": 7
                      },
                      "away_team_score": {
                        "current": 0,
                        "display": 0,
                        "period_1": 4,
                        "period_2": 3,
                        "period_3": 5
                      },
                      "times": {
                        "period_1": 2506,
                        "period_2": 2141,
                        "period_3": 3505,
                        "specific_start_time": "2025-05-26T19:48:45+00:00"
                      },
                      "specific_start_time": "2025-05-26T19:48:45+00:00",
                      "start_time": "2025-05-26T18:30:00+00:00",
                      "duration": 9000,
                      "class_id": 48,
                      "class_name": "ATP",
                      "class_hash_image": "c3b0b1b9d3f39fe1d1e1341368600f2890018af9d178de97de57756e7b6646c0",
                      "league_id": 80,
                      "league_name": "Roland Garros"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches"
      }
    },
    "/tournaments-by-class": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments By Class",
        "description": "This endpoint allows you to retrieve the tournaments from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **class_id**<br />`https://tennis.sportmicro.com/tournaments-by-class?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments-by-class.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments-by-class"
                  },
                  "type": "array",
                  "example": [
                    {
                      "class_id": 28,
                      "class_name": "Challenger",
                      "class_hash_image": "96ae6b1996feda3127c70abd756b5612bb35a4e69ecbee3b1c538fc0f861b13c",
                      "tournaments": [
                        {
                          "id": 53,
                          "name": "Canberra - Australia",
                          "importance": 0
                        },
                        {
                          "id": 112,
                          "name": "Salzburg - Austria",
                          "importance": 0
                        },
                        {
                          "id": 644,
                          "name": "Bogota - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 662,
                          "name": "Porto - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 670,
                          "name": "Porto, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 706,
                          "name": "Braunchsweig - Germany",
                          "importance": 0
                        },
                        {
                          "id": 716,
                          "name": "Murcia - Spain",
                          "importance": 0
                        },
                        {
                          "id": 1244,
                          "name": "Amersfoort - Netherlands - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 1249,
                          "name": "Amersfoort - Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 1251,
                          "name": "Forli 6 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 1277,
                          "name": "Rome - USA",
                          "importance": 0
                        },
                        {
                          "id": 1285,
                          "name": "Santa Cruz 2 - Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 3490,
                          "name": "Tampere - Finland",
                          "importance": 0
                        },
                        {
                          "id": 3493,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 3560,
                          "name": "Porto - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 3569,
                          "name": "Porto, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 3570,
                          "name": "Troyes - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 3579,
                          "name": "Noumea - New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 3619,
                          "name": "Milan - Italy",
                          "importance": 0
                        },
                        {
                          "id": 3622,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 3656,
                          "name": "Split - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 3660,
                          "name": "Split, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 3671,
                          "name": "Verona - Italy",
                          "importance": 0
                        },
                        {
                          "id": 3674,
                          "name": "Verona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 3684,
                          "name": "Verona - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 3689,
                          "name": "Naples - Italy",
                          "importance": 0
                        },
                        {
                          "id": 3719,
                          "name": "Morelos - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 3721,
                          "name": "Buenos Aires - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 3725,
                          "name": "Buenos Aires - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 3726,
                          "name": "Bogota - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 3734,
                          "name": "Sarasota - USA",
                          "importance": 0
                        },
                        {
                          "id": 3741,
                          "name": "Rome, USA",
                          "importance": 0
                        },
                        {
                          "id": 3782,
                          "name": "Koblenz - Germany",
                          "importance": 0
                        },
                        {
                          "id": 3785,
                          "name": "Iasi - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 3786,
                          "name": "Iasi, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 3815,
                          "name": "Bogota - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 3820,
                          "name": "Bonn - Germany",
                          "importance": 0
                        },
                        {
                          "id": 3823,
                          "name": "Nottingham - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 3827,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 3839,
                          "name": "Rome - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 3844,
                          "name": "Cherbourg-en-Cotentin - France",
                          "importance": 0
                        },
                        {
                          "id": 3853,
                          "name": "Iasi - Romania",
                          "importance": 0
                        },
                        {
                          "id": 3860,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 3864,
                          "name": "Sao Leopoldo - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 3954,
                          "name": "Amersfoort, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 3958,
                          "name": "Prague 1 - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 3966,
                          "name": "Prague 1, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 28345,
                          "name": "Braunchsweig - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 28347,
                          "name": "Braunschweig - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 28402,
                          "name": "Todi - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 28409,
                          "name": "Todi - Italy",
                          "importance": 0
                        },
                        {
                          "id": 28509,
                          "name": "Troyes - France",
                          "importance": 0
                        },
                        {
                          "id": 28839,
                          "name": "Heilbronn - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 28855,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 28961,
                          "name": "Ilkley - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 28966,
                          "name": "Ilkley - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 28968,
                          "name": "Orlando - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 28973,
                          "name": "Porto - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 28988,
                          "name": "Oeiras 3 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 28994,
                          "name": "Oeiras 3, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 29011,
                          "name": "Malaga - Spain",
                          "importance": 0
                        },
                        {
                          "id": 29016,
                          "name": "Malaga, Spain",
                          "importance": 0
                        },
                        {
                          "id": 29039,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 29270,
                          "name": "Braunchsweig - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 29272,
                          "name": "Braunschweig - Germany",
                          "importance": 0
                        },
                        {
                          "id": 30072,
                          "name": "Tampere - Finland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30074,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30075,
                          "name": "Oeiras 3 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30085,
                          "name": "Oeiras 3, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30200,
                          "name": "Knoxville - USA",
                          "importance": 0
                        },
                        {
                          "id": 30207,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 30291,
                          "name": "Sanremo - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 30297,
                          "name": "Sanremo - Italy",
                          "importance": 0
                        },
                        {
                          "id": 30299,
                          "name": "Francavilla - Italy",
                          "importance": 0
                        },
                        {
                          "id": 30304,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 30318,
                          "name": "Amersfoort - Netherlands - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30319,
                          "name": "Amersfoort, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30374,
                          "name": "Buenos Aires - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30377,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30379,
                          "name": "Iasi - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 30532,
                          "name": "Parma - Italy",
                          "importance": 0
                        },
                        {
                          "id": 30545,
                          "name": "Oeiras 2 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30550,
                          "name": "Oeiras 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30618,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 30638,
                          "name": "Buenos Aires - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 30642,
                          "name": "Tigre - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 30676,
                          "name": "Santa Cruz - Bolivia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30682,
                          "name": "Santa Cruz, Bolivia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30787,
                          "name": "Liuzhou - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30791,
                          "name": "Liuzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30793,
                          "name": "Nur-Sultan - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30795,
                          "name": "Prague 1 - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30801,
                          "name": "Prague - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30803,
                          "name": "Lyon - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30808,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30817,
                          "name": "Challenge Dummy",
                          "importance": 0
                        },
                        {
                          "id": 30830,
                          "name": "Bratislava - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30837,
                          "name": "Vicenza - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30842,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 30853,
                          "name": "Salzburg - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34128,
                          "name": "Savannah - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34130,
                          "name": "Savannah - USA",
                          "importance": 0
                        },
                        {
                          "id": 34166,
                          "name": "Rome - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34170,
                          "name": "Rome, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34206,
                          "name": "Champaign - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34207,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 34273,
                          "name": "Cary - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34276,
                          "name": "Cary - USA",
                          "importance": 0
                        },
                        {
                          "id": 34595,
                          "name": "Las Vegas - USA",
                          "importance": 0
                        },
                        {
                          "id": 34602,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 34638,
                          "name": "Malaga - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 34701,
                          "name": "Oeiras 3 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 35454,
                          "name": "Salzburg - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35458,
                          "name": "Salzburg, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 35856,
                          "name": "Shenzhen II - China",
                          "importance": 0
                        },
                        {
                          "id": 35862,
                          "name": "Shenzhen 2 - China",
                          "importance": 0
                        },
                        {
                          "id": 36036,
                          "name": "Francavilla - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36041,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36182,
                          "name": "Kiev - Ukraine - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36248,
                          "name": "Cali - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36255,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36301,
                          "name": "Rio de Janeiro - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36311,
                          "name": "Rio de Janeiro, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36333,
                          "name": "Pereira - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36403,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 36566,
                          "name": "Forli 5 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36573,
                          "name": "Phoenix - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36578,
                          "name": "Monterrey - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36581,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36625,
                          "name": "San Luis Potosi - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36630,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36645,
                          "name": "Leon - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36649,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36656,
                          "name": "Tiburon - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36666,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36691,
                          "name": "Francavilla - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36740,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36750,
                          "name": "Shymkent 2 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36758,
                          "name": "Shymkent II - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 36762,
                          "name": "Perugia - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36766,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36769,
                          "name": "Saint Tropez - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36776,
                          "name": "Saint Tropez, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 36974,
                          "name": "Luedenscheid - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 36977,
                          "name": "Luedenscheid - Germany",
                          "importance": 0
                        },
                        {
                          "id": 37042,
                          "name": "Jinan - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37044,
                          "name": "Jinan, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37290,
                          "name": "Biella 1 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37295,
                          "name": "Biella - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37300,
                          "name": "Corrientes - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37478,
                          "name": "Lille - France",
                          "importance": 0
                        },
                        {
                          "id": 37525,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37682,
                          "name": "Buenos Aires 2 - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 37803,
                          "name": "Tour Finals - Sao Paulo - Brazil - Group A",
                          "importance": 0
                        },
                        {
                          "id": 37805,
                          "name": "Barcelona - Spain",
                          "importance": 0
                        },
                        {
                          "id": 37807,
                          "name": "Barcelona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 37935,
                          "name": "Aguacalientes - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 37947,
                          "name": "Maia - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38012,
                          "name": "Forli 3 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38013,
                          "name": "Forli 3 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 38027,
                          "name": "Tour Finals - Sao Paulo - Brazil - Group B",
                          "importance": 0
                        },
                        {
                          "id": 38028,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group A",
                          "importance": 0
                        },
                        {
                          "id": 38043,
                          "name": "Perugia - Italy",
                          "importance": 0
                        },
                        {
                          "id": 38062,
                          "name": "Forli 3, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38075,
                          "name": "Shymkent 2 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38079,
                          "name": "Shymkent II - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38080,
                          "name": "Pau - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38088,
                          "name": "Sibiu - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38090,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38155,
                          "name": "Zagreb - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38221,
                          "name": "Roseto Degli Abruzzi - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38225,
                          "name": "Roseto Degli Abruzzi - Italy",
                          "importance": 0
                        },
                        {
                          "id": 38255,
                          "name": "Roseto Degli Abruzzi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 38352,
                          "name": "Coquimbo - Chile",
                          "importance": 0
                        },
                        {
                          "id": 38359,
                          "name": "Orlando - USA",
                          "importance": 0
                        },
                        {
                          "id": 38416,
                          "name": "Orlando, USA",
                          "importance": 0
                        },
                        {
                          "id": 38442,
                          "name": "Orlando 2 - USA",
                          "importance": 0
                        },
                        {
                          "id": 38560,
                          "name": "Shenzhen II - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38562,
                          "name": "Samarkand - Uzbekistan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38566,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38572,
                          "name": "Fergana - Uzbekistan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38576,
                          "name": "Puerto Vallarta - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38582,
                          "name": "Puerto Vallarta, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38796,
                          "name": "Salinas - Ecuador - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38922,
                          "name": "Blumenau - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 38949,
                          "name": "Luedenscheid, Germany",
                          "importance": 0
                        },
                        {
                          "id": 38966,
                          "name": "Glasgow - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 38973,
                          "name": "Glasgow, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39057,
                          "name": "Heilbronn - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39059,
                          "name": "Heilbronn - Germany",
                          "importance": 0
                        },
                        {
                          "id": 39099,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39114,
                          "name": "Poznan - Poland",
                          "importance": 0
                        },
                        {
                          "id": 39115,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 39128,
                          "name": "Poznan - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39161,
                          "name": "Poznan, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39222,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 39226,
                          "name": "Prague 2 - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39227,
                          "name": "Prague 2 - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 39255,
                          "name": "Forli 3 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39272,
                          "name": "Barletta - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39274,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39396,
                          "name": "Puerto Vallarta - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39397,
                          "name": "Puerto Vallarta - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 39416,
                          "name": "Puerto Vallarta, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39432,
                          "name": "Puerto Vallarta, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 39441,
                          "name": "Aguacalientes - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39457,
                          "name": "Puerto Vallarta, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39541,
                          "name": "Puerto Vallarta, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 39551,
                          "name": "Lyon - France",
                          "importance": 0
                        },
                        {
                          "id": 39554,
                          "name": "Lyon - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39572,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 39611,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 39616,
                          "name": "Tallahassee - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39617,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39625,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 39802,
                          "name": "Vancouver - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 40335,
                          "name": "Augsburg - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40346,
                          "name": "Augsburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40441,
                          "name": "Salzburg-Anif - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40486,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40489,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40500,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40535,
                          "name": "Rome - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40541,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40560,
                          "name": "Napoli - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40566,
                          "name": "Oeiras 3, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40573,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40580,
                          "name": "Guayaquil - Ecuador - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40588,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40601,
                          "name": "Salinas - Ecuador - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 40606,
                          "name": "Salinas - Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 40693,
                          "name": "Salinas, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 40747,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 40837,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 40900,
                          "name": "Shymkent - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40927,
                          "name": "Shymkent, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 40998,
                          "name": "Bari - Italy",
                          "importance": 0
                        },
                        {
                          "id": 41036,
                          "name": "Bari - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41040,
                          "name": "Bari - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41050,
                          "name": "Forli 2 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41059,
                          "name": "Troisdorf - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41067,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41092,
                          "name": "Prague 2 - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41095,
                          "name": "Prague 2, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41103,
                          "name": "Ostrava - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41104,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41465,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group B",
                          "importance": 0
                        },
                        {
                          "id": 41558,
                          "name": "Bengaluru 2 - India",
                          "importance": 0
                        },
                        {
                          "id": 41560,
                          "name": "Surbiton - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 41583,
                          "name": "Bengaluru 2 - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41589,
                          "name": "Blois - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41590,
                          "name": "Blois - France",
                          "importance": 0
                        },
                        {
                          "id": 41606,
                          "name": "Blois, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41615,
                          "name": "Nur Sultan 4 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41699,
                          "name": "Troisdorf - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41702,
                          "name": "Troisdorf - Germany",
                          "importance": 0
                        },
                        {
                          "id": 41721,
                          "name": "Troisdorf, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41740,
                          "name": "Troisdorf, Germany",
                          "importance": 0
                        },
                        {
                          "id": 41825,
                          "name": "Ortisei - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41827,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41832,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 41879,
                          "name": "Tunis - Tunisia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41881,
                          "name": "Tunis - Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 41905,
                          "name": "Tunis, Tunisia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 41950,
                          "name": "Perugia - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42059,
                          "name": "Bucharest - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42060,
                          "name": "Bucharest - Romania",
                          "importance": 0
                        },
                        {
                          "id": 42234,
                          "name": "Charlottesville - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42242,
                          "name": "Charlottesville - USA",
                          "importance": 0
                        },
                        {
                          "id": 42279,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42293,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 42301,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42302,
                          "name": "Zagreb - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 42306,
                          "name": "Zagreb, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 42317,
                          "name": "Zagreb - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42326,
                          "name": "Zagreb, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 42347,
                          "name": "Zagreb, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42387,
                          "name": "Zagreb, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 42396,
                          "name": "Zagreb, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42411,
                          "name": "Zagreb, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42412,
                          "name": "Forli 6 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42443,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 42478,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42482,
                          "name": "Charlottesville - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42485,
                          "name": "Cleveland - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42488,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42505,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42519,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group A",
                          "importance": 0
                        },
                        {
                          "id": 42521,
                          "name": "Santo Domingo - Dominican Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42523,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42526,
                          "name": "Biella 6 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42531,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42534,
                          "name": "Oeiras 4 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42535,
                          "name": "Oeiras 4, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42536,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42537,
                          "name": "Zadar - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42538,
                          "name": "Zadar, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42598,
                          "name": "Prostejov - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42600,
                          "name": "Prostejov - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42609,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42617,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42636,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42646,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42662,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42673,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42682,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42697,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 42741,
                          "name": "Napoli 2 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 42743,
                          "name": "Napoli 2 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 42889,
                          "name": "Houston - USA",
                          "importance": 0
                        },
                        {
                          "id": 42895,
                          "name": "Cassis - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 42898,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43355,
                          "name": "Campinas - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43356,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43379,
                          "name": "Binghamton - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 43399,
                          "name": "Concepcion 2 - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43406,
                          "name": "Coquimbo - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43407,
                          "name": "Coquimbo, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43424,
                          "name": "Quimper 2 - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 43642,
                          "name": "Vicenza - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 43643,
                          "name": "Vicenza - Italy",
                          "importance": 0
                        },
                        {
                          "id": 43644,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 43645,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 43648,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45128,
                          "name": "Grodzisk Mazowiecki - Poland",
                          "importance": 0
                        },
                        {
                          "id": 45132,
                          "name": "Cordenons - Italy",
                          "importance": 0
                        },
                        {
                          "id": 45139,
                          "name": "Temuco - Chile",
                          "importance": 0
                        },
                        {
                          "id": 45141,
                          "name": "Maia - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 45142,
                          "name": "Yokkaichi - Japan",
                          "importance": 0
                        },
                        {
                          "id": 45143,
                          "name": "Busan - Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 45144,
                          "name": "Manzanillo - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 45145,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45147,
                          "name": "Chicago - USA",
                          "importance": 0
                        },
                        {
                          "id": 45148,
                          "name": "Campinas - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 45151,
                          "name": "Manzanillo - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45152,
                          "name": "Temuco - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45153,
                          "name": "Yokkaichi - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45156,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 45161,
                          "name": "Madrid - Spain",
                          "importance": 0
                        },
                        {
                          "id": 45170,
                          "name": "Grodzisk Mazowiecki, Poland",
                          "importance": 0
                        },
                        {
                          "id": 45171,
                          "name": "Grodzisk Mazowiecki - Poland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45172,
                          "name": "Monza - Italy",
                          "importance": 0
                        },
                        {
                          "id": 45173,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 45174,
                          "name": "Oeiras 3, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 45178,
                          "name": "Wuning - China",
                          "importance": 0
                        },
                        {
                          "id": 45179,
                          "name": "Wuning 2 - China",
                          "importance": 0
                        },
                        {
                          "id": 45181,
                          "name": "Mexico City - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45182,
                          "name": "Madrid - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45183,
                          "name": "Monza - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45184,
                          "name": "Oeiras 3, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45186,
                          "name": "Cordenons - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45187,
                          "name": "Bonn - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45188,
                          "name": "Busan - Korea Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45189,
                          "name": "Chicago, USA",
                          "importance": 0
                        },
                        {
                          "id": 45193,
                          "name": "Cordenons - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45196,
                          "name": "Bonn - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45199,
                          "name": "Grodzisk Mazowiecki, Poland",
                          "importance": 0
                        },
                        {
                          "id": 45200,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 45201,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 45202,
                          "name": "Santa Cruz - Bolivia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45203,
                          "name": "Chicago - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45206,
                          "name": "Oeiras 3, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45208,
                          "name": "Tallahassee - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45211,
                          "name": "Chicago, USA",
                          "importance": 0
                        },
                        {
                          "id": 45224,
                          "name": "Tallahassee - USA",
                          "importance": 0
                        },
                        {
                          "id": 45232,
                          "name": "Matsuyama - Japan",
                          "importance": 0
                        },
                        {
                          "id": 45233,
                          "name": "Kobe - Japan",
                          "importance": 0
                        },
                        {
                          "id": 45234,
                          "name": "Kobe - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45235,
                          "name": "Helsinki - Finland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45236,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 45237,
                          "name": "Helsinki - Finland",
                          "importance": 0
                        },
                        {
                          "id": 45239,
                          "name": "Lima 2 - Peru - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45242,
                          "name": "Montevideo - Uruguay - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45246,
                          "name": "Champaign - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45249,
                          "name": "Drummondville - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45252,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45266,
                          "name": "Grodzisk Mazowiecki, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45376,
                          "name": "Santiago - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45387,
                          "name": "Chicago, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45390,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45396,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45402,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45409,
                          "name": "Columbus - USA",
                          "importance": 0
                        },
                        {
                          "id": 45411,
                          "name": "Saint-Tropez - France",
                          "importance": 0
                        },
                        {
                          "id": 45416,
                          "name": "Orleans - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45421,
                          "name": "Charleston - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45423,
                          "name": "Antofagasta - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45424,
                          "name": "Lisbon - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45425,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45426,
                          "name": "Nonthaburi 4 - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45432,
                          "name": "Chisinau - Moldova",
                          "importance": 0
                        },
                        {
                          "id": 45433,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45436,
                          "name": "Rosario - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 45437,
                          "name": "Chisinau - Moldova - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45439,
                          "name": "Pereira - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 45444,
                          "name": "Prostejov - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45446,
                          "name": "Cesenatico - Italy",
                          "importance": 0
                        },
                        {
                          "id": 45448,
                          "name": "Cleveland - USA",
                          "importance": 0
                        },
                        {
                          "id": 45450,
                          "name": "Little Rock - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45452,
                          "name": "Campinas - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45453,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45460,
                          "name": "Antofagasta - Chile",
                          "importance": 0
                        },
                        {
                          "id": 45461,
                          "name": "Charleston - USA",
                          "importance": 0
                        },
                        {
                          "id": 45463,
                          "name": "Tenerife - Spain",
                          "importance": 0
                        },
                        {
                          "id": 45465,
                          "name": "Grodzisk Mazowiecki - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45466,
                          "name": "Lisbon - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 45467,
                          "name": "Orleans - France",
                          "importance": 0
                        },
                        {
                          "id": 45469,
                          "name": "Cesenatico - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45471,
                          "name": "Brisbane - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45477,
                          "name": "Koblenz - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45482,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 45484,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 45485,
                          "name": "Rosario, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 45486,
                          "name": "Little Rock - USA",
                          "importance": 0
                        },
                        {
                          "id": 45492,
                          "name": "Brisbane 2 - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45493,
                          "name": "Little Rock, USA",
                          "importance": 0
                        },
                        {
                          "id": 45499,
                          "name": "Grodzisk Mazowiecki, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45504,
                          "name": "Chennai - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45505,
                          "name": "Saint Tropez - France",
                          "importance": 0
                        },
                        {
                          "id": 45507,
                          "name": "Saint-Tropez, France",
                          "importance": 0
                        },
                        {
                          "id": 45512,
                          "name": "Antofagasta, Chile",
                          "importance": 0
                        },
                        {
                          "id": 45533,
                          "name": "Pau - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45534,
                          "name": "Tenerife 2 - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45550,
                          "name": "Verona - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45558,
                          "name": "Chennai - India",
                          "importance": 0
                        },
                        {
                          "id": 45560,
                          "name": "Chicago, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45574,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45588,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45602,
                          "name": "Saint Tropez - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45638,
                          "name": "Tenerife 2 - Spain",
                          "importance": 0
                        },
                        {
                          "id": 45639,
                          "name": "Kaohsiung - Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 45642,
                          "name": "Mouilleron-Le-Captif - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45675,
                          "name": "Madrid - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45752,
                          "name": "Kaohsiung - Taiwan",
                          "importance": 0
                        },
                        {
                          "id": 45794,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 45796,
                          "name": "Eckental - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 45892,
                          "name": "Indian Wells - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45894,
                          "name": "Rio de Janeiro - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 45906,
                          "name": "Santiago - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 45941,
                          "name": "Cali - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46020,
                          "name": "Chicago, USA",
                          "importance": 0
                        },
                        {
                          "id": 46126,
                          "name": "Banja Luka - Bosnia & Herzegovina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46154,
                          "name": "Columbus - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46155,
                          "name": "Pereira - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46160,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 46167,
                          "name": "Trnava - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46173,
                          "name": "Banja Luka - Bosnia and Herzegovina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46180,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 46181,
                          "name": "Saint Tropez, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46187,
                          "name": "Bordeaux - France",
                          "importance": 0
                        },
                        {
                          "id": 46193,
                          "name": "Turin - Italy",
                          "importance": 0
                        },
                        {
                          "id": 46201,
                          "name": "Manama - Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 46206,
                          "name": "Saint-Tropez - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46211,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46214,
                          "name": "Brisbane - Australia",
                          "importance": 0
                        },
                        {
                          "id": 46218,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46224,
                          "name": "Bordeaux - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46231,
                          "name": "Ho Chi Ming City - Vietnam",
                          "importance": 0
                        },
                        {
                          "id": 46236,
                          "name": "Oeiras 5 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46237,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 46239,
                          "name": "Tunis - Tunisia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46246,
                          "name": "Prague 3 - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46248,
                          "name": "Cesenatico - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46250,
                          "name": "Turin - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46260,
                          "name": "Zagreb, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46262,
                          "name": "Oeiras 2 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 46266,
                          "name": "San Diego - USA",
                          "importance": 0
                        },
                        {
                          "id": 46272,
                          "name": "Skopje - North Macedonia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46274,
                          "name": "Buenos Aires 2 - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46276,
                          "name": "Concepcion - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46277,
                          "name": "Tbilisi - Georgia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46278,
                          "name": "Rosario - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46290,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 46298,
                          "name": "Tbilisi - Georgia",
                          "importance": 0
                        },
                        {
                          "id": 46302,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46309,
                          "name": "Brisbane - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46333,
                          "name": "Cleveland - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46335,
                          "name": "Lima - Peru - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46347,
                          "name": "Koblenz - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46354,
                          "name": "Marbella - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46355,
                          "name": "Lexington - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46361,
                          "name": "Split - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46371,
                          "name": "Tenerife - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46381,
                          "name": "Zhangjiagang - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46406,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46410,
                          "name": "Zhangjiagang - China",
                          "importance": 0
                        },
                        {
                          "id": 46414,
                          "name": "Bucharest - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46422,
                          "name": "Antalya 3 - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46439,
                          "name": "Tenerife 2, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46459,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46461,
                          "name": "Barcelona - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46483,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46494,
                          "name": "Rosario, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46523,
                          "name": "Chennai, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46528,
                          "name": "Concepcion, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46539,
                          "name": "Little Rock, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46569,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46571,
                          "name": "Concepcion 2 - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46574,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46583,
                          "name": "Morelos - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46585,
                          "name": "Coquimbo - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46612,
                          "name": "Antofagasta, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46624,
                          "name": "Traralgon - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46650,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 46660,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46662,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46665,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 46670,
                          "name": "Bonn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 46685,
                          "name": "Lincoln (NE) - USA",
                          "importance": 0
                        },
                        {
                          "id": 46692,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 46693,
                          "name": "Sanremo - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46694,
                          "name": "Glasgow - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 46695,
                          "name": "Phan Thiet - Vietnam",
                          "importance": 0
                        },
                        {
                          "id": 46697,
                          "name": "Itajai - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46700,
                          "name": "Oeiras - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46712,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46720,
                          "name": "Itajai - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 46722,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46729,
                          "name": "Phan Thiet - Vietnam - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46732,
                          "name": "Oeiras - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 46743,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 46744,
                          "name": "Soma Bay - Egypt - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46745,
                          "name": "Oeiras, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 46747,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46770,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 46779,
                          "name": "Soma Bay - Egypt",
                          "importance": 0
                        },
                        {
                          "id": 46850,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46862,
                          "name": "Rio de Janeiro - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46881,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 46895,
                          "name": "Antofagasta, Chile",
                          "importance": 0
                        },
                        {
                          "id": 46897,
                          "name": "Kyoto - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46902,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46923,
                          "name": "Portoroz - Slovenia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46934,
                          "name": "Bordeaux - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46942,
                          "name": "Manama - Bahrain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46947,
                          "name": "Guangzhou - China",
                          "importance": 0
                        },
                        {
                          "id": 46959,
                          "name": "Zhangjiagang, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46960,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 46967,
                          "name": "Aix en Provence - France",
                          "importance": 0
                        },
                        {
                          "id": 46969,
                          "name": "Mauthausen - Austria",
                          "importance": 0
                        },
                        {
                          "id": 46973,
                          "name": "Nonthaburi 2 - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 46974,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 46983,
                          "name": "Turin - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 46991,
                          "name": "Guangzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 46992,
                          "name": "Ostrava - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 47001,
                          "name": "Madrid, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47006,
                          "name": "Roanne - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47019,
                          "name": "Parma - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47029,
                          "name": "Porto Alegre - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 47035,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 47036,
                          "name": "Little Rock, USA",
                          "importance": 0
                        },
                        {
                          "id": 47045,
                          "name": "Rome - Italy",
                          "importance": 0
                        },
                        {
                          "id": 47046,
                          "name": "San Miguel de Tucuman - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 47055,
                          "name": "Abidjan 2 - Cote d Ivoire - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47058,
                          "name": "Guangzhou - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47059,
                          "name": "Nonthaburi 2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 47064,
                          "name": "Roanne, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47067,
                          "name": "Aix en Provence - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47069,
                          "name": "Manama - Bahrain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47085,
                          "name": "Orleans - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47099,
                          "name": "Estoril - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47130,
                          "name": "Estoril - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 47132,
                          "name": "Mauthausen - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47154,
                          "name": "Ostrava - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47179,
                          "name": "Porto Alegre - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47186,
                          "name": "Blumenau - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47189,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 47198,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 47210,
                          "name": "Como - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47228,
                          "name": "Zhangjiagang, China",
                          "importance": 0
                        },
                        {
                          "id": 47258,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47274,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47287,
                          "name": "Szczecin - Poland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47300,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47302,
                          "name": "Manama, Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 47308,
                          "name": "Bengaluru - India",
                          "importance": 0
                        },
                        {
                          "id": 47312,
                          "name": "Canberra - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47313,
                          "name": "Ismaning - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47314,
                          "name": "Bengaluru - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47318,
                          "name": "Nonthaburi - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47319,
                          "name": "Nottingham - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47320,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47326,
                          "name": "Glasgow - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47328,
                          "name": "Antofagasta, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47329,
                          "name": "Nonthaburi 2 - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47336,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47339,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47347,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47358,
                          "name": "Nonthaburi, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47394,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47405,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47461,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 47467,
                          "name": "Little Rock, USA",
                          "importance": 0
                        },
                        {
                          "id": 47468,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 47493,
                          "name": "Guangzhou, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47507,
                          "name": "Las Vegas - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47531,
                          "name": "Lincoln (NE) - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47538,
                          "name": "Orlando 2 - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47604,
                          "name": "Seoul - South Korea - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47606,
                          "name": "Chennai, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47608,
                          "name": "Nonthaburi 2, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47622,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47630,
                          "name": "Turin, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47633,
                          "name": "Roanne, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47634,
                          "name": "Seoul - Korea Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47638,
                          "name": "San Benedetto - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47684,
                          "name": "Manama, Bahrain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47710,
                          "name": "Mexico City, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47738,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47759,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 47782,
                          "name": "Istanbul - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47814,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47837,
                          "name": "Glasgow, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 47842,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47854,
                          "name": "Lugano - Switzerland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47874,
                          "name": "Bratislava 2 - Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 47875,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47885,
                          "name": "Madrid, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47892,
                          "name": "Nonthaburi, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47894,
                          "name": "Split, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47896,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47906,
                          "name": "Rome - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47915,
                          "name": "Zhangjiagang, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47920,
                          "name": "Blumenau - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47926,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47928,
                          "name": "Cary II - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47932,
                          "name": "Bengaluru - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47934,
                          "name": "Cordoba - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 47940,
                          "name": "Hersonissos - Greece",
                          "importance": 0
                        },
                        {
                          "id": 47943,
                          "name": "Mauthausen - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47946,
                          "name": "Hersonissos 2 - Greece",
                          "importance": 0
                        },
                        {
                          "id": 47951,
                          "name": "Kigali 2 - Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 47954,
                          "name": "Thionville - France",
                          "importance": 0
                        },
                        {
                          "id": 47956,
                          "name": "Hersonissos - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47958,
                          "name": "Cordoba - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47960,
                          "name": "Kigali 2 - Rwanda - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47961,
                          "name": "Thionville - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47964,
                          "name": "Cherbourg - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 47965,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 47981,
                          "name": "Cherbourg - France",
                          "importance": 0
                        },
                        {
                          "id": 47984,
                          "name": "Thionville, France",
                          "importance": 0
                        },
                        {
                          "id": 47991,
                          "name": "Nonthaburi 2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 47993,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 47997,
                          "name": "Anning - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48001,
                          "name": "Barcelona - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48004,
                          "name": "Thionville, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48006,
                          "name": "Kigali 2, Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 48015,
                          "name": "Hersonissos 2 - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48019,
                          "name": "Lisbon - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48024,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48040,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48044,
                          "name": "Santiago - Chile",
                          "importance": 0
                        },
                        {
                          "id": 48052,
                          "name": "Barcelona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48056,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 48088,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 48089,
                          "name": "Poznan - Poland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48092,
                          "name": "Roseto Degli Abruzzi - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48104,
                          "name": "Seoul, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48119,
                          "name": "Loughborough - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48138,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48151,
                          "name": "Turin, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48153,
                          "name": "Orlando, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48189,
                          "name": "Zhangjiagang, China",
                          "importance": 0
                        },
                        {
                          "id": 48223,
                          "name": "Segovia - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48251,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48263,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 48267,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 48304,
                          "name": "Bergamo - Italy",
                          "importance": 0
                        },
                        {
                          "id": 48305,
                          "name": "Playford - Australia",
                          "importance": 0
                        },
                        {
                          "id": 48308,
                          "name": "Yokohama - Japan",
                          "importance": 0
                        },
                        {
                          "id": 48309,
                          "name": "Florianopolis - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 48310,
                          "name": "Islamabad - Pakistan",
                          "importance": 0
                        },
                        {
                          "id": 48311,
                          "name": "Belgrade - Serbia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48314,
                          "name": "Oeiras, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48317,
                          "name": "Manama 2 - Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 48318,
                          "name": "Montemar - Spain",
                          "importance": 0
                        },
                        {
                          "id": 48323,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48326,
                          "name": "Soma Bay, Egypt",
                          "importance": 0
                        },
                        {
                          "id": 48330,
                          "name": "Bergamo - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48334,
                          "name": "Montemar - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48335,
                          "name": "Maia - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48338,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48345,
                          "name": "Gatineau - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48348,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48350,
                          "name": "Bengaluru, India",
                          "importance": 0
                        },
                        {
                          "id": 48365,
                          "name": "Playford - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48368,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 48371,
                          "name": "Temuco - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48374,
                          "name": "Athens - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48384,
                          "name": "Bogota (Los Lagartos) - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48388,
                          "name": "Cordoba - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48392,
                          "name": "Chennai, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48398,
                          "name": "Islamabad - Pakistan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48399,
                          "name": "Bogota (Los Lagartos) - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 48403,
                          "name": "Forli - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48405,
                          "name": "Manama 2 - Bahrain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48409,
                          "name": "Nonthaburi 2, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48413,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48418,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48430,
                          "name": "Poprad Tatry - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48432,
                          "name": "Prague 2, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48433,
                          "name": "Thionville - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48471,
                          "name": "Brest - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48472,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48481,
                          "name": "Lugano - Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 48485,
                          "name": "San Diego, USA",
                          "importance": 0
                        },
                        {
                          "id": 48488,
                          "name": "Kigali 1 - Rwanda - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48493,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48494,
                          "name": "San Diego - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48499,
                          "name": "Glasgow, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48504,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48507,
                          "name": "Seoul, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48520,
                          "name": "Kigali - Rwanda - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48522,
                          "name": "Hersonissos - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48530,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 48535,
                          "name": "Liuzhou - China",
                          "importance": 0
                        },
                        {
                          "id": 48542,
                          "name": "Kigali 2 - Rwanda - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48545,
                          "name": "Almaty - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48548,
                          "name": "Thionville, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48559,
                          "name": "Todi - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48561,
                          "name": "Vancouver - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48568,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48569,
                          "name": "Acapulco - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 48573,
                          "name": "Oeiras, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 48584,
                          "name": "Winnetka - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48597,
                          "name": "Gwangju - South Korea",
                          "importance": 0
                        },
                        {
                          "id": 48598,
                          "name": "Iasi, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48610,
                          "name": "Oeiras 3, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 48614,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48622,
                          "name": "San Miguel de Tucuman, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 48634,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48642,
                          "name": "Luedenscheid - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48651,
                          "name": "Fairfield - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48652,
                          "name": "Nur-Sultan 1 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48654,
                          "name": "Gwangju, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 48656,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 48657,
                          "name": "Bangkok - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 48660,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 48669,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48672,
                          "name": "Cherbourg - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48673,
                          "name": "Napoli - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48674,
                          "name": "Acapulco - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48676,
                          "name": "Yokohama - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48678,
                          "name": "Gwangju - South Korea - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48683,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48685,
                          "name": "Oeiras 3, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48686,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 48690,
                          "name": "Kigali 2, Rwanda, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48691,
                          "name": "Cary - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48693,
                          "name": "Glasgow, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 48696,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48697,
                          "name": "Nur-Sultan, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48700,
                          "name": "Gwangju, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48702,
                          "name": "Gwangju, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48713,
                          "name": "Portoroz, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48717,
                          "name": "Little Rock - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48721,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48724,
                          "name": "Parma II - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48725,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48733,
                          "name": "San Miguel de Tucuman - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48740,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48747,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48750,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48756,
                          "name": "Little Rock, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48763,
                          "name": "Montemar - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48766,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48779,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48793,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48796,
                          "name": "Ludwigshafen - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48799,
                          "name": "Genova - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48808,
                          "name": "Barcelona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48811,
                          "name": "Bergamo - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48812,
                          "name": "Little Rock, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48818,
                          "name": "Biella 5 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48819,
                          "name": "Genoa - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48841,
                          "name": "Puerto Vallarta, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48853,
                          "name": "Newport Beach - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48862,
                          "name": "Bengaluru, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48863,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 48864,
                          "name": "Montevideo - Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 48867,
                          "name": "Champaign - USA",
                          "importance": 0
                        },
                        {
                          "id": 48877,
                          "name": "Sydney - Australia",
                          "importance": 0
                        },
                        {
                          "id": 48880,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48891,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48892,
                          "name": "Lyon (Decines-Charpieu) - France",
                          "importance": 0
                        },
                        {
                          "id": 48894,
                          "name": "Alicante - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48897,
                          "name": "Drummondville - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48899,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48900,
                          "name": "Lyon (Decines-Charpieu) - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48901,
                          "name": "Lugano - Switzerland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48905,
                          "name": "Sydney, Australia",
                          "importance": 0
                        },
                        {
                          "id": 48915,
                          "name": "Knoxville - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48916,
                          "name": "Biel - Switzerland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48920,
                          "name": "Guayaquil - Ecuador - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48936,
                          "name": "Sydney - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48937,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 48938,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 48945,
                          "name": "Florianopolis - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48946,
                          "name": "Guayaquil - Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 48950,
                          "name": "Brisbane, Australia",
                          "importance": 0
                        },
                        {
                          "id": 48955,
                          "name": "Punta del Este - Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 48956,
                          "name": "Quimper - France",
                          "importance": 0
                        },
                        {
                          "id": 48958,
                          "name": "Brisbane, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48959,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48965,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 48967,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 48972,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 48973,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48982,
                          "name": "Kyoto - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48983,
                          "name": "Soma Bay, Egypt, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48984,
                          "name": "Piracicaba - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 48995,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 49000,
                          "name": "Piracicaba - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49008,
                          "name": "Parma - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49014,
                          "name": "Trieste - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49015,
                          "name": "Phoenix, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49051,
                          "name": "Parma, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49057,
                          "name": "Trieste, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49070,
                          "name": "Gwangju - South Korea - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49077,
                          "name": "Gwangju - Korea Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49085,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49088,
                          "name": "Bengaluru, India",
                          "importance": 0
                        },
                        {
                          "id": 49091,
                          "name": "Antalya 2 - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49093,
                          "name": "Glasgow, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49096,
                          "name": "Zhangjiagang, China",
                          "importance": 0
                        },
                        {
                          "id": 49108,
                          "name": "Granby - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49158,
                          "name": "Acapulco - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49164,
                          "name": "Lugano, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49172,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49185,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49261,
                          "name": "Little Rock, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49273,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49275,
                          "name": "Florence - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49276,
                          "name": "Bendigo - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49277,
                          "name": "Liberec - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49279,
                          "name": "Nonthaburi 3 - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 49281,
                          "name": "Oeiras 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 49283,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49284,
                          "name": "Oeiras 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49285,
                          "name": "Gwangju - Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 49287,
                          "name": "Oeiras 3, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49291,
                          "name": "Punta del Este - Uruguay - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49292,
                          "name": "Oeiras 2 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49293,
                          "name": "Florence, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49301,
                          "name": "Montevideo, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49302,
                          "name": "Quimper - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49303,
                          "name": "Barcelona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49308,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49309,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49352,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49355,
                          "name": "Marbella, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49362,
                          "name": "Trieste, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49363,
                          "name": "Oeiras, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49364,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49386,
                          "name": "Split 2 - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49389,
                          "name": "Murcia - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49390,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49395,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 49398,
                          "name": "Olbia - Italy",
                          "importance": 0
                        },
                        {
                          "id": 49399,
                          "name": "Brest - France",
                          "importance": 0
                        },
                        {
                          "id": 49405,
                          "name": "Curitiba - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49408,
                          "name": "Hamburg - Germany",
                          "importance": 0
                        },
                        {
                          "id": 49412,
                          "name": "Mouilleron Le Captif - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49413,
                          "name": "Parma, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49414,
                          "name": "Gwangju, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49418,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 49419,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 49426,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 49428,
                          "name": "Hamburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 49432,
                          "name": "Mouilleron le Captif - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49433,
                          "name": "Costa do Sauipe - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49436,
                          "name": "Seville - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49439,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 49441,
                          "name": "Bengaluru, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49446,
                          "name": "Olbia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 49449,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 49454,
                          "name": "Curitiba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49462,
                          "name": "Lincoln (NE), USA",
                          "importance": 0
                        },
                        {
                          "id": 49465,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 49473,
                          "name": "Sioux Falls - USA",
                          "importance": 0
                        },
                        {
                          "id": 49474,
                          "name": "Almaty 2 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49476,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49482,
                          "name": "Kigali 1, Rwanda, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49485,
                          "name": "Hamburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 49507,
                          "name": "Traralgon - Australia",
                          "importance": 0
                        },
                        {
                          "id": 49509,
                          "name": "Suzhou - China",
                          "importance": 0
                        },
                        {
                          "id": 49529,
                          "name": "Lyon (Decines-Charpieu) - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49538,
                          "name": "Marbella, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49549,
                          "name": "Canberra II - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49550,
                          "name": "Suzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 49558,
                          "name": "Bengaluru, India",
                          "importance": 0
                        },
                        {
                          "id": 49561,
                          "name": "Antalya 4 - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49576,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49580,
                          "name": "Winnetka - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49583,
                          "name": "Sydney, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49587,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49592,
                          "name": "Hamburg - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49601,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49602,
                          "name": "Sioux Falls - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49603,
                          "name": "Cortina - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49606,
                          "name": "Las Palmas 2 - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49607,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49610,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49611,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 49614,
                          "name": "Florianopolis, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49619,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49623,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 49628,
                          "name": "Suzhou - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49643,
                          "name": "Ilkley - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49649,
                          "name": "Calgary - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49654,
                          "name": "Brest - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49667,
                          "name": "Calgary, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49676,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49677,
                          "name": "Bengalaru - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49680,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 49681,
                          "name": "Oeiras - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49682,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49687,
                          "name": "Nonthaburi 3 - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49700,
                          "name": "Hamburg - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49719,
                          "name": "Little Rock, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49734,
                          "name": "Oeiras, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 49750,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49753,
                          "name": "Costa do Sauipe - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49776,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49793,
                          "name": "Salvador De Bahia - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49804,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 49809,
                          "name": "Sydney, Australia",
                          "importance": 0
                        },
                        {
                          "id": 49820,
                          "name": "Punta del Este, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 49821,
                          "name": "Salvador De Bahia - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49830,
                          "name": "Sioux Falls - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49837,
                          "name": "Montevideo, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49841,
                          "name": "Olbia - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49859,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49886,
                          "name": "Suzhou - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49893,
                          "name": "Sophia Antipolis - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49907,
                          "name": "Hamburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49943,
                          "name": "Sophia Antipolis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49947,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 49951,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49967,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 49969,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 49977,
                          "name": "Gwangju, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 49980,
                          "name": "Montevideo, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 49984,
                          "name": "Lugano, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50006,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50007,
                          "name": "Zhangjiagang - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50032,
                          "name": "Montevideo - Uruguay - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50045,
                          "name": "Curitiba - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50050,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50065,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50069,
                          "name": "Hamburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50070,
                          "name": "Bangkok II - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50076,
                          "name": "Sioux Falls, USA",
                          "importance": 0
                        },
                        {
                          "id": 50080,
                          "name": "Lincoln (NE), USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50083,
                          "name": "Traralgon - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50090,
                          "name": "Andria - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50097,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50107,
                          "name": "Oeiras, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50112,
                          "name": "Tashkent - Uzbekistan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50118,
                          "name": "Nonthaburi 3, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 50121,
                          "name": "Hamburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50124,
                          "name": "Almaty II - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50126,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 50128,
                          "name": "Hamburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 50130,
                          "name": "Nonthaburi 2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 50132,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50142,
                          "name": "Nonthaburi 2, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50146,
                          "name": "Calgary, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50156,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 50158,
                          "name": "Nottingham - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50164,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 50176,
                          "name": "Trnava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50180,
                          "name": "Columbus - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50182,
                          "name": "Sydney, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50191,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50194,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 50208,
                          "name": "Bengaluru, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50212,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50218,
                          "name": "Sydney, Australia",
                          "importance": 0
                        },
                        {
                          "id": 50240,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 50244,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 50264,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50268,
                          "name": "Milan - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50288,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50291,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50304,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50306,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 50312,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50317,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50333,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50335,
                          "name": "Punta del Este - Uruguay - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50349,
                          "name": "Aix en Provence - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50354,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 50356,
                          "name": "Punta del Este, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50365,
                          "name": "Florianopolis, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50370,
                          "name": "Oeiras 1 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 50374,
                          "name": "Bengalaru - India",
                          "importance": 0
                        },
                        {
                          "id": 50383,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50392,
                          "name": "Roanne - France",
                          "importance": 0
                        },
                        {
                          "id": 50397,
                          "name": "Calgary, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50414,
                          "name": "Bratislava - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50420,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50435,
                          "name": "Roanne, France",
                          "importance": 0
                        },
                        {
                          "id": 50437,
                          "name": "Bratislava 2 - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50499,
                          "name": "Punta del Este, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50500,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 50505,
                          "name": "Gwangju, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 50524,
                          "name": "Santiago 3 - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50532,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50540,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50542,
                          "name": "Olbia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50549,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50551,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 50556,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50558,
                          "name": "Sydney, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50568,
                          "name": "Lugano, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50590,
                          "name": "Corrientes - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50601,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50607,
                          "name": "Losinj - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50617,
                          "name": "Corrientes, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50621,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50623,
                          "name": "Bangalore - India",
                          "importance": 0
                        },
                        {
                          "id": 50628,
                          "name": "Hamburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50632,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50648,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 50670,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50682,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 50685,
                          "name": "Oeiras 1 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50699,
                          "name": "Salvador De Bahia - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50727,
                          "name": "Sioux Falls, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50738,
                          "name": "Nonthaburi 3, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50744,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50757,
                          "name": "Bratislava 2, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50770,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 50771,
                          "name": "Gwangju, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 50779,
                          "name": "Buenos Aires 2 - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 50782,
                          "name": "Jingshan - China",
                          "importance": 0
                        },
                        {
                          "id": 50784,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50789,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50796,
                          "name": "Buenos Aires 2 - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50797,
                          "name": "Jingshan - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50799,
                          "name": "Las Vegas - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50800,
                          "name": "Buenos Aires 2, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 50805,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 50808,
                          "name": "Oeiras 1, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 50814,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50816,
                          "name": "Mouilleron le Captif - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50824,
                          "name": "Las Vegas - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50829,
                          "name": "Mouilleron le Captif - France",
                          "importance": 0
                        },
                        {
                          "id": 50830,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 50833,
                          "name": "Punta del Este, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 50835,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50836,
                          "name": "Mouilleron-Le-Captif - France",
                          "importance": 0
                        },
                        {
                          "id": 50852,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50853,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50866,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 50872,
                          "name": "Gimcheon - South Korea - Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50888,
                          "name": "Roanne - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50889,
                          "name": "Gimcheon - South Korea - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50890,
                          "name": "Launceston - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50898,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50903,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50906,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 50907,
                          "name": "Villena - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50923,
                          "name": "Indian Wells - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50925,
                          "name": "Villena - Spain",
                          "importance": 0
                        },
                        {
                          "id": 50928,
                          "name": "Florianopolis, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50931,
                          "name": "Villena, Spain",
                          "importance": 0
                        },
                        {
                          "id": 50937,
                          "name": "Salinas, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 50940,
                          "name": "Indian Wells, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50952,
                          "name": "Bangkok - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50965,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 50975,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50981,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50985,
                          "name": "Newport Beach - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 50987,
                          "name": "Braga - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51005,
                          "name": "Braga - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 51006,
                          "name": "Ambato - Ecuador - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51011,
                          "name": "Chennai - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51012,
                          "name": "Zagreb, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51024,
                          "name": "Ambato, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51028,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51037,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51043,
                          "name": "Tiburon - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51048,
                          "name": "Nonthaburi 3, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 51063,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 51064,
                          "name": "Tiburon - USA",
                          "importance": 0
                        },
                        {
                          "id": 51066,
                          "name": "Sarasota - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51076,
                          "name": "Yokohama - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51080,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51099,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51114,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51134,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 51141,
                          "name": "Lugano, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51145,
                          "name": "Almaty, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51146,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51148,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51162,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51198,
                          "name": "Santos - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51203,
                          "name": "Surbiton - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51212,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51213,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51225,
                          "name": "Lima 2 - Peru - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51236,
                          "name": "Bratislava 2, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51240,
                          "name": "Lima 3 - Peru",
                          "importance": 0
                        },
                        {
                          "id": 51254,
                          "name": "Buenos Aires 2 - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51261,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51263,
                          "name": "Oeiras 1, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51267,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51269,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 51274,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51288,
                          "name": "Mouilleron-Le-Captif - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51314,
                          "name": "Jingshan - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51334,
                          "name": "Villena, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51337,
                          "name": "Punta del Este, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51338,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51339,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51348,
                          "name": "Nonthaburi 3, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51371,
                          "name": "Manama, Bahrain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51373,
                          "name": "Punta del Este, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 51385,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51387,
                          "name": "Gran Canaria - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51412,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51419,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51445,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51459,
                          "name": "Bratislava 2, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51468,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 51469,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51474,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51476,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51484,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51498,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51518,
                          "name": "Savannah - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51520,
                          "name": "Mouilleron-Le-Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 51524,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 51537,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51552,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51574,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 51576,
                          "name": "Split, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51579,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51580,
                          "name": "Shanghai - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51590,
                          "name": "Indian Wells, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51599,
                          "name": "Tiburon, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51603,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51610,
                          "name": "Alicante - Spain",
                          "importance": 0
                        },
                        {
                          "id": 51620,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 51630,
                          "name": "Las Palmas 1 - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51699,
                          "name": "Split, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51703,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51722,
                          "name": "Tulln - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51726,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51727,
                          "name": "Roanne, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51736,
                          "name": "Potchefstroom 2 - South Africa - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51739,
                          "name": "Marbella, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51742,
                          "name": "Lima 2, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51748,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51749,
                          "name": "Potchefstroom 2 - South Africa",
                          "importance": 0
                        },
                        {
                          "id": 51750,
                          "name": "Szczecin - Poland",
                          "importance": 0
                        },
                        {
                          "id": 51751,
                          "name": "Tulln, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51752,
                          "name": "Istanbul - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 51754,
                          "name": "Rennes - France",
                          "importance": 0
                        },
                        {
                          "id": 51757,
                          "name": "Biella - Italy",
                          "importance": 0
                        },
                        {
                          "id": 51763,
                          "name": "Guangzhou 2 - China",
                          "importance": 0
                        },
                        {
                          "id": 51764,
                          "name": "Targu Mures - Romania",
                          "importance": 0
                        },
                        {
                          "id": 51766,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 51767,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 51768,
                          "name": "Biella 1 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 51769,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51772,
                          "name": "Winston Salem - USA",
                          "importance": 0
                        },
                        {
                          "id": 51773,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 51777,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51780,
                          "name": "Rennes - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51786,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51787,
                          "name": "Mouilleron-Le-Captif, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51789,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51791,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51799,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51805,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51806,
                          "name": "Winston Salem - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51807,
                          "name": "Dallas - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51809,
                          "name": "Bad Waltersdorf - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51820,
                          "name": "Bad Waltersdorf - Austria",
                          "importance": 0
                        },
                        {
                          "id": 51828,
                          "name": "Alicante - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51831,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 51845,
                          "name": "Aptos - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51853,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 51856,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51862,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51875,
                          "name": "Florianopolis - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 51889,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 51890,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51896,
                          "name": "Florianopolis - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51900,
                          "name": "Columbus III - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51904,
                          "name": "Mouilleron-Le-Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 51907,
                          "name": "Guadalajara - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51910,
                          "name": "Houston - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51911,
                          "name": "Lima 2 - Peru",
                          "importance": 0
                        },
                        {
                          "id": 51921,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51937,
                          "name": "Saint Tropez, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 51949,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51961,
                          "name": "Split 1 - Croatia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51963,
                          "name": "Brasilia - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51978,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51980,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51983,
                          "name": "Potchefstroom 2 - South Africa - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51989,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51990,
                          "name": "Alicante, Spain",
                          "importance": 0
                        },
                        {
                          "id": 51992,
                          "name": "Brasilia, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 51993,
                          "name": "Tulln, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52001,
                          "name": "Launceston, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52007,
                          "name": "Columbus - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52012,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52030,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 52040,
                          "name": "Szczecin - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52041,
                          "name": "Potchefstroom - South Africa - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52051,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52052,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52053,
                          "name": "Targu Mures 2 - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52071,
                          "name": "Potchefstroom 1 - South Africa - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52081,
                          "name": "Villa Maria - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52082,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52087,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52098,
                          "name": "Villa Maria - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 52106,
                          "name": "Zadar, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52112,
                          "name": "Mallorca - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52117,
                          "name": "Tiburon, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52134,
                          "name": "Tigre 2 - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 52142,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52155,
                          "name": "L'Aquila - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52162,
                          "name": "Biella - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52164,
                          "name": "Biella 1 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52172,
                          "name": "Biella 3 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52174,
                          "name": "Punta del Este, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52186,
                          "name": "Bad Waltersdorf, Austria",
                          "importance": 0
                        },
                        {
                          "id": 52187,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 52192,
                          "name": "Tulln, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52203,
                          "name": "Amersfoort, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52209,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52210,
                          "name": "St Petersburgh 2 - Russia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52225,
                          "name": "Yokkaichi, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52232,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52236,
                          "name": "Guangzhou 2 - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52238,
                          "name": "Lille - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52239,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52240,
                          "name": "Alicante, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52242,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52243,
                          "name": "Rennes - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52244,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52248,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 52258,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 52259,
                          "name": "Targu Mures - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52273,
                          "name": "Winston Salem - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52280,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 52285,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 52286,
                          "name": "Biella 7 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52289,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52296,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52302,
                          "name": "Lima 2, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52303,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52305,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52309,
                          "name": "Brasilia, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52312,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 52313,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52315,
                          "name": "Alicante, Spain",
                          "importance": 0
                        },
                        {
                          "id": 52317,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52327,
                          "name": "St. Brieuc - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52340,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52341,
                          "name": "Indian Wells, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52348,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52356,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52365,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52367,
                          "name": "Mouilleron-Le-Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 52369,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52376,
                          "name": "San Marino - San Marino - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52390,
                          "name": "Buenos Aires 2, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52396,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52409,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52411,
                          "name": "Panama City - Panama - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52420,
                          "name": "Tigre 2 - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52427,
                          "name": "Alicante, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52439,
                          "name": "Bangkok - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52459,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52468,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52471,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 52493,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 52494,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52546,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52551,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52562,
                          "name": "Tiburon, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52572,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 52577,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52597,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52603,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 52611,
                          "name": "Lima 2, Peru",
                          "importance": 0
                        },
                        {
                          "id": 52618,
                          "name": "Villa Maria, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52649,
                          "name": "Sao Paulo - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52651,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52661,
                          "name": "Panama City, Panama, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52668,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52673,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52674,
                          "name": "Tigre 2 - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52680,
                          "name": "Bad Waltersdorf, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52696,
                          "name": "Buenos Aires 2, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 52701,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 52702,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 52705,
                          "name": "Panama City - Panama - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52743,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52745,
                          "name": "Tigre 2, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52749,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52759,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52786,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52799,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52806,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 52817,
                          "name": "Alicante, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52819,
                          "name": "Manacor - Mallorca - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52830,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52865,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 52872,
                          "name": "Bendigo, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52876,
                          "name": "Lima 2, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52889,
                          "name": "Alicante, Spain",
                          "importance": 0
                        },
                        {
                          "id": 52891,
                          "name": "Cary 2 - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52894,
                          "name": "Villa Maria, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 52904,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 52908,
                          "name": "Genoa - Italy",
                          "importance": 0
                        },
                        {
                          "id": 52911,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52914,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52925,
                          "name": "Mouilleron-Le-Captif, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 52926,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 52938,
                          "name": "Seville - Spain",
                          "importance": 0
                        },
                        {
                          "id": 52941,
                          "name": "Zhangjiagang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52959,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 52960,
                          "name": "Shanghai - China",
                          "importance": 0
                        },
                        {
                          "id": 52968,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 52974,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 52980,
                          "name": "Tulln - Austria",
                          "importance": 0
                        },
                        {
                          "id": 52988,
                          "name": "Tigre 2, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 52995,
                          "name": "Tulln, Austria",
                          "importance": 0
                        },
                        {
                          "id": 53004,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53008,
                          "name": "Lima 2, Peru",
                          "importance": 0
                        },
                        {
                          "id": 53010,
                          "name": "Cassis - France",
                          "importance": 0
                        },
                        {
                          "id": 53011,
                          "name": "Buenos Aires 2, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53013,
                          "name": "Como - Italy",
                          "importance": 0
                        },
                        {
                          "id": 53016,
                          "name": "Istanbul - Turkiye",
                          "importance": 0
                        },
                        {
                          "id": 53021,
                          "name": "Shenzhen II, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53038,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53060,
                          "name": "Launceston, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53079,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53080,
                          "name": "Bengaluru 2 - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53087,
                          "name": "Porto 2 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 53088,
                          "name": "Manacor - Spain",
                          "importance": 0
                        },
                        {
                          "id": 53091,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53092,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53093,
                          "name": "Warsaw - Poland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53094,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 53102,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 53128,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53133,
                          "name": "Mouilleron-Le-Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 53145,
                          "name": "Ho Chi Ming City - Vietnam - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53151,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53160,
                          "name": "Villa Maria, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53168,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 53171,
                          "name": "Buenos Aires 2, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 53173,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53185,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53195,
                          "name": "Bastad - Sweden - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53207,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53213,
                          "name": "Zhangjiagang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53226,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 53234,
                          "name": "Almaty, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53235,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53247,
                          "name": "Genoa - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53271,
                          "name": "Kobe - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53278,
                          "name": "Fairfield - USA",
                          "importance": 0
                        },
                        {
                          "id": 53279,
                          "name": "Houston, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53284,
                          "name": "Tigre 2, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53290,
                          "name": "Lima 2, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53296,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 53305,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53314,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 53355,
                          "name": "Bastad, Sweden, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53357,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53362,
                          "name": "Shanghai - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53370,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 53374,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53375,
                          "name": "Seville - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53378,
                          "name": "Istanbul - Turkiye - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53382,
                          "name": "Quimper - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53389,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53390,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53392,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53400,
                          "name": "Scheveningen - Netherlands - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53403,
                          "name": "Tulln - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53406,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53410,
                          "name": "Monterrey - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 53418,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53420,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 53422,
                          "name": "Portoroz, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53424,
                          "name": "Alicante, Spain",
                          "importance": 0
                        },
                        {
                          "id": 53437,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53446,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53461,
                          "name": "Istanbul - Turkiye - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53463,
                          "name": "Buenos Aires 2, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53468,
                          "name": "Ningbo - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53470,
                          "name": "Buenos Aires 2 - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 53474,
                          "name": "Cassis - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53489,
                          "name": "Genoa, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53490,
                          "name": "Taipei - Chinese Taipei - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53492,
                          "name": "Shanghai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53506,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53508,
                          "name": "Como - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53512,
                          "name": "Taipei, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53540,
                          "name": "Mouilleron Le Captif - France",
                          "importance": 0
                        },
                        {
                          "id": 53589,
                          "name": "Istanbul, Turkiye, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53590,
                          "name": "Canberra II, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53596,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53608,
                          "name": "Tulln, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53627,
                          "name": "Porto 2 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53635,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53646,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 53648,
                          "name": "Manacor - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53673,
                          "name": "Milan - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53676,
                          "name": "Santiago 2 - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53682,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53684,
                          "name": "Blois - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53686,
                          "name": "Santiago 2, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53704,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53707,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53711,
                          "name": "Istanbul II - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53723,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53731,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 53734,
                          "name": "Monterrey - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53759,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 53763,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53764,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 53794,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 53804,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53806,
                          "name": "Fairfield - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 53811,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53833,
                          "name": "Buenos Aires 2, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53834,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 53871,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53877,
                          "name": "Porto 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 53878,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 53886,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53897,
                          "name": "Taipei, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53917,
                          "name": "Manacor, Spain",
                          "importance": 0
                        },
                        {
                          "id": 53925,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 53930,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53932,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53934,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 53935,
                          "name": "Mestre - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53953,
                          "name": "Cary II - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53960,
                          "name": "Luedenscheid, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53970,
                          "name": "Cary 2 - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 53982,
                          "name": "Tulln, Austria",
                          "importance": 0
                        },
                        {
                          "id": 54037,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54047,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54077,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54087,
                          "name": "Buenos Aires 2, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54090,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54138,
                          "name": "Santa Cruz 2 - Bolivia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54139,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54141,
                          "name": "Shanghai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54143,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54144,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 54157,
                          "name": "Santa Cruz 2, Bolivia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54161,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 54162,
                          "name": "Andria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54179,
                          "name": "Andria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54196,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54199,
                          "name": "Genoa, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54209,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54229,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54233,
                          "name": "Luedenscheid, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54234,
                          "name": "Nur-Sultan II - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54235,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 54239,
                          "name": "Nur-Sultan 2 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54241,
                          "name": "Segovia - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54246,
                          "name": "Playford City - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54250,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 54251,
                          "name": "Monterrey, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54253,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54260,
                          "name": "Playford - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54300,
                          "name": "Gwangju, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54302,
                          "name": "Tulln, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54305,
                          "name": "Braga - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54314,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54320,
                          "name": "Binghamton - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54338,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54339,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 54346,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54363,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 54365,
                          "name": "Braga, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 54377,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54383,
                          "name": "Busan - Korea Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54419,
                          "name": "Maia, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54425,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54430,
                          "name": "Playford, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54431,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54435,
                          "name": "Busan, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54446,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 54447,
                          "name": "Calgary, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54459,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54465,
                          "name": "Malaga - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54467,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54471,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54476,
                          "name": "Malaga, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54488,
                          "name": "Porto 2, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54495,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54498,
                          "name": "Alicante, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54500,
                          "name": "Manama, Bahrain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54515,
                          "name": "Nur Sultan 3 - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54519,
                          "name": "Tulln, Austria",
                          "importance": 0
                        },
                        {
                          "id": 54526,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54534,
                          "name": "Manacor, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54538,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54549,
                          "name": "Busan - South Korea - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54555,
                          "name": "Zhuhai - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54569,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 54595,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54603,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54608,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54616,
                          "name": "Taipei - Chinese Taipei - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54635,
                          "name": "Alicante, Spain",
                          "importance": 0
                        },
                        {
                          "id": 54665,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54667,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54681,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54691,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54705,
                          "name": "Pune - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54708,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54713,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54736,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54753,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54774,
                          "name": "Manama, Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 54780,
                          "name": "Barranquilla - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 54790,
                          "name": "Cancun - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 54804,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54805,
                          "name": "Zhangjiagang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54809,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54811,
                          "name": "Hersonissos 3 - Greece",
                          "importance": 0
                        },
                        {
                          "id": 54812,
                          "name": "Fairfield, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54813,
                          "name": "Tulln, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54817,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 54819,
                          "name": "Sumter - USA",
                          "importance": 0
                        },
                        {
                          "id": 54836,
                          "name": "Mallorca - Spain",
                          "importance": 0
                        },
                        {
                          "id": 54838,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 54839,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 54856,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54862,
                          "name": "Cancun - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54867,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54870,
                          "name": "Rio de Janeiro, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54873,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54901,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54915,
                          "name": "Hersonissos 3 - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54918,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54922,
                          "name": "Sofia - Bulgaria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54926,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54946,
                          "name": "Manama, Bahrain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54947,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54952,
                          "name": "Meerbusch - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54954,
                          "name": "Sumter - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54964,
                          "name": "Shenzhen - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54972,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 54979,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 54985,
                          "name": "Augsburg - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54990,
                          "name": "Augsburg - Germany",
                          "importance": 0
                        },
                        {
                          "id": 54997,
                          "name": "Hersonissos 4 - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 54998,
                          "name": "Augsburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 55012,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55013,
                          "name": "Hersonissos 4 - Greece",
                          "importance": 0
                        },
                        {
                          "id": 55015,
                          "name": "Sopot - Poland",
                          "importance": 0
                        },
                        {
                          "id": 55028,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 55036,
                          "name": "Barcelona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55040,
                          "name": "Mallorca - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55042,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 55045,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55050,
                          "name": "Sumter - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55056,
                          "name": "Sofia 2 - Bulgaria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55064,
                          "name": "Mouilleron Le Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55065,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55068,
                          "name": "Sofia 2 - Bulgaria",
                          "importance": 0
                        },
                        {
                          "id": 55069,
                          "name": "Genova - Italy",
                          "importance": 0
                        },
                        {
                          "id": 55078,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55091,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55099,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55111,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55112,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 55113,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55136,
                          "name": "Cancun - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55172,
                          "name": "Lima 2, Peru",
                          "importance": 0
                        },
                        {
                          "id": 55174,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 55193,
                          "name": "Meerbusch, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55197,
                          "name": "Mallorca, Spain",
                          "importance": 0
                        },
                        {
                          "id": 55213,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55216,
                          "name": "Barranquilla - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55218,
                          "name": "Meerbusch, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55223,
                          "name": "Augsburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55232,
                          "name": "Nanchang - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55242,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55263,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55276,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55282,
                          "name": "Fairfield, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55318,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 55320,
                          "name": "Hersonissos 3 - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55326,
                          "name": "Nanchang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55391,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55393,
                          "name": "Augsburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 55429,
                          "name": "Ningbo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55449,
                          "name": "Augsburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55464,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 55506,
                          "name": "Santa Cruz 2 - Bolivia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55512,
                          "name": "Ningbo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55523,
                          "name": "Zhuhai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55528,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 55537,
                          "name": "Zhuhai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55541,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55551,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 55552,
                          "name": "Trieste, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55568,
                          "name": "Meerbusch, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55603,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55615,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55639,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55663,
                          "name": "Mallorca, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55666,
                          "name": "Oeiras 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55684,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55685,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55690,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55693,
                          "name": "Lexington - USA",
                          "importance": 0
                        },
                        {
                          "id": 55720,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 55728,
                          "name": "Qujing - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55750,
                          "name": "Trieste, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55754,
                          "name": "Manacor - Mallorca - Spain",
                          "importance": 0
                        },
                        {
                          "id": 55755,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55783,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55784,
                          "name": "Fairfield, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55801,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55806,
                          "name": "Pune - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55811,
                          "name": "Pune - India",
                          "importance": 0
                        },
                        {
                          "id": 55822,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55858,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 55861,
                          "name": "Forli 4 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55867,
                          "name": "Roseto Degli Abruzzi 2 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55869,
                          "name": "Meerbusch, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55871,
                          "name": "Forli 5 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 55878,
                          "name": "Chicago, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55881,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55882,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55889,
                          "name": "Busan, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55896,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55900,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55901,
                          "name": "Bangkok II, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55908,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55909,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 55916,
                          "name": "Recanati - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55918,
                          "name": "Lexington - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55921,
                          "name": "Taipei, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55923,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55932,
                          "name": "Forli 5 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 55933,
                          "name": "Rome 2 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55942,
                          "name": "Bangkok II, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55947,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 55951,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55954,
                          "name": "San Benedetto - Italy",
                          "importance": 0
                        },
                        {
                          "id": 55967,
                          "name": "Chengdu - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55971,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 55981,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 55993,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56009,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56015,
                          "name": "Manacor, Mallorca, Spain",
                          "importance": 0
                        },
                        {
                          "id": 56017,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56019,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56027,
                          "name": "Portoroz - Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 56029,
                          "name": "Izmir - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56034,
                          "name": "Portoroz, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 56046,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 56053,
                          "name": "Zhuhai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56055,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56057,
                          "name": "Antalya - Turkey - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56061,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56067,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56077,
                          "name": "Nonthaburi, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56081,
                          "name": "Chengdu, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56086,
                          "name": "Busan - South Korea - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56107,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56113,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56114,
                          "name": "Jinan, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56115,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56116,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56117,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56120,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56123,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56126,
                          "name": "Chengdu - China",
                          "importance": 0
                        },
                        {
                          "id": 56133,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56134,
                          "name": "Bangalore - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56138,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56140,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56146,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 56150,
                          "name": "Kaohsiung - Chinese Taipei - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56151,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56162,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56164,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56168,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56173,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56177,
                          "name": "Blois, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56183,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56196,
                          "name": "Recanati - Italy",
                          "importance": 0
                        },
                        {
                          "id": 56198,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56202,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56203,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56218,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 56219,
                          "name": "Anning, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56221,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56233,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56235,
                          "name": "Portoroz, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 56236,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56239,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56240,
                          "name": "Playford City, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56248,
                          "name": "Puerto Vallarta, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56249,
                          "name": "Burnie - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56250,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 56251,
                          "name": "Manacor, Mallorca, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56284,
                          "name": "Chengdu, China",
                          "importance": 0
                        },
                        {
                          "id": 56288,
                          "name": "Taipei, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56289,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56290,
                          "name": "Mohammedia - Morocco - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56294,
                          "name": "Mohammedia, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56299,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56315,
                          "name": "Lille, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56316,
                          "name": "Marbella, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56331,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56332,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56342,
                          "name": "Forli - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56357,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56360,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56383,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56385,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 56390,
                          "name": "Chengdu, China",
                          "importance": 0
                        },
                        {
                          "id": 56395,
                          "name": "Astana - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56410,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56415,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56416,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56422,
                          "name": "Chicago - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56424,
                          "name": "Chicago, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56425,
                          "name": "Jinan - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56429,
                          "name": "Jinan - China",
                          "importance": 0
                        },
                        {
                          "id": 56434,
                          "name": "Toyota - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56448,
                          "name": "Chicago, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56449,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 56465,
                          "name": "Verona, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56466,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56470,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56475,
                          "name": "Chicago, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56479,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56485,
                          "name": "Ismaning, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56487,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 56504,
                          "name": "Jinan, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56511,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56523,
                          "name": "Kaohsiung, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56524,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56525,
                          "name": "Jinan, China",
                          "importance": 0
                        },
                        {
                          "id": 56526,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56537,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56540,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56546,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56549,
                          "name": "Jerusalem - Israel - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56552,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 56554,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56555,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56556,
                          "name": "Zhangjiagang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56557,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56564,
                          "name": "Poprad Tatry - Slovakia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56567,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56571,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56572,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56573,
                          "name": "Burnie 1 - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56575,
                          "name": "Alphen - Netherlands - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56578,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56584,
                          "name": "Jinan, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56585,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56589,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56593,
                          "name": "Bangkok - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56607,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56611,
                          "name": "Newport Beach - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56612,
                          "name": "Jinan, China",
                          "importance": 0
                        },
                        {
                          "id": 56618,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56625,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56626,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56627,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56640,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56651,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56670,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56671,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56674,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 56686,
                          "name": "Nottingham 2 - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56690,
                          "name": "Ismaning - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56691,
                          "name": "Playford City II - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56692,
                          "name": "Jinan, China",
                          "importance": 0
                        },
                        {
                          "id": 56693,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56699,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56702,
                          "name": "Ismaning - Germany",
                          "importance": 0
                        },
                        {
                          "id": 56721,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56722,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56723,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56726,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56729,
                          "name": "Florianopolis, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56737,
                          "name": "Winnipeg - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56738,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56741,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56742,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56759,
                          "name": "Jinan, China",
                          "importance": 0
                        },
                        {
                          "id": 56760,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56761,
                          "name": "Florianopolis, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56762,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56763,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56770,
                          "name": "Ismaning, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56773,
                          "name": "Aix En Provence - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56776,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56777,
                          "name": "Sarasota - USA - Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56785,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 56824,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56826,
                          "name": "Florianopolis, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56839,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56843,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56844,
                          "name": "Vancouver - Canada",
                          "importance": 0
                        },
                        {
                          "id": 56845,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56847,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56848,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 56857,
                          "name": "Forli 6 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56859,
                          "name": "Vancouver, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56864,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 56871,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56874,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56876,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56881,
                          "name": "Punta del Este, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56887,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 56892,
                          "name": "Banja Luka - Bosnia & Herzegovina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56896,
                          "name": "Banja Luka - Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 56901,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 56902,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56905,
                          "name": "Le Gosier - Guadeloupe - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56906,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56908,
                          "name": "Le Gosier - Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 56909,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56913,
                          "name": "Winnipeg - Canada",
                          "importance": 0
                        },
                        {
                          "id": 56914,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56916,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56923,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56924,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 56929,
                          "name": "Gatineau, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56931,
                          "name": "Banja Luka, Bosnia & Herzegovina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56936,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56937,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 56939,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56941,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56943,
                          "name": "Noumea - New Caledonia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56944,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56948,
                          "name": "Gatineau, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56949,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56951,
                          "name": "Banja Luka, Bosnia & Herzegovina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 56956,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56957,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 56958,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56965,
                          "name": "Sarasota - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56975,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56977,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56982,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56983,
                          "name": "Launceston, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56988,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 56992,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 56998,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 57000,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57002,
                          "name": "Shenzhen II, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57028,
                          "name": "Bratislava 2, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 57029,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 57030,
                          "name": "Calgary - Canada",
                          "importance": 0
                        },
                        {
                          "id": 57032,
                          "name": "Matsuyama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 57035,
                          "name": "Zadar - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 57036,
                          "name": "Asuncion - Paraguay",
                          "importance": 0
                        },
                        {
                          "id": 57037,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 57039,
                          "name": "Girona - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57043,
                          "name": "Knoxville - USA",
                          "importance": 0
                        },
                        {
                          "id": 57045,
                          "name": "Naples - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57046,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57049,
                          "name": "San Luis Potosi - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57050,
                          "name": "Roanne, France",
                          "importance": 0
                        },
                        {
                          "id": 57051,
                          "name": "Porto, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 57052,
                          "name": "Porto, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57055,
                          "name": "Sao Leopoldo - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57070,
                          "name": "Calgary, Canada",
                          "importance": 0
                        },
                        {
                          "id": 57071,
                          "name": "Bratislava 2, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 57073,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 57074,
                          "name": "Bratislava - Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 57075,
                          "name": "Bratislava 2, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 57076,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 57078,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57095,
                          "name": "San Luis Potosi - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 57101,
                          "name": "Sao Leopoldo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 57102,
                          "name": "Matsuyama - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57105,
                          "name": "Naples, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57110,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 57111,
                          "name": "Knoxville - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57113,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 57117,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 57120,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57121,
                          "name": "Amersfoort, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 57128,
                          "name": "Jinan, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57144,
                          "name": "Granby - Canada",
                          "importance": 0
                        },
                        {
                          "id": 57147,
                          "name": "Rio de Janeiro, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57148,
                          "name": "Pozoblanco - Spain",
                          "importance": 0
                        },
                        {
                          "id": 57156,
                          "name": "Matsuyama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 57158,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 57160,
                          "name": "Gran Canaria - Spain",
                          "importance": 0
                        },
                        {
                          "id": 57177,
                          "name": "Trieste - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57197,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 57199,
                          "name": "Pozoblanco - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57206,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57212,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57213,
                          "name": "Amersfoort, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57215,
                          "name": "Roseto Degli Abruzzi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57217,
                          "name": "Granby - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57219,
                          "name": "Pozoblanco - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57223,
                          "name": "Trieste - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57235,
                          "name": "Burnie - Australia",
                          "importance": 0
                        },
                        {
                          "id": 57239,
                          "name": "Newport Beach - USA",
                          "importance": 0
                        },
                        {
                          "id": 57244,
                          "name": "Punta del Este, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 57259,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 57264,
                          "name": "Split, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 57267,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57290,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57292,
                          "name": "Trieste, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57300,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57307,
                          "name": "Las Palmas 1 - Spain",
                          "importance": 0
                        },
                        {
                          "id": 57327,
                          "name": "Sibiu - Romania",
                          "importance": 0
                        },
                        {
                          "id": 57331,
                          "name": "Sibiu - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57333,
                          "name": "Forli, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57346,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 57362,
                          "name": "Orlando, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57379,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57408,
                          "name": "Forli 2 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57417,
                          "name": "Forli 2, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57423,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57425,
                          "name": "Matsuyama - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57438,
                          "name": "Zadar, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57439,
                          "name": "Asuncion - Paraguay - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57443,
                          "name": "Merida - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57450,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57470,
                          "name": "Prague II - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 57473,
                          "name": "Trieste, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57475,
                          "name": "Asuncion, Paraguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57480,
                          "name": "Prague II - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57483,
                          "name": "Bendigo - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57502,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57509,
                          "name": "Bendigo - Australia",
                          "importance": 0
                        },
                        {
                          "id": 57511,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57524,
                          "name": "Forli - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57537,
                          "name": "Las Palmas 1 - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57539,
                          "name": "Bratislava - Slovakia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57542,
                          "name": "Istanbul - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57554,
                          "name": "Merida, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57558,
                          "name": "Calgary - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57572,
                          "name": "Murcia - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57597,
                          "name": "Pozoblanco, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57601,
                          "name": "Bratislava 2 - Slovakia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57602,
                          "name": "Calgary, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57623,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57630,
                          "name": "Asuncion - Paraguay - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57634,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 57636,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 57637,
                          "name": "Brasilia - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57641,
                          "name": "Merida - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 57650,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57651,
                          "name": "Bratislava 2, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57655,
                          "name": "Bratislava 2, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57656,
                          "name": "Matsuyama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57657,
                          "name": "Tampere - Finland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57699,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57700,
                          "name": "Trieste, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57715,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57737,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 57739,
                          "name": "Gwangju, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 57740,
                          "name": "Parma II - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57741,
                          "name": "Alicante, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57744,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57771,
                          "name": "New Haven - USA",
                          "importance": 0
                        },
                        {
                          "id": 57786,
                          "name": "Grodzisk Mazowiecki, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57792,
                          "name": "Santiago 3 - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57810,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 57815,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 57818,
                          "name": "Salzburg, Austria",
                          "importance": 0
                        },
                        {
                          "id": 57820,
                          "name": "San Benedetto Del Tronto - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57824,
                          "name": "Granby, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57848,
                          "name": "L'Aquila - Italy",
                          "importance": 0
                        },
                        {
                          "id": 57850,
                          "name": "Baotou - China",
                          "importance": 0
                        },
                        {
                          "id": 57855,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 57869,
                          "name": "San Benedetto Del Tronto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 57883,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 57995,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58006,
                          "name": "Zadar - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58010,
                          "name": "Merida - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58025,
                          "name": "Little Rock, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58053,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 58055,
                          "name": "Trieste, Italy",
                          "importance": 0
                        },
                        {
                          "id": 58067,
                          "name": "Salinas 2 - Ecuador - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58069,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 58105,
                          "name": "Nur-Sultan - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 58106,
                          "name": "Potchefstroom - South Africa",
                          "importance": 0
                        },
                        {
                          "id": 58135,
                          "name": "Potchefstroom 1 - South Africa",
                          "importance": 0
                        },
                        {
                          "id": 58137,
                          "name": "Astana - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 58155,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 58159,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58239,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58250,
                          "name": "Iasi, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58263,
                          "name": "Salzburg, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58283,
                          "name": "San Benedetto Del Tronto - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58287,
                          "name": "Mestre, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58299,
                          "name": "San Benedetto Del Tronto - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58300,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 58309,
                          "name": "Szekesfehervar - Hungary",
                          "importance": 0
                        },
                        {
                          "id": 58310,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 58311,
                          "name": "Phoenix - USA",
                          "importance": 0
                        },
                        {
                          "id": 58317,
                          "name": "Sibiu - Romania",
                          "importance": 0
                        },
                        {
                          "id": 58322,
                          "name": "Ambato - Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 58326,
                          "name": "Biel - Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 58331,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58332,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 58335,
                          "name": "Biel, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58336,
                          "name": "San Benedetto Del Tronto, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58339,
                          "name": "Prague - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 58341,
                          "name": "Binghamton - USA",
                          "importance": 0
                        },
                        {
                          "id": 58342,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58347,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 58350,
                          "name": "Ambato, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 58361,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 58363,
                          "name": "Biel, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 58365,
                          "name": "Pozoblanco, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58382,
                          "name": "Lima - Peru - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58384,
                          "name": "Phoenix, USA",
                          "importance": 0
                        },
                        {
                          "id": 58386,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58398,
                          "name": "Sibiu - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58404,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 58409,
                          "name": "Murcia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58410,
                          "name": "Lima - Peru",
                          "importance": 0
                        },
                        {
                          "id": 58442,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 58458,
                          "name": "St Petersburgh 1 - Russia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58485,
                          "name": "Busan - South Korea",
                          "importance": 0
                        },
                        {
                          "id": 58527,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58529,
                          "name": "Santa Cruz - Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 58531,
                          "name": "Santa Cruz, Bolivia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58534,
                          "name": "Kigali 2, Rwanda, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58535,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58536,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 58545,
                          "name": "Calgary, Canada",
                          "importance": 0
                        },
                        {
                          "id": 58546,
                          "name": "Pau - France",
                          "importance": 0
                        },
                        {
                          "id": 58583,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 58644,
                          "name": "Santo Domingo - Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 58654,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58662,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 58677,
                          "name": "Trieste, Italy",
                          "importance": 0
                        },
                        {
                          "id": 58720,
                          "name": "Cagliari - Italy",
                          "importance": 0
                        },
                        {
                          "id": 58730,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 58731,
                          "name": "Coquimbo, Chile",
                          "importance": 0
                        },
                        {
                          "id": 58734,
                          "name": "Cagliari - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58736,
                          "name": "Prague 1, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58738,
                          "name": "Aix En Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58741,
                          "name": "Busan, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58744,
                          "name": "Lisbon, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 58751,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58758,
                          "name": "Mauthausen - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58769,
                          "name": "Cagliari, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 58771,
                          "name": "Prague 2, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58778,
                          "name": "Potchefstroom 1 - South Africa - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58794,
                          "name": "Prague 2, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 58796,
                          "name": "Mauthausen - Austria",
                          "importance": 0
                        },
                        {
                          "id": 58802,
                          "name": "Ambato - Ecuador - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58814,
                          "name": "Biel - Switzerland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58890,
                          "name": "Amersfoort, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 58892,
                          "name": "Gatineau - Canada",
                          "importance": 0
                        },
                        {
                          "id": 58895,
                          "name": "Nur-Sultan, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 58896,
                          "name": "Prague - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58897,
                          "name": "Tampere, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58931,
                          "name": "Phoenix - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 58940,
                          "name": "Gatineau, Canada",
                          "importance": 0
                        },
                        {
                          "id": 58984,
                          "name": "Astana - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59008,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59009,
                          "name": "Trieste, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59028,
                          "name": "Santo Domingo - Dominican Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59043,
                          "name": "Granby, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59065,
                          "name": "Biel, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59089,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 59095,
                          "name": "Cagliari - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59114,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59125,
                          "name": "Phoenix, USA",
                          "importance": 0
                        },
                        {
                          "id": 59132,
                          "name": "Indian Wells 2 - USA",
                          "importance": 0
                        },
                        {
                          "id": 59142,
                          "name": "Szekesfehervar - Hungary - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59152,
                          "name": "Santa Cruz, Bolivia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59176,
                          "name": "Ottignies-Louvain-la-Neuve - Belgium",
                          "importance": 0
                        },
                        {
                          "id": 59186,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59187,
                          "name": "Drummondville - Canada",
                          "importance": 0
                        },
                        {
                          "id": 59189,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 59190,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 59192,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59205,
                          "name": "Ottignies-Louvain-la-Neuve, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 59207,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 59219,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 59227,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 59237,
                          "name": "Ottignies-Louvain-la-Neuve - Belgium - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59239,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59252,
                          "name": "Indian Wells 2 - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59283,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 59285,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 59294,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59330,
                          "name": "Ottignies-Louvain-la-Neuve, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59346,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59351,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 59358,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 59360,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 59366,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 59372,
                          "name": "Tenerife 2, Spain",
                          "importance": 0
                        },
                        {
                          "id": 59373,
                          "name": "Surbiton, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 59377,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59378,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59379,
                          "name": "Cary II - USA",
                          "importance": 0
                        },
                        {
                          "id": 59384,
                          "name": "Tenerife 2 - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59391,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 59395,
                          "name": "Istanbul II - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 59403,
                          "name": "Quito - Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 59413,
                          "name": "Oeiras 1 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59415,
                          "name": "Tenerife 2, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59416,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 59433,
                          "name": "Quito - Ecuador - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59437,
                          "name": "Maia 2 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59440,
                          "name": "Oeiras 1, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59442,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 59452,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59456,
                          "name": "Quito, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59482,
                          "name": "Fairfield, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59490,
                          "name": "Morelos - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59494,
                          "name": "Mexico City - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59501,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 59509,
                          "name": "Phoenix, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59511,
                          "name": "Indian Wells - USA",
                          "importance": 0
                        },
                        {
                          "id": 59515,
                          "name": "Tenerife, Spain",
                          "importance": 0
                        },
                        {
                          "id": 59517,
                          "name": "Nonthaburi 3 - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59518,
                          "name": "Tenerife - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59524,
                          "name": "Mexico City - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 59547,
                          "name": "Tenerife, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59549,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 59551,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 59555,
                          "name": "Fergana - Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 59556,
                          "name": "Nonthaburi 3, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59559,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 59562,
                          "name": "Concepcion, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59563,
                          "name": "Burnie - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59568,
                          "name": "Parma, Italy",
                          "importance": 0
                        },
                        {
                          "id": 59572,
                          "name": "Amersfoort, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59589,
                          "name": "Ottignies-Louvain-la-Neuve - Belgium - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59631,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59638,
                          "name": "Surbiton - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59640,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59649,
                          "name": "Tenerife 2, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59658,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 59681,
                          "name": "Quito - Ecuador - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59694,
                          "name": "Granby, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59695,
                          "name": "Phoenix, USA",
                          "importance": 0
                        },
                        {
                          "id": 59748,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59755,
                          "name": "Ottignies-Louvain-la-Neuve, Belgium, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59770,
                          "name": "Tenerife 2, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59818,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 59822,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59836,
                          "name": "Little Rock, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59846,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59849,
                          "name": "Tenerife, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59850,
                          "name": "Concepcion - Chile",
                          "importance": 0
                        },
                        {
                          "id": 59854,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 59856,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 59863,
                          "name": "Indian Wells, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59871,
                          "name": "Concepcion, Chile",
                          "importance": 0
                        },
                        {
                          "id": 59882,
                          "name": "Nonthaburi 3, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59891,
                          "name": "Mexico City, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59904,
                          "name": "Eckental - Germany",
                          "importance": 0
                        },
                        {
                          "id": 59910,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 59911,
                          "name": "Luedenscheid, Germany",
                          "importance": 0
                        },
                        {
                          "id": 59915,
                          "name": "Verona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 59919,
                          "name": "Prague 3 - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59920,
                          "name": "Surbiton, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59921,
                          "name": "Barletta - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59924,
                          "name": "Warsaw - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59933,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 59935,
                          "name": "Prague 3 - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 59937,
                          "name": "Prague 3, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 59938,
                          "name": "Concepcion, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59939,
                          "name": "Warsaw - Poland",
                          "importance": 0
                        },
                        {
                          "id": 59940,
                          "name": "Columbus - USA",
                          "importance": 0
                        },
                        {
                          "id": 59946,
                          "name": "Eckental - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59951,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 59954,
                          "name": "Barletta - Italy",
                          "importance": 0
                        },
                        {
                          "id": 59956,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 59957,
                          "name": "Tenerife, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 59959,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 59978,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 59979,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 59981,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 60020,
                          "name": "Oeiras 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 60021,
                          "name": "Tenerife, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60024,
                          "name": "Oeiras 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60025,
                          "name": "Nonthaburi 3, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60029,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 60031,
                          "name": "Tenerife, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60036,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60039,
                          "name": "Phoenix, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60044,
                          "name": "Tenerife, Spain",
                          "importance": 0
                        },
                        {
                          "id": 60051,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60054,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 60061,
                          "name": "Oeiras 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 60064,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 60065,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60066,
                          "name": "Nonthaburi 2 - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60069,
                          "name": "Oeiras 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60078,
                          "name": "Ortisei - Italy",
                          "importance": 0
                        },
                        {
                          "id": 60079,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60080,
                          "name": "Florianopolis, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60083,
                          "name": "Mexico City, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60084,
                          "name": "Nonthaburi 2, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60094,
                          "name": "Iasi, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60105,
                          "name": "Nonthaburi 2, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60111,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60114,
                          "name": "Tenerife 2, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60119,
                          "name": "Kiev - Ukraine - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60123,
                          "name": "Concepcion - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60124,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 60127,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60128,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 60139,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60148,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 60161,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 60172,
                          "name": "Phoenix, USA",
                          "importance": 0
                        },
                        {
                          "id": 60181,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 60196,
                          "name": "Mexico City, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60204,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 60214,
                          "name": "San Marino - San Marino",
                          "importance": 0
                        },
                        {
                          "id": 60218,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60225,
                          "name": "Meerbusch - Germany",
                          "importance": 0
                        },
                        {
                          "id": 60230,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 60232,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60233,
                          "name": "Prague 2, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 60236,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 60238,
                          "name": "Surbiton, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 60239,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 60243,
                          "name": "Columbus - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60245,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60247,
                          "name": "Prague 3, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60248,
                          "name": "Oeiras 2, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60251,
                          "name": "Meerbusch, Germany",
                          "importance": 0
                        },
                        {
                          "id": 60252,
                          "name": "Ann Arbor - USA",
                          "importance": 0
                        },
                        {
                          "id": 60255,
                          "name": "Concepcion, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60257,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 60273,
                          "name": "Nonthaburi 2, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60287,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 60292,
                          "name": "Bratislava - Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 60296,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60297,
                          "name": "Oeiras 2, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60298,
                          "name": "Ortisei - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60300,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 60302,
                          "name": "Orlando - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60340,
                          "name": "Nonthaburi 2, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60344,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 60375,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 60377,
                          "name": "Nonthaburi - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 60378,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 60381,
                          "name": "Oeiras, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60383,
                          "name": "Nonthaburi, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60387,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 60388,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60392,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60393,
                          "name": "Nonthaburi, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 60399,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 60400,
                          "name": "San Marino - San Marino - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60401,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 60402,
                          "name": "Tigre, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 60403,
                          "name": "Nonthaburi, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 60407,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60414,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60415,
                          "name": "Oeiras, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60419,
                          "name": "Tigre - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60420,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 60421,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60425,
                          "name": "Prague 3, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 60433,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 60434,
                          "name": "Parma II, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60435,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60436,
                          "name": "Bratislava - Slovakia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60438,
                          "name": "Tigre, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60451,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60475,
                          "name": "San Marino, San Marino, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60493,
                          "name": "Surbiton, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60506,
                          "name": "Meerbusch - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60518,
                          "name": "Tigre - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60519,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60529,
                          "name": "Concepcion, Chile",
                          "importance": 0
                        },
                        {
                          "id": 60536,
                          "name": "Parma II, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60539,
                          "name": "Canberra - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60541,
                          "name": "Meerbusch, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60543,
                          "name": "Nonthaburi - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60548,
                          "name": "Noumea - New Caledonia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60556,
                          "name": "Poprad Tatry, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60588,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60589,
                          "name": "Nonthaburi, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60590,
                          "name": "Biella 2 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60602,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60616,
                          "name": "Surbiton, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 60623,
                          "name": "Liberec - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 60627,
                          "name": "Prague 2, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60630,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 60646,
                          "name": "Marbella - Spain",
                          "importance": 0
                        },
                        {
                          "id": 60659,
                          "name": "Parma II - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60669,
                          "name": "Prague 3, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60675,
                          "name": "San Marino, San Marino, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60688,
                          "name": "Marbella, Spain",
                          "importance": 0
                        },
                        {
                          "id": 60713,
                          "name": "Buenos Aires - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60717,
                          "name": "Shymkent 2 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 60718,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 60726,
                          "name": "Lima 2, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60740,
                          "name": "Lima 2, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60744,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 60779,
                          "name": "Segovia - Spain",
                          "importance": 0
                        },
                        {
                          "id": 60783,
                          "name": "Nonthaburi, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60793,
                          "name": "Liberec - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60795,
                          "name": "Marbella - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60800,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 60814,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 60824,
                          "name": "Mouilleron-Le-Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 60832,
                          "name": "Alicante, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60837,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60839,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60843,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60853,
                          "name": "Forli 3, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60864,
                          "name": "Lima 2, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 60867,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 60875,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 60881,
                          "name": "Shymkent - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 60887,
                          "name": "Concepcion, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60906,
                          "name": "Shymkent, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 60912,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60913,
                          "name": "Marbella, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60948,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 60958,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 60964,
                          "name": "Seoul - South Korea",
                          "importance": 0
                        },
                        {
                          "id": 60967,
                          "name": "Marbella, Spain",
                          "importance": 0
                        },
                        {
                          "id": 60997,
                          "name": "Poprad Tatry - Slovakia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61007,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 61009,
                          "name": "Maspalomas - Spain",
                          "importance": 0
                        },
                        {
                          "id": 61011,
                          "name": "Poprad Tatry - Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 61015,
                          "name": "Phoenix, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61016,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61033,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 61039,
                          "name": "Marbella, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61041,
                          "name": "Concepcion, Chile",
                          "importance": 0
                        },
                        {
                          "id": 61056,
                          "name": "Marbella, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61062,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61072,
                          "name": "Valencia - Spain",
                          "importance": 0
                        },
                        {
                          "id": 61073,
                          "name": "Temuco, Chile",
                          "importance": 0
                        },
                        {
                          "id": 61074,
                          "name": "Yokkaichi, Japan",
                          "importance": 0
                        },
                        {
                          "id": 61076,
                          "name": "Andria - Italy",
                          "importance": 0
                        },
                        {
                          "id": 61077,
                          "name": "Valencia - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61078,
                          "name": "Yokkaichi, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61079,
                          "name": "Temuco, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61081,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 61083,
                          "name": "Maia, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61085,
                          "name": "Valencia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61086,
                          "name": "Maspalomas - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61095,
                          "name": "Andria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61098,
                          "name": "Temuco, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61107,
                          "name": "Aix En Provence - France",
                          "importance": 0
                        },
                        {
                          "id": 61110,
                          "name": "Mauthausen, Austria",
                          "importance": 0
                        },
                        {
                          "id": 61111,
                          "name": "Prague 2, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 61116,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61119,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61120,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61133,
                          "name": "Shymkent - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61137,
                          "name": "Marbella, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61139,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61164,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 61168,
                          "name": "Istanbul, Turkiye",
                          "importance": 0
                        },
                        {
                          "id": 61169,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61170,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61175,
                          "name": "Cary 2 - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61178,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 61181,
                          "name": "Nur Sultan 4 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 61182,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 61184,
                          "name": "Cary 2 - USA",
                          "importance": 0
                        },
                        {
                          "id": 61186,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61188,
                          "name": "Poznan, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61191,
                          "name": "Santa Cruz, Bolivia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61246,
                          "name": "Poprad Tatry, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 61253,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61263,
                          "name": "Andria - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61276,
                          "name": "Temuco, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61279,
                          "name": "Yokkaichi - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61285,
                          "name": "Valencia - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61294,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61295,
                          "name": "Istanbul, Turkiye, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61306,
                          "name": "Concepcion, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61318,
                          "name": "Aix En Provence - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61319,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61328,
                          "name": "Andria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61329,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 61339,
                          "name": "Cassis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61364,
                          "name": "Helsinki - Finland",
                          "importance": 0
                        },
                        {
                          "id": 61366,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 61368,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 61370,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 61372,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 61378,
                          "name": "Nur Sultan 4 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61381,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 61384,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61386,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61388,
                          "name": "Helsinki - Finland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61391,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 61392,
                          "name": "Mauthausen, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61394,
                          "name": "Tampere, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61395,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61397,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61409,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61412,
                          "name": "Valencia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61417,
                          "name": "Sao Leopoldo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61425,
                          "name": "Sao Leopoldo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 61435,
                          "name": "Nur Sultan 3 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 61438,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61453,
                          "name": "Amersfoort, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 61459,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 61476,
                          "name": "Amersfoort, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61481,
                          "name": "Concepcion, Chile",
                          "importance": 0
                        },
                        {
                          "id": 61547,
                          "name": "Helsinki, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61555,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61565,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61569,
                          "name": "Aguacalientes - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 61571,
                          "name": "Nur Sultan 3 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61572,
                          "name": "Iasi, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61573,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 61577,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61587,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 61632,
                          "name": "Helsinki, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61641,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 61643,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61646,
                          "name": "Salzburg-Anif - Austria",
                          "importance": 0
                        },
                        {
                          "id": 61648,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61652,
                          "name": "Bucaramanga - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 61674,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61676,
                          "name": "Concepcion, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61684,
                          "name": "Mallorca, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61686,
                          "name": "Zhangjiagang, China",
                          "importance": 0
                        },
                        {
                          "id": 61688,
                          "name": "Mallorca, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61701,
                          "name": "Split, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 61703,
                          "name": "Concepcion, Chile",
                          "importance": 0
                        },
                        {
                          "id": 61710,
                          "name": "Salzburg-Anif - Austria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61715,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61723,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 61725,
                          "name": "Furth - Germany",
                          "importance": 0
                        },
                        {
                          "id": 61743,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 61745,
                          "name": "Braunschweig - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61748,
                          "name": "Bucaramanga - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61805,
                          "name": "Helsinki, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61826,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 61829,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61833,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 61837,
                          "name": "Prague 1 - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61839,
                          "name": "Split - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61841,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61844,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61861,
                          "name": "Concepcion, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61893,
                          "name": "Porto, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 61899,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61940,
                          "name": "Sarasota - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61943,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61946,
                          "name": "Madrid, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61947,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61966,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 61969,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61986,
                          "name": "Mallorca, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 61989,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 61990,
                          "name": "Oeiras 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 62003,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 62033,
                          "name": "Zhangjiagang, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62066,
                          "name": "Stanford - USA",
                          "importance": 0
                        },
                        {
                          "id": 62067,
                          "name": "Grodzisk Mazowiecki, Poland",
                          "importance": 0
                        },
                        {
                          "id": 62068,
                          "name": "Todi - Italy - Canada",
                          "importance": 0
                        },
                        {
                          "id": 62071,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 62074,
                          "name": "Stanford - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62078,
                          "name": "Sanremo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 62085,
                          "name": "Oeiras 2, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62095,
                          "name": "Murcia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62128,
                          "name": "Stanford - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62142,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62143,
                          "name": "Winnipeg - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62149,
                          "name": "St. Brieuc - France",
                          "importance": 0
                        },
                        {
                          "id": 62153,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 62156,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 62157,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 62214,
                          "name": "Zadar, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 62216,
                          "name": "Biel, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 62220,
                          "name": "St. Brieuc - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62223,
                          "name": "Santa Cruz 2, Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 62226,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62236,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 62239,
                          "name": "Banja Luka - Bosnia and Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 62240,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 62241,
                          "name": "Meerbusch, Germany",
                          "importance": 0
                        },
                        {
                          "id": 62242,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62243,
                          "name": "Grodzisk Mazowiecki, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62290,
                          "name": "St. Brieuc - France - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62325,
                          "name": "Zadar, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62334,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62362,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 62363,
                          "name": "Concepcion 2 - Chile",
                          "importance": 0
                        },
                        {
                          "id": 62370,
                          "name": "Roseto Degli Abruzzi 2 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 62371,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62373,
                          "name": "Biel, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62374,
                          "name": "St. Brieuc, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62375,
                          "name": "Lille - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62382,
                          "name": "St. Brieuc, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62387,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62401,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62419,
                          "name": "Roseto Degli Abruzzi 2 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62445,
                          "name": "Porto, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 62446,
                          "name": "Luedenscheid, Germany",
                          "importance": 0
                        },
                        {
                          "id": 62447,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 62449,
                          "name": "Porto, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62450,
                          "name": "Luedenscheid, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62456,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62469,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 62487,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 62506,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62535,
                          "name": "Luedenscheid, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62541,
                          "name": "Porto, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62641,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62661,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62672,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62673,
                          "name": "Verona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 62674,
                          "name": "Zug - Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 62678,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62679,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62680,
                          "name": "Verona, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62681,
                          "name": "Zug - Switzerland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62682,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62684,
                          "name": "Zug, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 62687,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62688,
                          "name": "Zug, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62689,
                          "name": "Zug, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62694,
                          "name": "An-Ning - China",
                          "importance": 0
                        },
                        {
                          "id": 62696,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62697,
                          "name": "Anning - China",
                          "importance": 0
                        },
                        {
                          "id": 62703,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62714,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62725,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62730,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 62732,
                          "name": "Le Gosier - Guadeloupe - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62746,
                          "name": "Meknes - Morocco - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62749,
                          "name": "Zug - Switzerland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62751,
                          "name": "Zug, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62753,
                          "name": "Verona, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62761,
                          "name": "Verona, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62779,
                          "name": "Zug, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62785,
                          "name": "Anning, China",
                          "importance": 0
                        },
                        {
                          "id": 62787,
                          "name": "Zug, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 62801,
                          "name": "Anning, China",
                          "importance": 0
                        },
                        {
                          "id": 62807,
                          "name": "Zug, Switzerland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62811,
                          "name": "Zug, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 62813,
                          "name": "Anning, China",
                          "importance": 0
                        },
                        {
                          "id": 62814,
                          "name": "Canberra II - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62815,
                          "name": "Canberra II - Australia",
                          "importance": 0
                        },
                        {
                          "id": 62820,
                          "name": "Canberra II, Australia",
                          "importance": 0
                        },
                        {
                          "id": 62831,
                          "name": "Santa Cruz, Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 62833,
                          "name": "Wuning 2 - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62837,
                          "name": "Phoenix, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62839,
                          "name": "Hamburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62846,
                          "name": "Playford, Australia",
                          "importance": 0
                        },
                        {
                          "id": 62847,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62848,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 62851,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 62853,
                          "name": "Newport Beach, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62855,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62856,
                          "name": "Lyon 2 - France",
                          "importance": 0
                        },
                        {
                          "id": 62857,
                          "name": "Lyon 2 - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62859,
                          "name": "Rovereto - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62860,
                          "name": "Sao Paulo - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62871,
                          "name": "Kigali 1 - Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 62873,
                          "name": "Tenerife 3 - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62874,
                          "name": "Tenerife 3 - Spain",
                          "importance": 0
                        },
                        {
                          "id": 62887,
                          "name": "Naples, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62888,
                          "name": "Yokkaichi, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 62893,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 62896,
                          "name": "Newport - USA",
                          "importance": 0
                        },
                        {
                          "id": 62897,
                          "name": "Trieste, Italy",
                          "importance": 0
                        },
                        {
                          "id": 62898,
                          "name": "Nottingham 3 - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 62906,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62909,
                          "name": "Taipei 2 - Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 62911,
                          "name": "Sioux Falls, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62914,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62920,
                          "name": "Brasilia - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 62923,
                          "name": "Hersonissos, Greece",
                          "importance": 0
                        },
                        {
                          "id": 62924,
                          "name": "Kigali - Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 62939,
                          "name": "Piracicaba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 62940,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 62962,
                          "name": "Buenos Aires 3 - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 62968,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 62969,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62970,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62977,
                          "name": "Rosario - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62980,
                          "name": "Cali - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 62988,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 62991,
                          "name": "Itajai - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 62996,
                          "name": "Nonthaburi, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 63001,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63002,
                          "name": "Dobrich 2 - Bulgaria",
                          "importance": 0
                        },
                        {
                          "id": 63005,
                          "name": "Guangzhou (Huangpu) - China",
                          "importance": 0
                        },
                        {
                          "id": 63016,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 63017,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 63018,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 63020,
                          "name": "Knoxville - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63021,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63023,
                          "name": "Guangzhou - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63025,
                          "name": "Mauthausen - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63026,
                          "name": "Estoril - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63028,
                          "name": "Porto Alegre - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63055,
                          "name": "Dobrich - Bulgaria",
                          "importance": 0
                        },
                        {
                          "id": 63058,
                          "name": "Dobrich - Bulgaria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63060,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 63069,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 63070,
                          "name": "Yokkaichi, Japan",
                          "importance": 0
                        },
                        {
                          "id": 63071,
                          "name": "Maspalomas, Spain",
                          "importance": 0
                        },
                        {
                          "id": 63072,
                          "name": "Temuco, Chile",
                          "importance": 0
                        },
                        {
                          "id": 63073,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63074,
                          "name": "Maspalomas - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63108,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 63129,
                          "name": "Girona - Spain",
                          "importance": 0
                        },
                        {
                          "id": 63130,
                          "name": "Morelia - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 63131,
                          "name": "Morelia - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63132,
                          "name": "Naples, Italy",
                          "importance": 0
                        },
                        {
                          "id": 63134,
                          "name": "Calgary, Canada",
                          "importance": 0
                        },
                        {
                          "id": 63146,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 63147,
                          "name": "Matsuyama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 63148,
                          "name": "Calgary, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63152,
                          "name": "Maia, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 63153,
                          "name": "Temuco, Chile",
                          "importance": 0
                        },
                        {
                          "id": 63157,
                          "name": "Cap Cana - Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 63158,
                          "name": "Zadar, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63159,
                          "name": "Phoenix, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63162,
                          "name": "Asuncion, Paraguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63163,
                          "name": "Murcia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63173,
                          "name": "Brasov - Romania",
                          "importance": 0
                        },
                        {
                          "id": 63177,
                          "name": "Karlsruhe - Germany",
                          "importance": 0
                        },
                        {
                          "id": 63178,
                          "name": "Bloomfield Hills - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63180,
                          "name": "Troyes, France",
                          "importance": 0
                        },
                        {
                          "id": 63181,
                          "name": "Bloomfield Hills - United States - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63183,
                          "name": "Modena - Italy",
                          "importance": 0
                        },
                        {
                          "id": 63187,
                          "name": "Brasov - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63188,
                          "name": "Karlsruhe - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63189,
                          "name": "Modena - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63211,
                          "name": "Monastir - Tunisia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63212,
                          "name": "Seoul - Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 63213,
                          "name": "Monastir - Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 63214,
                          "name": "Taipei, Chinese Taipei, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63231,
                          "name": "Glasgow, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63253,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 63259,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 63260,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63275,
                          "name": "Nottingham 2 - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 63276,
                          "name": "Hersonissos 6 - Greece",
                          "importance": 0
                        },
                        {
                          "id": 63277,
                          "name": "Curitiba - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63278,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 63287,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 63289,
                          "name": "Brisbane, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63297,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 63301,
                          "name": "Villena - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63313,
                          "name": "Augsburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63322,
                          "name": "Saint Tropez, France",
                          "importance": 0
                        },
                        {
                          "id": 63323,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63327,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 63328,
                          "name": "Nonthaburi, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 63347,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 63348,
                          "name": "Shenzhen - China",
                          "importance": 0
                        },
                        {
                          "id": 63349,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63350,
                          "name": "Cagliari, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63351,
                          "name": "Guangzhou, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63353,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63356,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 63358,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 63362,
                          "name": "Tulln, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63363,
                          "name": "Istanbul, Turkiye, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63372,
                          "name": "Liberec - Czech Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 63386,
                          "name": "Madrid, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63387,
                          "name": "Split, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63396,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67057,
                          "name": "Santa Cruz, Bolivia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 67712,
                          "name": "Gwangju, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 67719,
                          "name": "Gwangju - Korea Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67818,
                          "name": "Traralgon, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67831,
                          "name": "Wuning 2 - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67857,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 67858,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 67859,
                          "name": "Menorca - Spain",
                          "importance": 0
                        },
                        {
                          "id": 67860,
                          "name": "Wuning - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 67861,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 67862,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67864,
                          "name": "Mexico City, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67865,
                          "name": "Monza - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 67867,
                          "name": "Wuning - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68465,
                          "name": "Phan Thiet - Vietnam - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68518,
                          "name": "Abidjan - Cote d Ivoire",
                          "importance": 0
                        },
                        {
                          "id": 68547,
                          "name": "Abidjan - Cote d Ivoire - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68598,
                          "name": "Abidjan, Cote d Ivoire",
                          "importance": 0
                        },
                        {
                          "id": 68603,
                          "name": "Soma Bay - Egypt - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68688,
                          "name": "Soma Bay, Egypt, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68720,
                          "name": "Abidjan, Cote d Ivoire, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68744,
                          "name": "Phan Thiet 2 - Vietnam - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68769,
                          "name": "Abidjan - Cote d Ivoire - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68784,
                          "name": "Rosario, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68791,
                          "name": "Abidjan, Cote d Ivoire, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68815,
                          "name": "Baton Rouge - USA",
                          "importance": 0
                        },
                        {
                          "id": 68857,
                          "name": "Baton Rouge - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 68888,
                          "name": "Brisbane 2 - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68925,
                          "name": "Brisbane 2, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68954,
                          "name": "New Delhi - India - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68973,
                          "name": "New Delhi, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 68985,
                          "name": "New Delhi, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69001,
                          "name": "New Delhi - India",
                          "importance": 0
                        },
                        {
                          "id": 69026,
                          "name": "New Delhi - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69043,
                          "name": "New Delhi, India",
                          "importance": 0
                        },
                        {
                          "id": 69069,
                          "name": "New Delhi, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69087,
                          "name": "New Delhi, India",
                          "importance": 0
                        },
                        {
                          "id": 69152,
                          "name": "New Delhi, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69164,
                          "name": "Metepec - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 69195,
                          "name": "Metepec - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69212,
                          "name": "Fujairah - UAE - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69225,
                          "name": "Cap Cana, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 69247,
                          "name": "Cap Cana - Dominican Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69257,
                          "name": "Cap Cana - Dominican Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69273,
                          "name": "Cap Cana, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69282,
                          "name": "Morelia, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 69302,
                          "name": "Morelia - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69313,
                          "name": "Sao Paulo - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 69334,
                          "name": "Sao Paulo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69359,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 69375,
                          "name": "Sao Paulo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69378,
                          "name": "Morelia, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69389,
                          "name": "Naples - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69404,
                          "name": "Naples, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69417,
                          "name": "Naples, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69422,
                          "name": "Girona - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69428,
                          "name": "Girona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69435,
                          "name": "Girona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69438,
                          "name": "Miyazaki - Japan",
                          "importance": 0
                        },
                        {
                          "id": 69451,
                          "name": "Miyazaki - Japan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69466,
                          "name": "Miyazaki - Japan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69473,
                          "name": "Menorca - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69476,
                          "name": "Menorca, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69496,
                          "name": "Sao Leopoldo - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69504,
                          "name": "Sao Leopoldo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69509,
                          "name": "Sao Leopoldo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69525,
                          "name": "Monza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69543,
                          "name": "Mauthausen, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69548,
                          "name": "Wuxi - China",
                          "importance": 0
                        },
                        {
                          "id": 69568,
                          "name": "Wuxi - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69580,
                          "name": "Wuxi, China",
                          "importance": 0
                        },
                        {
                          "id": 69590,
                          "name": "Wuxi, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69597,
                          "name": "Santos - Brazil",
                          "importance": 0
                        },
                        {
                          "id": 69604,
                          "name": "Santos - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69610,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 69621,
                          "name": "Santos, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69626,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 69634,
                          "name": "Brazzaville - Republic of Congo - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69637,
                          "name": "Brazzaville, Republic of Congo, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69640,
                          "name": "Wuxi - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69642,
                          "name": "Wuxi, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69648,
                          "name": "Oeiras 4 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 69654,
                          "name": "Oeiras 4 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69665,
                          "name": "Oeiras 4, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 69673,
                          "name": "Oeiras 4, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69678,
                          "name": "Oeiras 4, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 69686,
                          "name": "Oeiras 4, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69700,
                          "name": "Chisinau - Moldova - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69703,
                          "name": "Birmingham - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 69712,
                          "name": "Birmingham - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69717,
                          "name": "Tyler - USA",
                          "importance": 0
                        },
                        {
                          "id": 69725,
                          "name": "Tyler - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69730,
                          "name": "Tyler, USA",
                          "importance": 0
                        },
                        {
                          "id": 69737,
                          "name": "Tyler, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69740,
                          "name": "Tyler - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69744,
                          "name": "Tyler, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69747,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69751,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69753,
                          "name": "New Haven - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69763,
                          "name": "Birmingham - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69765,
                          "name": "Nottingham 2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 69770,
                          "name": "Nottingham 2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 69775,
                          "name": "Nottingham 2 - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69777,
                          "name": "Royan - France",
                          "importance": 0
                        },
                        {
                          "id": 69787,
                          "name": "Royan - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69792,
                          "name": "Royan - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69795,
                          "name": "Piracicaba - Brazil - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69799,
                          "name": "Piracicaba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69800,
                          "name": "Mestre, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69804,
                          "name": "Targu Mures - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69813,
                          "name": "Troyes - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69816,
                          "name": "Troyes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69820,
                          "name": "Troyes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69824,
                          "name": "Troyes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69830,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69840,
                          "name": "Nottingham 3 - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69844,
                          "name": "Newport - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69845,
                          "name": "Bunschoten - Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 69854,
                          "name": "Bunschoten - Netherlands - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 69863,
                          "name": "Bunschoten - Netherlands - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69868,
                          "name": "Lincoln (NE) - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69875,
                          "name": "Lincoln (NE), USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69881,
                          "name": "Bloomfield Hills - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 69887,
                          "name": "Hagen - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71578,
                          "name": "Barranquilla - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71585,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71589,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 71591,
                          "name": "Mexico City, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71596,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 71597,
                          "name": "Sofia - Bulgaria",
                          "importance": 0
                        },
                        {
                          "id": 71598,
                          "name": "Shymkent, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 71599,
                          "name": "Gwangju - Korea Republic - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71605,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71608,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71610,
                          "name": "Shymkent, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71847,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 71848,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 71850,
                          "name": "Rome 1 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71860,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71862,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 71864,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71865,
                          "name": "Shymkent, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71866,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71868,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 71869,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 71870,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 71871,
                          "name": "Sarasota - USA",
                          "importance": 0
                        },
                        {
                          "id": 71873,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 71875,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 71876,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 72385,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72390,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72391,
                          "name": "Sofia - Bulgaria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72456,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72520,
                          "name": "Barcelona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72521,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72522,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72561,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72639,
                          "name": "Girona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 72640,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72667,
                          "name": "Amersfoort, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72680,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72705,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 72707,
                          "name": "Gran Canaria - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72710,
                          "name": "Montevideo, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72720,
                          "name": "Knoxville - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72722,
                          "name": "Roanne, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72765,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72766,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72767,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72774,
                          "name": "Maia, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72779,
                          "name": "Temuco, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72783,
                          "name": "Manzanillo - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72805,
                          "name": "Sydney - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72809,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 72817,
                          "name": "Almaty 2 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 72824,
                          "name": "Forli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 72831,
                          "name": "Sydney, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72832,
                          "name": "Almaty II - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 72846,
                          "name": "Montemar, Spain",
                          "importance": 0
                        },
                        {
                          "id": 72847,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 72848,
                          "name": "Rovereto - Italy",
                          "importance": 0
                        },
                        {
                          "id": 72851,
                          "name": "Rovereto - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72852,
                          "name": "Montemar, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 72853,
                          "name": "Yokkaichi, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72874,
                          "name": "Rovereto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 72902,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 72974,
                          "name": "Forli 4 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 72994,
                          "name": "Rovereto, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73012,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73014,
                          "name": "Bloomfield Hills - USA",
                          "importance": 0
                        },
                        {
                          "id": 73015,
                          "name": "Santa Fe - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 73018,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 73020,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 73021,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 73022,
                          "name": "Braunschweig, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73023,
                          "name": "Szekesfehervar - Hungary - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73025,
                          "name": "Troyes, France",
                          "importance": 0
                        },
                        {
                          "id": 73026,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 73030,
                          "name": "Iasi, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73031,
                          "name": "Salzburg, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73033,
                          "name": "Santa Fe - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73034,
                          "name": "Forli, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73035,
                          "name": "Almaty 2 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73036,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 73042,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73071,
                          "name": "Rovereto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73125,
                          "name": "Karlsruhe, Germany",
                          "importance": 0
                        },
                        {
                          "id": 73129,
                          "name": "Karlsruhe, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73157,
                          "name": "Almaty - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 73165,
                          "name": "Forli 4 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73174,
                          "name": "Almaty, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 73188,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73202,
                          "name": "Troyes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73204,
                          "name": "Bloomfield Hills - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73217,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73219,
                          "name": "Santa Fe - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73245,
                          "name": "Santa Fe, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73248,
                          "name": "Santa Fe, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73255,
                          "name": "Biella 7 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 73259,
                          "name": "Little Rock, USA",
                          "importance": 0
                        },
                        {
                          "id": 73264,
                          "name": "Almaty - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73265,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73268,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73270,
                          "name": "Orlando 2 - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73342,
                          "name": "Montemar, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73353,
                          "name": "Almaty, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 73362,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 73367,
                          "name": "Bengaluru, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73385,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 73386,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 73389,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73421,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73441,
                          "name": "Happy Valley - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73446,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73447,
                          "name": "Karlsruhe - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73464,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73547,
                          "name": "Busan, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 73549,
                          "name": "Hamburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 73553,
                          "name": "Coquimbo 2 - Chile",
                          "importance": 0
                        },
                        {
                          "id": 73555,
                          "name": "Vilnius - Lithuania",
                          "importance": 0
                        },
                        {
                          "id": 73558,
                          "name": "Hamburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73563,
                          "name": "Coquimbo 2 - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73567,
                          "name": "Vilnius - Lithuania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73568,
                          "name": "Playford - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73581,
                          "name": "Medellin - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 73582,
                          "name": "Modena, Italy",
                          "importance": 0
                        },
                        {
                          "id": 73584,
                          "name": "Vilnius, Lithuania",
                          "importance": 0
                        },
                        {
                          "id": 73588,
                          "name": "Medellin - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73594,
                          "name": "Modena - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73615,
                          "name": "Modena, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73620,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73621,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73640,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73678,
                          "name": "Biella 7 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73679,
                          "name": "Little Rock, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73732,
                          "name": "Oeiras 4, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 73776,
                          "name": "Tenerife 2, Spain",
                          "importance": 0
                        },
                        {
                          "id": 73777,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 73779,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73782,
                          "name": "Kigali 1 - Rwanda - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73796,
                          "name": "Tenerife 3 - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73797,
                          "name": "Medellin - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73799,
                          "name": "Modena - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73838,
                          "name": "Vilnius - Lithuania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73885,
                          "name": "Lyon 2 - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73919,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 73920,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 73921,
                          "name": "Rio de Janeiro, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 73922,
                          "name": "Seoul, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 73923,
                          "name": "Saint Tropez, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 73926,
                          "name": "Busan, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73930,
                          "name": "Hamburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73933,
                          "name": "Vilnius, Lithuania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73934,
                          "name": "Busan, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 73937,
                          "name": "Santa Cruz, Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 74030,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74043,
                          "name": "Biella 6 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 74053,
                          "name": "Oeiras 3, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 74138,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 74139,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74141,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74144,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74145,
                          "name": "Palmas del Mar - Puerto Rico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74146,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74151,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 74155,
                          "name": "Palmas del Mar - Puerto Rico",
                          "importance": 0
                        },
                        {
                          "id": 74160,
                          "name": "Matsuyama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74162,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 74168,
                          "name": "Seoul - Korea Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74171,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 74176,
                          "name": "Bengaluru, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74183,
                          "name": "Glasgow, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74187,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 74189,
                          "name": "Fairfield, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74192,
                          "name": "Biella 6 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74193,
                          "name": "Oeiras 3, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74198,
                          "name": "Ismaning, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74206,
                          "name": "Rio de Janeiro, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74252,
                          "name": "Santa Cruz, Bolivia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74307,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74320,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74322,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74338,
                          "name": "Gimcheon - South Korea - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74340,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 74380,
                          "name": "Burnie 2 - Australia",
                          "importance": 0
                        },
                        {
                          "id": 74381,
                          "name": "Burnie 2 - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74382,
                          "name": "Nottingham - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74385,
                          "name": "Brazzaville - Republic of Congo",
                          "importance": 0
                        },
                        {
                          "id": 74386,
                          "name": "Helsinki - Finland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74388,
                          "name": "Knoxville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74395,
                          "name": "Matsuyama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74409,
                          "name": "Brazzaville, Republic of Congo",
                          "importance": 0
                        },
                        {
                          "id": 74413,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 74418,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74445,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74538,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 74584,
                          "name": "Biella 5 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 74597,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 74601,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74641,
                          "name": "Ningbo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74674,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74679,
                          "name": "Forli 2 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74690,
                          "name": "Playford - Australia",
                          "importance": 0
                        },
                        {
                          "id": 74691,
                          "name": "Cleveland, USA",
                          "importance": 0
                        },
                        {
                          "id": 74692,
                          "name": "Burnie 2 - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74694,
                          "name": "Curitiba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74696,
                          "name": "Taipei 2 - Chinese Taipei - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74710,
                          "name": "Little Rock, USA",
                          "importance": 0
                        },
                        {
                          "id": 74717,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 74720,
                          "name": "Prague, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74722,
                          "name": "Salinas 2 - Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 74725,
                          "name": "Troisdorf, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74727,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74729,
                          "name": "Biella 5 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74730,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74762,
                          "name": "Charleston - SC - USA",
                          "importance": 0
                        },
                        {
                          "id": 74768,
                          "name": "Charleston - SC - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74785,
                          "name": "Buenos Aires - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 74788,
                          "name": "Burnie 1 - Australia",
                          "importance": 0
                        },
                        {
                          "id": 74789,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74796,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74797,
                          "name": "Cleveland, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74798,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74833,
                          "name": "Rome 2 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 74850,
                          "name": "Burnie 1 - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74853,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74858,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74863,
                          "name": "Piracicaba, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74893,
                          "name": "Bendigo, Australia",
                          "importance": 0
                        },
                        {
                          "id": 74896,
                          "name": "Brazzaville - Republic of Congo - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74908,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 74910,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 74911,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74912,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74914,
                          "name": "Villa Maria - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74922,
                          "name": "Brazzaville, Republic of Congo, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74932,
                          "name": "Traralgon - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74934,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74937,
                          "name": "Salinas 2 - Ecuador - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74938,
                          "name": "Villa Maria, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74953,
                          "name": "Olbia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 74956,
                          "name": "Charleston - SC - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74959,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 74961,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74965,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74967,
                          "name": "Olbia - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74972,
                          "name": "Shenzhen 2 - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 74980,
                          "name": "Chengdu - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 74981,
                          "name": "Olbia - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75013,
                          "name": "Rome 1 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 75022,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 75030,
                          "name": "Rome 1 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75032,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75064,
                          "name": "Playford, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75073,
                          "name": "Bangkok-2 - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75075,
                          "name": "Orlando, USA",
                          "importance": 0
                        },
                        {
                          "id": 75108,
                          "name": "Belgrade - Serbia",
                          "importance": 0
                        },
                        {
                          "id": 75110,
                          "name": "Split 2 - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 75119,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75124,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 75125,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 75126,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75127,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75128,
                          "name": "Genoa, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75131,
                          "name": "Sibiu, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75204,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75207,
                          "name": "Little Rock, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75226,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75251,
                          "name": "Maia 2 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 75299,
                          "name": "Split 2 - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75331,
                          "name": "Belgrade - Serbia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75340,
                          "name": "Valencia - Spain",
                          "importance": 0
                        },
                        {
                          "id": 75342,
                          "name": "Hangzhou - China",
                          "importance": 0
                        },
                        {
                          "id": 75343,
                          "name": "Valencia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75344,
                          "name": "Olbia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75345,
                          "name": "Oeiras 2, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 75346,
                          "name": "Shenzhen 2 - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75348,
                          "name": "Split 1 - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 75358,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75446,
                          "name": "Skopje - North Macedonia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75462,
                          "name": "Skopje, North Macedonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75491,
                          "name": "Maia 2 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75492,
                          "name": "Forli 3, Italy",
                          "importance": 0
                        },
                        {
                          "id": 75499,
                          "name": "Hangzhou - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75505,
                          "name": "Skopje - North Macedonia",
                          "importance": 0
                        },
                        {
                          "id": 75526,
                          "name": "Antalya 4 - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 75573,
                          "name": "Cortina - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75574,
                          "name": "Split 1 - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75588,
                          "name": "Maspalomas, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75594,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 75595,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 75597,
                          "name": "Oeiras 2, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75599,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75600,
                          "name": "Valencia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 75601,
                          "name": "Mauthausen, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75602,
                          "name": "Prague 2, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75606,
                          "name": "Brasilia, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 75609,
                          "name": "Valencia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75643,
                          "name": "Hangzhou - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75659,
                          "name": "Nonthaburi 2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 75661,
                          "name": "Toulouse - France",
                          "importance": 0
                        },
                        {
                          "id": 75664,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75665,
                          "name": "Mallorca, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75666,
                          "name": "Toulouse - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75667,
                          "name": "Maia, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75668,
                          "name": "Cassis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75701,
                          "name": "Aix En Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 75704,
                          "name": "Antalya 4 - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75710,
                          "name": "Villena, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75711,
                          "name": "Buenos Aires 3 - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75712,
                          "name": "Valencia - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75756,
                          "name": "Antalya 3 - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 75758,
                          "name": "Forli 2, Italy",
                          "importance": 0
                        },
                        {
                          "id": 75761,
                          "name": "Brasilia - Brazil - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75813,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 75817,
                          "name": "Seoul, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 75818,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75819,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75820,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75821,
                          "name": "Zadar, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 75822,
                          "name": "Seoul, Korea Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75827,
                          "name": "Prague 1, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75832,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 75894,
                          "name": "Toulouse - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75915,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 75916,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 75917,
                          "name": "Danderyd - Sweden",
                          "importance": 0
                        },
                        {
                          "id": 75919,
                          "name": "Danderyd - Sweden - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 75921,
                          "name": "Valencia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75927,
                          "name": "Antalya 3 - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75935,
                          "name": "Forli 2, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75967,
                          "name": "Biella 4 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 75968,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 75969,
                          "name": "Zadar, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 75995,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76002,
                          "name": "Prague 3, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76021,
                          "name": "Biella 4 - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76050,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 76052,
                          "name": "Oeiras 3, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 76055,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 76057,
                          "name": "Oeiras 3, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76058,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 76059,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76062,
                          "name": "Brasilia, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 76070,
                          "name": "Seoul, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76096,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76098,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76099,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76101,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76109,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76126,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76135,
                          "name": "Danderyd - Sweden - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76153,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76154,
                          "name": "Biella 4 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76156,
                          "name": "Buenos Aires 3 - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76165,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76209,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76211,
                          "name": "Nonthaburi 4 - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 76213,
                          "name": "Antofagasta - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76214,
                          "name": "Charleston - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76216,
                          "name": "Lisbon, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76217,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76224,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76234,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76254,
                          "name": "Oeiras 3, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76273,
                          "name": "Leon - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 76289,
                          "name": "Biella 3 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 76291,
                          "name": "St Petersburgh 2 - Russia",
                          "importance": 0
                        },
                        {
                          "id": 76294,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 76299,
                          "name": "Bad Waltersdorf - Austria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76300,
                          "name": "Saint-Tropez - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76303,
                          "name": "Nonthaburi, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76304,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76305,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76327,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76329,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76330,
                          "name": "Matsuyama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76391,
                          "name": "Las Palmas 2 - Spain",
                          "importance": 0
                        },
                        {
                          "id": 76392,
                          "name": "St Petersburgh 1 - Russia",
                          "importance": 0
                        },
                        {
                          "id": 76393,
                          "name": "Nur-Sultan 2 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 76394,
                          "name": "Biella 3 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76399,
                          "name": "St Petersburgh 2 - Russia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76407,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 76422,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 76424,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 76433,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76445,
                          "name": "Dobrich 2 - Bulgaria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76452,
                          "name": "Guangzhou (Huangpu) - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76460,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 76461,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 76462,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 76464,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 76466,
                          "name": "Murcia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76467,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76468,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76471,
                          "name": "Split, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76481,
                          "name": "Knoxville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76482,
                          "name": "Split, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 76490,
                          "name": "Matsuyama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76498,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76565,
                          "name": "Leon - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76605,
                          "name": "Charlottesville,USA",
                          "importance": 0
                        },
                        {
                          "id": 76610,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 76617,
                          "name": "Tenerife, Spain",
                          "importance": 0
                        },
                        {
                          "id": 76620,
                          "name": "Bratislava 2, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76627,
                          "name": "Canberra II, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76654,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 76659,
                          "name": "Chicago, USA",
                          "importance": 0
                        },
                        {
                          "id": 76677,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 76687,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76689,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76691,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76694,
                          "name": "Sydney, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76721,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 76731,
                          "name": "St Petersburgh 1 - Russia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76736,
                          "name": "Las Palmas 2 - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76737,
                          "name": "Nur-Sultan 2 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76740,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76747,
                          "name": "Murcia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76774,
                          "name": "Knoxville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76775,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 76780,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76782,
                          "name": "Curitiba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 76783,
                          "name": "Playford, Australia",
                          "importance": 0
                        },
                        {
                          "id": 76786,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 76788,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76789,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76793,
                          "name": "Curitiba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76794,
                          "name": "Playford, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76799,
                          "name": "Nur-Sultan 1 - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 76838,
                          "name": "Nur-Sultan II - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 76841,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76853,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76899,
                          "name": "Dobrich 2 - Bulgaria - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76903,
                          "name": "Guangzhou (Huangpu) - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76923,
                          "name": "Eckental, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76926,
                          "name": "Tenerife, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 76960,
                          "name": "Girona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 76961,
                          "name": "Mexico City - Mexico - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76962,
                          "name": "Sanremo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76985,
                          "name": "Istanbul, Turkiye",
                          "importance": 0
                        },
                        {
                          "id": 76987,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 76988,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77062,
                          "name": "Biella 2 - Italy",
                          "importance": 0
                        },
                        {
                          "id": 77064,
                          "name": "Ismaning, Germany",
                          "importance": 0
                        },
                        {
                          "id": 77067,
                          "name": "Nur-Sultan 1 - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77091,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77130,
                          "name": "Cassis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77150,
                          "name": "Girona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77175,
                          "name": "Shenzhen II, China",
                          "importance": 0
                        },
                        {
                          "id": 77179,
                          "name": "Santa Fe 2 - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 77181,
                          "name": "Hamburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 77183,
                          "name": "Santa Fe 2 - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77185,
                          "name": "Hamburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77186,
                          "name": "Olbia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77189,
                          "name": "Shenzhen II, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77195,
                          "name": "Shenzhen II - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77197,
                          "name": "Sanremo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77199,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 77208,
                          "name": "Ismaning, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77210,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77237,
                          "name": "Singles - 2022 Segovia - Spain",
                          "importance": 0
                        },
                        {
                          "id": 77239,
                          "name": "San Benedetto Del Tronto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77268,
                          "name": "Szekesfehervar, Hungary",
                          "importance": 0
                        },
                        {
                          "id": 77273,
                          "name": "Vina del Mar - Chile",
                          "importance": 0
                        },
                        {
                          "id": 77276,
                          "name": "Phoenix, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77277,
                          "name": "Szekesfehervar, Hungary, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77299,
                          "name": "Istanbul, Turkiye, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77304,
                          "name": "Biella 2 - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77362,
                          "name": "Manacor - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77364,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 77366,
                          "name": "Zhangjiagang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77367,
                          "name": "Losinj - Croatia",
                          "importance": 0
                        },
                        {
                          "id": 77369,
                          "name": "Porto 2 - Portugal - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77373,
                          "name": "Indianapolis - USA",
                          "importance": 0
                        },
                        {
                          "id": 77384,
                          "name": "Nur Sultan - Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 77386,
                          "name": "Porto 2, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77389,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 77392,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 77395,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77403,
                          "name": "Indianspolis - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77404,
                          "name": "Nur Sultan - Kazakhstan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77409,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77412,
                          "name": "Vina del Mar - Chile - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77426,
                          "name": "Santa Fe 2 - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77431,
                          "name": "Hamburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77510,
                          "name": "Santiago 3 - Chile",
                          "importance": 0
                        },
                        {
                          "id": 77513,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77519,
                          "name": "Losinj - Croatia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77534,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77548,
                          "name": "Szekesfehervar, Hungary, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77549,
                          "name": "Vina del Mar - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77568,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 77581,
                          "name": "Nur Sultan - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77607,
                          "name": "Antalya 2 - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 77609,
                          "name": "Quimper 2 - France",
                          "importance": 0
                        },
                        {
                          "id": 77652,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 77654,
                          "name": "Singles - 2022 Rome - USA",
                          "importance": 0
                        },
                        {
                          "id": 77661,
                          "name": "Verona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 77664,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 77666,
                          "name": "Malaga, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77674,
                          "name": "Shenzhen - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77699,
                          "name": "Napoli - Italy",
                          "importance": 0
                        },
                        {
                          "id": 77755,
                          "name": "Antalya - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 77767,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77768,
                          "name": "Antalya 1 - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77775,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77800,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 77803,
                          "name": "Charleston, USA",
                          "importance": 0
                        },
                        {
                          "id": 77809,
                          "name": "Charleston, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77815,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77824,
                          "name": "Mouilleron-Le-Captif, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77843,
                          "name": "Barcelona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 77848,
                          "name": "Santiago 2 - Chile",
                          "importance": 0
                        },
                        {
                          "id": 77874,
                          "name": "Antalya, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 77876,
                          "name": "Antalya 2 - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77878,
                          "name": "Santiago 2, Chile",
                          "importance": 0
                        },
                        {
                          "id": 77879,
                          "name": "Quimper 2 - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 77924,
                          "name": "Waco - Texas",
                          "importance": 0
                        },
                        {
                          "id": 77928,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77931,
                          "name": "Waco - Texas - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77935,
                          "name": "Dobrich - Bulgaria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 77938,
                          "name": "Jinan, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78030,
                          "name": "Charleston, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78040,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 78044,
                          "name": "Waco - Texas - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78048,
                          "name": "Mouilleron-Le-Captif, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78051,
                          "name": "Napoli - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78056,
                          "name": "Santiago 2 - Chile - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78066,
                          "name": "Santo Domingo - Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 78068,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 78073,
                          "name": "Grodzisk Mazowiecki, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78074,
                          "name": "Bad Waltersdorf, Austria",
                          "importance": 0
                        },
                        {
                          "id": 78075,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78083,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78084,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78110,
                          "name": "Istanbul, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78127,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 78128,
                          "name": "Porto, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 78129,
                          "name": "Singles - 2022 Todi - Italy",
                          "importance": 0
                        },
                        {
                          "id": 78217,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78220,
                          "name": "Bonn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78221,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 78223,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 78226,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 78227,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 78245,
                          "name": "Bengaluru, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78275,
                          "name": "Bad Waltersdorf, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78276,
                          "name": "Saint-Tropez, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78278,
                          "name": "Antofagasta, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78282,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78290,
                          "name": "Manama, Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 78292,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 78294,
                          "name": "Manama, Bahrain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78295,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78296,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78356,
                          "name": "Ambato, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78405,
                          "name": "Porto, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 78407,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 78410,
                          "name": "Porto, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78412,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78413,
                          "name": "Luedenscheid, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78415,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78416,
                          "name": "Santa Cruz, Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 78417,
                          "name": "Bad Waltersdorf, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78419,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78422,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78426,
                          "name": "Sibiu, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78480,
                          "name": "Tenerife 3, Spain",
                          "importance": 0
                        },
                        {
                          "id": 78484,
                          "name": "Tulln, Austria",
                          "importance": 0
                        },
                        {
                          "id": 78485,
                          "name": "Tenerife 3, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78486,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 78487,
                          "name": "Vilnius, Lithuania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78489,
                          "name": "Kiev - Ukraine",
                          "importance": 0
                        },
                        {
                          "id": 78494,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78497,
                          "name": "Istanbul II - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78530,
                          "name": "Singles - 2022 Malaga - Spain",
                          "importance": 0
                        },
                        {
                          "id": 78533,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78536,
                          "name": "Guangzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78537,
                          "name": "Santa Cruz, Bolivia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78559,
                          "name": "Porto, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78561,
                          "name": "Cassis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78598,
                          "name": "Tenerife 3, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78625,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 78626,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 78628,
                          "name": "Zhuhai - China",
                          "importance": 0
                        },
                        {
                          "id": 78629,
                          "name": "Troyes, France",
                          "importance": 0
                        },
                        {
                          "id": 78633,
                          "name": "Prague 3, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78639,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78642,
                          "name": "Zhuhai, China",
                          "importance": 0
                        },
                        {
                          "id": 78647,
                          "name": "Zhuhai, China",
                          "importance": 0
                        },
                        {
                          "id": 78660,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 78661,
                          "name": "Verona, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78662,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78665,
                          "name": "Luedenscheid, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78666,
                          "name": "Tulln, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78670,
                          "name": "Liberec, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78769,
                          "name": "Saint Tropez, France",
                          "importance": 0
                        },
                        {
                          "id": 78789,
                          "name": "Zhuhai - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78797,
                          "name": "Piracicaba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78849,
                          "name": "Piracicaba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 78859,
                          "name": "Santo Domingo - Dominican Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78861,
                          "name": "Banja Luka - Bosnia and Herzegovina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78863,
                          "name": "Meerbusch - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78864,
                          "name": "Santiago de Cali - Singles - 2022 Cali - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78880,
                          "name": "Nonthaburi 3, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 78890,
                          "name": "Piracicaba, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78893,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78930,
                          "name": "Tampere, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 78938,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 78942,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78943,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 78944,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 78945,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 79052,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 79055,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 79056,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 79057,
                          "name": "Salzburg, Austria",
                          "importance": 0
                        },
                        {
                          "id": 79059,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79060,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79063,
                          "name": "Iasi, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79065,
                          "name": "Trieste, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79067,
                          "name": "Amersfoort, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79068,
                          "name": "Pozoblanco, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79111,
                          "name": "Maui - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79153,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79200,
                          "name": "Iasi, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79221,
                          "name": "Braunschweig, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79230,
                          "name": "Corrientes - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 79231,
                          "name": "Parma, Italy",
                          "importance": 0
                        },
                        {
                          "id": 79262,
                          "name": "Winnipeg, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79287,
                          "name": "Ibague - Colombia",
                          "importance": 0
                        },
                        {
                          "id": 79288,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 79291,
                          "name": "Ibague - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79292,
                          "name": "Brasov - Romania - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79293,
                          "name": "Karlsruhe, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79294,
                          "name": "Modena, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79361,
                          "name": "Ibague - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79363,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79386,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 79401,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79402,
                          "name": "Nottingham 2, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79403,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79445,
                          "name": "Santa Fe, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 79446,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 79448,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79449,
                          "name": "Zagreb, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79450,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79451,
                          "name": "Nottingham 2, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79452,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79476,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79478,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79480,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79483,
                          "name": "Orlando, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79524,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 79565,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79577,
                          "name": "Santa Fe, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79578,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79617,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79640,
                          "name": "Kachreti - Georgia",
                          "importance": 0
                        },
                        {
                          "id": 79641,
                          "name": "Kachreti - Georgia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79686,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79691,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 79693,
                          "name": "Taipei - Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 79694,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 79695,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79696,
                          "name": "Oeiras 4, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79697,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79699,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79705,
                          "name": "Kachreti - Georgia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79732,
                          "name": "Tunis, Tunisia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79734,
                          "name": "Mauthausen, Austria",
                          "importance": 0
                        },
                        {
                          "id": 79735,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79736,
                          "name": "Taipei - Chinese Taipei - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79769,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 79771,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79801,
                          "name": "Cagliari, Italy",
                          "importance": 0
                        },
                        {
                          "id": 79802,
                          "name": "Guangzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 79803,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 79804,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79805,
                          "name": "Porto Alegre, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 79806,
                          "name": "Guangzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79807,
                          "name": "Porto Alegre, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79808,
                          "name": "Mauthausen, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79809,
                          "name": "Prague 2, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79864,
                          "name": "Porto Alegre, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79881,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 79891,
                          "name": "Concepcion, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79901,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79915,
                          "name": "Shenzhen, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79916,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79959,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 79960,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 79961,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 79962,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79963,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79964,
                          "name": "Split, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 79995,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79996,
                          "name": "Busan, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 79997,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80033,
                          "name": "Barcelona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 80035,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80036,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80037,
                          "name": "Calgary - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80039,
                          "name": "Ningbo - China",
                          "importance": 0
                        },
                        {
                          "id": 80040,
                          "name": "Ismaning, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80046,
                          "name": "Budapest - Hungary",
                          "importance": 0
                        },
                        {
                          "id": 80047,
                          "name": "Ludwigshafen - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80048,
                          "name": "Ningbo - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80051,
                          "name": "Launceston - Australia",
                          "importance": 0
                        },
                        {
                          "id": 80066,
                          "name": "Ningbo, China",
                          "importance": 0
                        },
                        {
                          "id": 80075,
                          "name": "San Francisco - USA",
                          "importance": 0
                        },
                        {
                          "id": 80082,
                          "name": "Budapest - Hungary - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80084,
                          "name": "San Francisco - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80085,
                          "name": "Budapest - Hungary - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80086,
                          "name": "San Francisco - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80117,
                          "name": "Budapest, Hungary",
                          "importance": 0
                        },
                        {
                          "id": 80123,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 80127,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 80129,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 80132,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80134,
                          "name": "Samarkand - Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 80141,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 80151,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80155,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80214,
                          "name": "Augsburg - Germany",
                          "importance": 0
                        },
                        {
                          "id": 80301,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80302,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80315,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80381,
                          "name": "Barcelona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 80383,
                          "name": "Alicante, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80400,
                          "name": "Forli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80435,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80450,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 80455,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 80458,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 80459,
                          "name": "Montechiarugolo - Italy",
                          "importance": 0
                        },
                        {
                          "id": 80461,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 80462,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80464,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80465,
                          "name": "Montechiarugolo - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80473,
                          "name": "Seoul, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 80474,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80485,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80489,
                          "name": "Tenerife 2, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80540,
                          "name": "Barcelona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80590,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80592,
                          "name": "Parma, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80609,
                          "name": "Menorca - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80625,
                          "name": "Dallas - USA",
                          "importance": 0
                        },
                        {
                          "id": 80633,
                          "name": "Launceston, Australia",
                          "importance": 0
                        },
                        {
                          "id": 80634,
                          "name": "Forli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 80635,
                          "name": "Biella, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80638,
                          "name": "Split, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80653,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 80656,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 80663,
                          "name": "Grodzisk Mazowiecki, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80669,
                          "name": "Oeiras 4, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80671,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80683,
                          "name": "Forli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80732,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80748,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 80749,
                          "name": "Hagen - Germany",
                          "importance": 0
                        },
                        {
                          "id": 80753,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80771,
                          "name": "Seoul, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80776,
                          "name": "Montemar, Spain",
                          "importance": 0
                        },
                        {
                          "id": 80777,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80796,
                          "name": "Sao Leopoldo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80861,
                          "name": "Gwangju, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80867,
                          "name": "Parma II - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80874,
                          "name": "Iasi, Romania",
                          "importance": 0
                        },
                        {
                          "id": 80913,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80930,
                          "name": "Yokkaichi, Japan",
                          "importance": 0
                        },
                        {
                          "id": 80935,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80937,
                          "name": "Montemar, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80964,
                          "name": "Indian Wells 2 - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80965,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 80970,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 80974,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81007,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 81019,
                          "name": "Orlando, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81030,
                          "name": "Yokkaichi, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81053,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 81055,
                          "name": "Oeiras 4, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81056,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81059,
                          "name": "Skopje - North Macedonia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81064,
                          "name": "Taipei 2 - Chinese Taipei - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81106,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81120,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 81122,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 81127,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81140,
                          "name": "Liberec, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81166,
                          "name": "Bucaramanga - Colombia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81167,
                          "name": "Montemar, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81175,
                          "name": "Split, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81179,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81185,
                          "name": "Istanbul, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81215,
                          "name": "Yokkaichi, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81216,
                          "name": "Hagen - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81221,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 81222,
                          "name": "Iasi, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81232,
                          "name": "Asuncion, Paraguay",
                          "importance": 0
                        },
                        {
                          "id": 81246,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81258,
                          "name": "Porto, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81300,
                          "name": "Zadar, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 81315,
                          "name": "Nonthaburi 2, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81355,
                          "name": "Roseto Degli Abruzzi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81415,
                          "name": "Ostrava - Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 81418,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81420,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81434,
                          "name": "Bloomfield Hills, USA",
                          "importance": 0
                        },
                        {
                          "id": 81435,
                          "name": "Bloomfield Hills, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81436,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81515,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 81590,
                          "name": "Saint-Tropez, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81600,
                          "name": "Sibiu, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81611,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81620,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81630,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81635,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81639,
                          "name": "Zadar, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81648,
                          "name": "Bloomfield Hills, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81651,
                          "name": "Tampere, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81680,
                          "name": "Asuncion, Paraguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81703,
                          "name": "Chennai, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81717,
                          "name": "St. Remy - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81718,
                          "name": "Antalya - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81720,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81721,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81722,
                          "name": "Murcia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81731,
                          "name": "San Marino - San Marino",
                          "importance": 0
                        },
                        {
                          "id": 81734,
                          "name": "St. Remy, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81765,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81770,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81783,
                          "name": "Ismaning, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81784,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 81786,
                          "name": "Phoenix, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81805,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81807,
                          "name": "Ostrava - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81813,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 81831,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81844,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81885,
                          "name": "Hersonissos 2, Greece",
                          "importance": 0
                        },
                        {
                          "id": 81894,
                          "name": "Kigali 2, Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 81904,
                          "name": "Cherbourg-en-Cotentin - France - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81905,
                          "name": "Kigali 2, Rwanda, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81906,
                          "name": "Hersonissos 2 - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81910,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 81912,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 81921,
                          "name": "Trieste - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81958,
                          "name": "Curitiba, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81964,
                          "name": "Playford, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 81967,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82005,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 82022,
                          "name": "Prague II - Czech Republic - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82050,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 82070,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82071,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82098,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82099,
                          "name": "Prague, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82145,
                          "name": "Zadar, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 82146,
                          "name": "Las Franquesas del Valles - Spain",
                          "importance": 0
                        },
                        {
                          "id": 82147,
                          "name": "Zadar, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82150,
                          "name": "Biel, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82154,
                          "name": "Las Franquesas del Valles - Spain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82171,
                          "name": "Ilkley, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82205,
                          "name": "Zadar, Croatia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82207,
                          "name": "Santo Domingo, Dominican Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82208,
                          "name": "Las Franquesas del Valles - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82209,
                          "name": "San Marino - San Marino - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82210,
                          "name": "Pozoblanco, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82261,
                          "name": "Helsinki, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82266,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82267,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82276,
                          "name": "Houston - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82277,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82307,
                          "name": "Cherbourg-en-Cotentin - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82311,
                          "name": "Hersonissos 2, Greece, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82313,
                          "name": "Kigali 2, Rwanda, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82316,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82439,
                          "name": "Hersonissos, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82455,
                          "name": "Bonn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82456,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82461,
                          "name": "Jiujiang - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82465,
                          "name": "Jiujiang - China",
                          "importance": 0
                        },
                        {
                          "id": 82501,
                          "name": "Playford City II - Australia",
                          "importance": 0
                        },
                        {
                          "id": 82514,
                          "name": "Antalya, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82515,
                          "name": "Puerto Vallarta, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82530,
                          "name": "Winnipeg, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82567,
                          "name": "Verona, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82632,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82636,
                          "name": "Fujairah - UAE",
                          "importance": 0
                        },
                        {
                          "id": 82638,
                          "name": "Braunschweig, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82639,
                          "name": "Iasi, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82640,
                          "name": "Newport - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82641,
                          "name": "Nottingham 3 - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82642,
                          "name": "Fujairah - UAE - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82644,
                          "name": "Trieste, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82652,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82664,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82665,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 82667,
                          "name": "Brasov, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82668,
                          "name": "Modena, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82670,
                          "name": "Troyes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82671,
                          "name": "Brasilia, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82679,
                          "name": "Hersonissos, Greece, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82681,
                          "name": "Modena, Italy",
                          "importance": 0
                        },
                        {
                          "id": 82689,
                          "name": "Kigali - Rwanda - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82697,
                          "name": "Troyes, France",
                          "importance": 0
                        },
                        {
                          "id": 82769,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 82774,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82788,
                          "name": "Lugano - Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 82789,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82850,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82902,
                          "name": "Playford City II - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82903,
                          "name": "Shenzhen II, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82906,
                          "name": "Eckental, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 82994,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 82997,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 82998,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 83000,
                          "name": "Sassuolo - Italy",
                          "importance": 0
                        },
                        {
                          "id": 83001,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83003,
                          "name": "Poznan, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83004,
                          "name": "Santa Cruz 2, Bolivia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83005,
                          "name": "Sassuolo - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83006,
                          "name": "Sassuolo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 83019,
                          "name": "Lugano - Switzerland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83044,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83046,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83075,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 83129,
                          "name": "Pau, France",
                          "importance": 0
                        },
                        {
                          "id": 83130,
                          "name": "Tenerife 2, Spain",
                          "importance": 0
                        },
                        {
                          "id": 83131,
                          "name": "Metepec - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83134,
                          "name": "Tigre, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83164,
                          "name": "Santa Cruz, Bolivia",
                          "importance": 0
                        },
                        {
                          "id": 83174,
                          "name": "Tashkent - Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 83182,
                          "name": "Nottingham 2, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83184,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83185,
                          "name": "Sassuolo - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83204,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 83289,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 83293,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83295,
                          "name": "Baton Rouge - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83337,
                          "name": "Baotou - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83386,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83465,
                          "name": "Houston, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83498,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 83499,
                          "name": "Brisbane 2 - Australia",
                          "importance": 0
                        },
                        {
                          "id": 83508,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83509,
                          "name": "Izmir - Turkey",
                          "importance": 0
                        },
                        {
                          "id": 83510,
                          "name": "Kaohsiung, Taiwan",
                          "importance": 0
                        },
                        {
                          "id": 83511,
                          "name": "Kenitra - Morocco",
                          "importance": 0
                        },
                        {
                          "id": 83512,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 83513,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83515,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83522,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83526,
                          "name": "Tiburon, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83527,
                          "name": "Medellin, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83528,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 83532,
                          "name": "Rome - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83540,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83542,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83547,
                          "name": "Columbus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83576,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83581,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83583,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 83628,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83669,
                          "name": "Karshi - Uzbekistan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83696,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 83758,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 83760,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 83766,
                          "name": "Newport Beach - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83769,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83778,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 83784,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 83787,
                          "name": "Meknes - Morocco",
                          "importance": 0
                        },
                        {
                          "id": 83790,
                          "name": "Barranquilla, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 83792,
                          "name": "Nanchang - China",
                          "importance": 0
                        },
                        {
                          "id": 83801,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83802,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83805,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83806,
                          "name": "Nanchang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83807,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83809,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83810,
                          "name": "Santo Domingo, Dominican Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83811,
                          "name": "Fairfield, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83812,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83814,
                          "name": "Istanbul, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83815,
                          "name": "Bangkok II, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83816,
                          "name": "Barcelona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83819,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83824,
                          "name": "Meknes - Morocco - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83825,
                          "name": "Sassuolo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83834,
                          "name": "Ho Chi Minh City - Vietnam - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83850,
                          "name": "Nanchang, China",
                          "importance": 0
                        },
                        {
                          "id": 83851,
                          "name": "Nanchang, China",
                          "importance": 0
                        },
                        {
                          "id": 83862,
                          "name": "Irving - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 83887,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83888,
                          "name": "Prague, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 83896,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 83917,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 83922,
                          "name": "Fairfield, USA",
                          "importance": 0
                        },
                        {
                          "id": 83949,
                          "name": "Fergana - Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 83993,
                          "name": "Newport Beach, USA",
                          "importance": 0
                        },
                        {
                          "id": 83996,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84016,
                          "name": "Santa Cruz, Bolivia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84051,
                          "name": "Anning, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84056,
                          "name": "Charlottesville - USA - Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84104,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84105,
                          "name": "Fergana - Uzbekistan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84106,
                          "name": "Blois, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84109,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84110,
                          "name": "Parma, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84145,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 84147,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 84149,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 84150,
                          "name": "Burnie, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84155,
                          "name": "Nottingham 2, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84183,
                          "name": "Mestre - Italy",
                          "importance": 0
                        },
                        {
                          "id": 84214,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84288,
                          "name": "Mestre, Italy",
                          "importance": 0
                        },
                        {
                          "id": 84318,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 84330,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 84331,
                          "name": "Alphen - Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 84332,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 84346,
                          "name": "St. Remy - France",
                          "importance": 0
                        },
                        {
                          "id": 84348,
                          "name": "Alphen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84349,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84350,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84351,
                          "name": "Barranquilla, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84360,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84362,
                          "name": "Banja Luka, Bosnia & Herzegovina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84373,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84397,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 84400,
                          "name": "Florence - Italy",
                          "importance": 0
                        },
                        {
                          "id": 84406,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84432,
                          "name": "Santa Fe, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 84436,
                          "name": "Nanchang - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84440,
                          "name": "Ilkley - Great Britainm - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84450,
                          "name": "Tashkent - Uzbekistan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84608,
                          "name": "Phan Thiet 2 - Vietnam",
                          "importance": 0
                        },
                        {
                          "id": 84617,
                          "name": "Manama, Bahrain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84623,
                          "name": "San Diego, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84680,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 84682,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 84686,
                          "name": "Shymkent, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 84688,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84691,
                          "name": "Shymkent, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84692,
                          "name": "Mestre - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84700,
                          "name": "Shymkent, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84704,
                          "name": "Shymkent II - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84705,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84707,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84770,
                          "name": "Potchefstroom - South Africa - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 84774,
                          "name": "Brescia - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84775,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84787,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 84792,
                          "name": "Santiago 2, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84796,
                          "name": "Indian Wells, USA",
                          "importance": 0
                        },
                        {
                          "id": 84801,
                          "name": "Santa Fe, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84808,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84821,
                          "name": "Lyon, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84931,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84948,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 84961,
                          "name": "Stockton - USA",
                          "importance": 0
                        },
                        {
                          "id": 84966,
                          "name": "Canberra - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84968,
                          "name": "Stockton - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84977,
                          "name": "Costa Rica F1 - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 84985,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85015,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 85026,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 85033,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 85037,
                          "name": "Curitiba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 85043,
                          "name": "Bangkok - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 85055,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85057,
                          "name": "Curitiba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85058,
                          "name": "Mestre, Italy",
                          "importance": 0
                        },
                        {
                          "id": 85059,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85063,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85064,
                          "name": "Curitiba, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85078,
                          "name": "Qingdao - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85096,
                          "name": "Oeiras, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85136,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 85139,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85142,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85211,
                          "name": "Tyler, USA",
                          "importance": 0
                        },
                        {
                          "id": 85215,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85216,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85218,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85233,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85250,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85322,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 85347,
                          "name": "Florence, Italy",
                          "importance": 0
                        },
                        {
                          "id": 85355,
                          "name": "Barcelona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85359,
                          "name": "Nur-Sultan II - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85360,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85398,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85403,
                          "name": "Marburg - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85446,
                          "name": "Indian Wells, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85448,
                          "name": "Monterrey, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85483,
                          "name": "Manerbio - Italy",
                          "importance": 0
                        },
                        {
                          "id": 85496,
                          "name": "Bangkok - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85507,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 85546,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 85556,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85617,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 85622,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 85624,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 85629,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85641,
                          "name": "Almaty II - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85646,
                          "name": "Florence - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85665,
                          "name": "Monterrey, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85676,
                          "name": "Stockton - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85688,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85725,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 85727,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 85732,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 85735,
                          "name": "Chengdu, China",
                          "importance": 0
                        },
                        {
                          "id": 85736,
                          "name": "Prague II, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 85741,
                          "name": "Scheveningen - Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 85742,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 85749,
                          "name": "Phan Thiet 2 - Vietnam - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85750,
                          "name": "Chengdu, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85755,
                          "name": "Prague II, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85756,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85757,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 85758,
                          "name": "Liberec, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85770,
                          "name": "Chengdu, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85771,
                          "name": "Cortina - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85780,
                          "name": "Liberec, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85781,
                          "name": "Granby, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85821,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 85842,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85847,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 85882,
                          "name": "Samarkand - Uzbekistan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85887,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85889,
                          "name": "Santiago 2, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85892,
                          "name": "Skopje, North Macedonia",
                          "importance": 0
                        },
                        {
                          "id": 85906,
                          "name": "Karshi - Uzbekistan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 85948,
                          "name": "Columbus III - USA",
                          "importance": 0
                        },
                        {
                          "id": 85954,
                          "name": "Glasgow, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 86011,
                          "name": "Bangkok II - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 86023,
                          "name": "Glasgow, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86077,
                          "name": "Bangkok II, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 86109,
                          "name": "Kaohsiung, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 86110,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86123,
                          "name": "Tiburon, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86134,
                          "name": "Monterrey, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86137,
                          "name": "Tbilisi - Georgia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86141,
                          "name": "Launceston - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86263,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 86267,
                          "name": "Gimcheon - South Korea",
                          "importance": 0
                        },
                        {
                          "id": 86275,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 86278,
                          "name": "Gimcheon, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86283,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86289,
                          "name": "Gimcheon, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86295,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86298,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86316,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86321,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86333,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86340,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 86376,
                          "name": "Gimcheon, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 86380,
                          "name": "Binghamton - USA",
                          "importance": 0
                        },
                        {
                          "id": 86381,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 86391,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86393,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86395,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86396,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86401,
                          "name": "Stockton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86405,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86407,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86412,
                          "name": "Biella, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86419,
                          "name": "Prague II, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86425,
                          "name": "Scheveningen - Netherlands - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86428,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86447,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86469,
                          "name": "Sophia Antipolis - France - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86518,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86564,
                          "name": "Banja Luka, Bosnia & Herzegovina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86582,
                          "name": "Caltanissetta - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86624,
                          "name": "Caltanissetta - Italy",
                          "importance": 0
                        },
                        {
                          "id": 86632,
                          "name": "Mestre, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86633,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 86641,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 86644,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86646,
                          "name": "Jerusalem - Israel",
                          "importance": 0
                        },
                        {
                          "id": 86682,
                          "name": "Punta del Este, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86698,
                          "name": "Ho Chi Minh City - Vietnam - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86710,
                          "name": "Oeiras 5 - Portugal",
                          "importance": 0
                        },
                        {
                          "id": 86739,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86742,
                          "name": "Oeiras 5 - Portugal - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86758,
                          "name": "Turin, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86767,
                          "name": "Suzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86786,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 86803,
                          "name": "Rome II - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86825,
                          "name": "Playford City - Australia",
                          "importance": 0
                        },
                        {
                          "id": 86828,
                          "name": "Bangkok - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86836,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86854,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 86857,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 86874,
                          "name": "Sibiu, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86877,
                          "name": "Biella, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86879,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86882,
                          "name": "Kaohsiung - Chinese Taipei - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86916,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 86926,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86932,
                          "name": "Bangkok-2 - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86934,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 86940,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 86947,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86949,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 86950,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86959,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86961,
                          "name": "Winnipeg, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86965,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86968,
                          "name": "Poznan - Poland - Doubles - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86969,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86972,
                          "name": "Caltanissetta - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86973,
                          "name": "Rome - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86978,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86984,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86986,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86991,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86997,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 86998,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 87002,
                          "name": "Playford City - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87009,
                          "name": "Bangkok, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87010,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87033,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87094,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87154,
                          "name": "Sopot - Poland - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87239,
                          "name": "Sopot, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87251,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 87261,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87268,
                          "name": "Taipei, Chinese Taipei, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87300,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 87312,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87322,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87324,
                          "name": "Anning - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87332,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 87337,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87338,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87342,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87390,
                          "name": "Bangkok II, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 87477,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87562,
                          "name": "Qingdao - China",
                          "importance": 0
                        },
                        {
                          "id": 87572,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 87574,
                          "name": "Taipei, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 87580,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 87582,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 87583,
                          "name": "Bastad - Sweden",
                          "importance": 0
                        },
                        {
                          "id": 87589,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87590,
                          "name": "Winnipeg, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87591,
                          "name": "Winnetka - USA",
                          "importance": 0
                        },
                        {
                          "id": 87592,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87594,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87595,
                          "name": "Qingdao, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87596,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87601,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87603,
                          "name": "Poznan, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87605,
                          "name": "San Benedetto - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87626,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87630,
                          "name": "San Benedetto, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87678,
                          "name": "Bastad, Sweden",
                          "importance": 0
                        },
                        {
                          "id": 87719,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87780,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 87784,
                          "name": "Jerusalem - Israel - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87787,
                          "name": "Abidjan 2 - Cote d Ivoire",
                          "importance": 0
                        },
                        {
                          "id": 87790,
                          "name": "Gwangju, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 87903,
                          "name": "Rome II - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87921,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 87927,
                          "name": "Gimcheon, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87928,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 87929,
                          "name": "Abidjan 2 - Cote d Ivoire - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87931,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 87937,
                          "name": "Gwangju, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87973,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87975,
                          "name": "Cary, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 87985,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88118,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 88122,
                          "name": "Taipei, Chinese Taipei, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88124,
                          "name": "Prague, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88126,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88132,
                          "name": "Marburg - Germany",
                          "importance": 0
                        },
                        {
                          "id": 88136,
                          "name": "Busan, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88137,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88138,
                          "name": "Bastad, Sweden, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88145,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88150,
                          "name": "Hua Hin - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88154,
                          "name": "Manerbio - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88170,
                          "name": "Panama City, Panama, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88174,
                          "name": "Mestre, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88195,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88196,
                          "name": "Manerbio, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88208,
                          "name": "Athens - Greece",
                          "importance": 0
                        },
                        {
                          "id": 88213,
                          "name": "Athens - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88214,
                          "name": "Maia, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88216,
                          "name": "Temuco, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88217,
                          "name": "Bogota (Los Lagartos) - Colombia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88218,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88291,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 88304,
                          "name": "Shymkent 2, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88309,
                          "name": "Shymkent 2, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 88316,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 88317,
                          "name": "Gwangju, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88320,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88327,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88328,
                          "name": "Cassis, France",
                          "importance": 0
                        },
                        {
                          "id": 88330,
                          "name": "Samarkand, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88331,
                          "name": "Szczecin, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88343,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88351,
                          "name": "Shanghai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88353,
                          "name": "Playford, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88355,
                          "name": "Mexico City, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88356,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 88362,
                          "name": "Islamabad - Pakistan - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88364,
                          "name": "Manama 2 - Bahrain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88368,
                          "name": "Istanbul, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88483,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 88487,
                          "name": "Cuernavaca - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 88489,
                          "name": "Menorca, Spain",
                          "importance": 0
                        },
                        {
                          "id": 88496,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88501,
                          "name": "Timisoara - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88502,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88505,
                          "name": "Cuernavaca - Mexico - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88512,
                          "name": "Monza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88526,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88531,
                          "name": "Mouilleron Le Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88543,
                          "name": "Monza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 88584,
                          "name": "Bastad, Sweden",
                          "importance": 0
                        },
                        {
                          "id": 88621,
                          "name": "Stockton, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88642,
                          "name": "Cassis, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88648,
                          "name": "Genoa, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88650,
                          "name": "Cassis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88653,
                          "name": "Zhangjiagang, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88665,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 88666,
                          "name": "Shymkent, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 88671,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88749,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88752,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88753,
                          "name": "Mestre, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88754,
                          "name": "Winnetka, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88761,
                          "name": "Busan, Korea Republic",
                          "importance": 0
                        },
                        {
                          "id": 88772,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 88776,
                          "name": "St. Brieuc, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88785,
                          "name": "Brisbane 3 - Australia",
                          "importance": 0
                        },
                        {
                          "id": 88787,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88795,
                          "name": "Brisbane 3 - Australia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88798,
                          "name": "Sophia Antipolis - France",
                          "importance": 0
                        },
                        {
                          "id": 88799,
                          "name": "Barletta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88803,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88819,
                          "name": "Hua Hin - Thailand",
                          "importance": 0
                        },
                        {
                          "id": 88820,
                          "name": "Rio de Janeiro, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 88822,
                          "name": "Hua Hin, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88823,
                          "name": "Rimouski - Canada - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88824,
                          "name": "An-Ning - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88853,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88859,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88860,
                          "name": "Fano - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88879,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 88883,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88896,
                          "name": "Cuernavaca - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88900,
                          "name": "Menorca, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88972,
                          "name": "Como, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88985,
                          "name": "Manacor - Mallorca - Spain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 88999,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 89001,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 89002,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 89007,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 89009,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 89015,
                          "name": "Poprad Tatry, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 89023,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89032,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89034,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89040,
                          "name": "Busan, Korea Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89041,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89042,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89043,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89046,
                          "name": "Guadalajara - Mexico - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89053,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89055,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89093,
                          "name": "Guadalajara - Mexico",
                          "importance": 0
                        },
                        {
                          "id": 89094,
                          "name": "L'Aquila - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89097,
                          "name": "Meerbusch - Germany",
                          "importance": 0
                        },
                        {
                          "id": 89101,
                          "name": "Lima 3 - Peru",
                          "importance": 0
                        },
                        {
                          "id": 89110,
                          "name": "Shenzhen - China - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89116,
                          "name": "Brisbane 3 - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89118,
                          "name": "Asuncion, Paraguay",
                          "importance": 0
                        },
                        {
                          "id": 89119,
                          "name": "Zadar, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 89120,
                          "name": "Merida, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 89122,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 89129,
                          "name": "Zadar, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89131,
                          "name": "Asuncion, Paraguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89133,
                          "name": "Girona, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89136,
                          "name": "Naples, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89277,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89287,
                          "name": "Casablanca 2 - Morocco - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89380,
                          "name": "Aptos - USA",
                          "importance": 0
                        },
                        {
                          "id": 89400,
                          "name": "Pullach - Germany",
                          "importance": 0
                        },
                        {
                          "id": 89405,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89420,
                          "name": "Pullach - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89423,
                          "name": "Taipei, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 89429,
                          "name": "Lima 3 - Peru - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89431,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89436,
                          "name": "Gwangju, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89443,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 89446,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 89449,
                          "name": "Panama City - Panama",
                          "importance": 0
                        },
                        {
                          "id": 89451,
                          "name": "Brescia - Italy",
                          "importance": 0
                        },
                        {
                          "id": 89452,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89460,
                          "name": "Toyota - Japan",
                          "importance": 0
                        },
                        {
                          "id": 89465,
                          "name": "Brescia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89471,
                          "name": "Andria - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89472,
                          "name": "Phoenix, USA",
                          "importance": 0
                        },
                        {
                          "id": 89479,
                          "name": "Hersonissos 2, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89480,
                          "name": "Bangalore - India - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89482,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89497,
                          "name": "Hua Hin - Thailand - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89502,
                          "name": "Merida, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89513,
                          "name": "Puerto Vallarta, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 89660,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 89663,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 89664,
                          "name": "Moscow - Russia",
                          "importance": 0
                        },
                        {
                          "id": 89672,
                          "name": "Surbiton, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 89679,
                          "name": "Blois, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89685,
                          "name": "Fergana, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89689,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89702,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89708,
                          "name": "Matsuyama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89716,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89763,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 89781,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89786,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 89790,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 89797,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 89800,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89806,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89809,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89810,
                          "name": "Bucaramanga, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89814,
                          "name": "Seoul - South Korea - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89833,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 89866,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 89887,
                          "name": "Yokkaichi, Japan",
                          "importance": 0
                        },
                        {
                          "id": 89888,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 89901,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89902,
                          "name": "Meerbusch, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89908,
                          "name": "Portoroz - Slovenia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89983,
                          "name": "Cap Cana, Dominican Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 89991,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 89993,
                          "name": "Phoenix, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90001,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 90004,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 90008,
                          "name": "Padova - Italy",
                          "importance": 0
                        },
                        {
                          "id": 90011,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 90017,
                          "name": "Padova - Italy - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90020,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90021,
                          "name": "Brescia - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90023,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90028,
                          "name": "Liberec, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90040,
                          "name": "Chengdu, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90043,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 90046,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90051,
                          "name": "Lima 3 - Peru - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90063,
                          "name": "Segovia, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90066,
                          "name": "Sopot - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90085,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90088,
                          "name": "Sopot, Poland",
                          "importance": 0
                        },
                        {
                          "id": 90089,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 90099,
                          "name": "Yokkaichi, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90100,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90102,
                          "name": "Augsburg - Germany - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90103,
                          "name": "Manerbio - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90109,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90133,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90149,
                          "name": "Moscow - Russia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90153,
                          "name": "Surbiton, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90169,
                          "name": "Furth - Germany - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90212,
                          "name": "Guadalajara, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 90231,
                          "name": "Murcia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 90235,
                          "name": "Taipei, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 90265,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 90267,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 90271,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90274,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90279,
                          "name": "Italy F7 - Singles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90292,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90308,
                          "name": "Shenzhen II, China",
                          "importance": 0
                        },
                        {
                          "id": 90322,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 90341,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 90360,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90373,
                          "name": "Bengaluru, India",
                          "importance": 0
                        },
                        {
                          "id": 90375,
                          "name": "Kigali 1, Rwanda",
                          "importance": 0
                        },
                        {
                          "id": 90382,
                          "name": "Bengaluru, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90389,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90393,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90396,
                          "name": "Eckental, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90459,
                          "name": "Quanzhou - China - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90469,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 90477,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90505,
                          "name": "Charlottesville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90525,
                          "name": "Pau, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90526,
                          "name": "Bengaluru, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90528,
                          "name": "Kigali 1, Rwanda, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90536,
                          "name": "Gatineau, Canada",
                          "importance": 0
                        },
                        {
                          "id": 90540,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 90542,
                          "name": "Guadalajara, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90544,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90554,
                          "name": "Binghamton - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90565,
                          "name": "Granby, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90572,
                          "name": "Padova - Italy - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90583,
                          "name": "Tampere, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90680,
                          "name": "Manchester - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 90692,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 90709,
                          "name": "Manchester - Great Britain - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90717,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90736,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90755,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90774,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 90786,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 90793,
                          "name": "Buenos Aires - Argentina",
                          "importance": 0
                        },
                        {
                          "id": 90799,
                          "name": "Hersonissos 6 - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90801,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 90802,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 90804,
                          "name": "Irving - USA",
                          "importance": 0
                        },
                        {
                          "id": 90808,
                          "name": "Buenos Aires - Argentina - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90810,
                          "name": "Irving, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90814,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 90947,
                          "name": "Shenzhen II, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90952,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 90961,
                          "name": "Manama, Bahrain",
                          "importance": 0
                        },
                        {
                          "id": 91002,
                          "name": "Bangkok III - Thailand - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91074,
                          "name": "Buenos Aires - Argentina - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91075,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 91084,
                          "name": "Hersonissos 5 - Greece",
                          "importance": 0
                        },
                        {
                          "id": 91086,
                          "name": "Roanne, France",
                          "importance": 0
                        },
                        {
                          "id": 91087,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91094,
                          "name": "Valencia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91100,
                          "name": "Hersonissos 5 - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91101,
                          "name": "Roanne, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91107,
                          "name": "Shenzhen, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91113,
                          "name": "Shenzhen, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91116,
                          "name": "Irving - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91121,
                          "name": "Hersonissos 6 - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91129,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 91143,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 91145,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 91146,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 91149,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91150,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91151,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91152,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91155,
                          "name": "Gatineau - Canada - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91161,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91168,
                          "name": "Scheveningen, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91176,
                          "name": "Samarkand, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91180,
                          "name": "Seoul, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91181,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 91200,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 91233,
                          "name": "Traralgon, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91265,
                          "name": "Manama, Bahrain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91320,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 91321,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 91324,
                          "name": "Gatineau, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91326,
                          "name": "Nur-Sultan - Kazakhstan - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91327,
                          "name": "Amersfoort, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91415,
                          "name": "Sophia Antipolis, France",
                          "importance": 0
                        },
                        {
                          "id": 91417,
                          "name": "Alicante, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91419,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91421,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 91428,
                          "name": "Zhuhai, China",
                          "importance": 0
                        },
                        {
                          "id": 91429,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 91532,
                          "name": "Tenerife, Spain",
                          "importance": 0
                        },
                        {
                          "id": 91575,
                          "name": "Monterrey, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91576,
                          "name": "Alicante, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91580,
                          "name": "Sophia Antipolis, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91602,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91604,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 91605,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 91607,
                          "name": "Karshi - Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 91609,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 91612,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91618,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91623,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91626,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 91627,
                          "name": "Orleans, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91628,
                          "name": "Targu Mures 2 - Romania",
                          "importance": 0
                        },
                        {
                          "id": 91630,
                          "name": "Buenos Aires 2, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91639,
                          "name": "Sao Paulo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91645,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91647,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91655,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91675,
                          "name": "Leon, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91700,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91703,
                          "name": "Brisbane 2, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91711,
                          "name": "Tenerife, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91769,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 91771,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 91781,
                          "name": "Ningbo, China",
                          "importance": 0
                        },
                        {
                          "id": 91788,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 91792,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91802,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91808,
                          "name": "Ningbo, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91830,
                          "name": "Villa Maria, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 91831,
                          "name": "Villa Maria, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91887,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91900,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91917,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91924,
                          "name": "Hersonissos 5 - Greece - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91949,
                          "name": "Bad Waltersdorf, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91959,
                          "name": "Targu Mures 2 - Romania - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 91962,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 91966,
                          "name": "Kyoto - Japan",
                          "importance": 0
                        },
                        {
                          "id": 91967,
                          "name": "Winnipeg, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91968,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 91974,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91981,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91982,
                          "name": "Braunschweig, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91984,
                          "name": "Wroclaw - Poland - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 91985,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92020,
                          "name": "Banja Luka, Bosnia & Herzegovina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92026,
                          "name": "Wroclaw - Poland",
                          "importance": 0
                        },
                        {
                          "id": 92048,
                          "name": "Nonthaburi 3, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92070,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92095,
                          "name": "Karshi, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92096,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92163,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92166,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 92174,
                          "name": "Shanghai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92177,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92219,
                          "name": "Guangzhou 2 - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92349,
                          "name": "Nanjing - China",
                          "importance": 0
                        },
                        {
                          "id": 92350,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92353,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 92357,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 92361,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 92363,
                          "name": "Nanjing - China - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92364,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92367,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92369,
                          "name": "Savannah - USA - Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92370,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92371,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92388,
                          "name": "Marburg - Germany",
                          "importance": 0
                        },
                        {
                          "id": 92392,
                          "name": "Bastad - Sweden - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92393,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 92409,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92420,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92481,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 92485,
                          "name": "Tempe - USA",
                          "importance": 0
                        },
                        {
                          "id": 92487,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 92490,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 92491,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92492,
                          "name": "Stockton, USA",
                          "importance": 0
                        },
                        {
                          "id": 92493,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92495,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92500,
                          "name": "Stockton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92501,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92508,
                          "name": "Kyoto, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92511,
                          "name": "Manerbio, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92513,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92516,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92517,
                          "name": "Tashkent, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92536,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92538,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92539,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92648,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 92651,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92666,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92671,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 92676,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 92680,
                          "name": "Gwangju, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 92688,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92690,
                          "name": "Turin, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92692,
                          "name": "Gwangju - South Korea - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92696,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 92702,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 92706,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92713,
                          "name": "Fergana, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92722,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92727,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92728,
                          "name": "Poprad Tatry, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92734,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92740,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 92755,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 92769,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 92772,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 92774,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 92779,
                          "name": "Rome II - Italy",
                          "importance": 0
                        },
                        {
                          "id": 92790,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92796,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92825,
                          "name": "Tempe - USA - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92869,
                          "name": "Budapest, Hungary, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92883,
                          "name": "Le Gosier, Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 92890,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 92895,
                          "name": "Le Gosier, Guadeloupe, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92897,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92904,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92920,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92929,
                          "name": "Augsburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92934,
                          "name": "Hersonissos 4 - Greece - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92937,
                          "name": "Sofia 2 - Bulgaria - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 92993,
                          "name": "Loughborough - Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 92999,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 93009,
                          "name": "Vicenza, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93036,
                          "name": "An-Ning, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93042,
                          "name": "Nanchang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93054,
                          "name": "Budapest, Hungary",
                          "importance": 0
                        },
                        {
                          "id": 93058,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93059,
                          "name": "Launceston, Australia",
                          "importance": 0
                        },
                        {
                          "id": 93060,
                          "name": "San Francisco, USA",
                          "importance": 0
                        },
                        {
                          "id": 93062,
                          "name": "Budapest, Hungary, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93068,
                          "name": "San Francisco, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93069,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93070,
                          "name": "Tempe - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93083,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93164,
                          "name": "Cary, USA",
                          "importance": 0
                        },
                        {
                          "id": 93166,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 93170,
                          "name": "Sibiu, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93177,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93178,
                          "name": "Gwangju, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93182,
                          "name": "Izmir - Turkey - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93189,
                          "name": "Raanana - Israel",
                          "importance": 0
                        },
                        {
                          "id": 93191,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 93196,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93200,
                          "name": "Raanana - Israel - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93204,
                          "name": "Napoli, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93220,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93269,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93272,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93289,
                          "name": "Launceston, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93297,
                          "name": "Budapest, Hungary, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93299,
                          "name": "San Francisco, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93301,
                          "name": "Indian Wells, USA",
                          "importance": 0
                        },
                        {
                          "id": 93302,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93303,
                          "name": "Zhuhai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93362,
                          "name": "Braga, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93366,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93368,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93370,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93374,
                          "name": "Alphen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 93377,
                          "name": "Istanbul, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93380,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93399,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93408,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 93409,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 93410,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93413,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93452,
                          "name": "Drummondville, Canada",
                          "importance": 0
                        },
                        {
                          "id": 93454,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 93455,
                          "name": "Irving, USA",
                          "importance": 0
                        },
                        {
                          "id": 93456,
                          "name": "Guadalajara, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 93457,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 93459,
                          "name": "Shenzhen, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93460,
                          "name": "Irving, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93463,
                          "name": "Shenzhen, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93465,
                          "name": "San Luis Potosi, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93485,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 93490,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 93491,
                          "name": "Zhangjiagang, China",
                          "importance": 0
                        },
                        {
                          "id": 93501,
                          "name": "Indian Wells, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93502,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 93510,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93520,
                          "name": "Launceston, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93552,
                          "name": "Kenitra - Morocco - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93575,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 93577,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93579,
                          "name": "Loughborough - Great Britain - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93581,
                          "name": "Mestre, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93603,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 93634,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 93644,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 93645,
                          "name": "Yokohama, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93646,
                          "name": "Pau, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93686,
                          "name": "Guangzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 93687,
                          "name": "Kazan - Russia",
                          "importance": 0
                        },
                        {
                          "id": 93688,
                          "name": "Guangzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93691,
                          "name": "Kazan - Russia - Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93692,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93703,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 93705,
                          "name": "Morelos, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93711,
                          "name": "Maui - USA",
                          "importance": 0
                        },
                        {
                          "id": 93713,
                          "name": "Bangkok II, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 93714,
                          "name": "Maui, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93715,
                          "name": "Burnie, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93716,
                          "name": "Dallas - USA - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93717,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93719,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93752,
                          "name": "Brest, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93788,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 93789,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 93824,
                          "name": "Casablanca, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 93840,
                          "name": "Puebla, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 93841,
                          "name": "Jonkoping, Sweden",
                          "importance": 0
                        },
                        {
                          "id": 93843,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93850,
                          "name": "Guangzhou, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93854,
                          "name": "Guadalajara, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93858,
                          "name": "Irving, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93860,
                          "name": "Kazan, Russia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93864,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 93868,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93869,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93870,
                          "name": "Heilbronn, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93871,
                          "name": "Samarkand, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93891,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 93892,
                          "name": "Koblenz, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93898,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 93904,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 93908,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93931,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 93932,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 93936,
                          "name": "Alphen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 93937,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93943,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 93945,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 93953,
                          "name": "Genova, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93955,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93957,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93963,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 93970,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 93973,
                          "name": "Alphen, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 93992,
                          "name": "St. Remy, France",
                          "importance": 0
                        },
                        {
                          "id": 94001,
                          "name": "Sao Paulo 2, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 94004,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94006,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94009,
                          "name": "Alphen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94011,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 94012,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 94018,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94020,
                          "name": "Sao Paulo 2, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94022,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94023,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94026,
                          "name": "Savannah, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94029,
                          "name": "St. Remy, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94030,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94037,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94039,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94040,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94046,
                          "name": "Manta, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94049,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 94055,
                          "name": "Panama City, Panama",
                          "importance": 0
                        },
                        {
                          "id": 94056,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 94059,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 94060,
                          "name": "Prague II, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94061,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94064,
                          "name": "Panama City, Panama, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94065,
                          "name": "Mexico City, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94066,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94068,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94072,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94075,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94076,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94080,
                          "name": "Rio Quente, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94086,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94093,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94099,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94107,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 94122,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 94126,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94136,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94137,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 94160,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94161,
                          "name": "Panama City, Panama, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94177,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94195,
                          "name": "Barranquilla, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 94196,
                          "name": "Guadalajara, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 94199,
                          "name": "Mersin, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 94202,
                          "name": "Itajai, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 94204,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94205,
                          "name": "Itajai, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94208,
                          "name": "Barranquilla, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94213,
                          "name": "Mersin, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94221,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94226,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94236,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 94240,
                          "name": "Meerbusch Doubles, Germany",
                          "importance": 0
                        },
                        {
                          "id": 94244,
                          "name": "Nottingham-2, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94245,
                          "name": "Kosice, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 94246,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94257,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94263,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94272,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 94275,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 94277,
                          "name": "Alphen aan den Rijn, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94278,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94279,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94287,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 94289,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94292,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94295,
                          "name": "Bangkok II, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94314,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94326,
                          "name": "Le Gosier, Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 94333,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 94335,
                          "name": "Le Gosier, Guadeloupe, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94337,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 94340,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 94342,
                          "name": "Pereira, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94352,
                          "name": "Irving, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94383,
                          "name": "San Luis Potosi, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94392,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94393,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94399,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94434,
                          "name": "Rimouski, Canada",
                          "importance": 0
                        },
                        {
                          "id": 94438,
                          "name": "Rimouski, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94443,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94451,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94466,
                          "name": "Quito, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 94474,
                          "name": "San Juan, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 94481,
                          "name": "Quito, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94485,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 94486,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 94495,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 94496,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94499,
                          "name": "Sarajevo, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 94505,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94506,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 94507,
                          "name": "Maui, USA",
                          "importance": 0
                        },
                        {
                          "id": 94533,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94534,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94545,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94548,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94554,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 94564,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94568,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 94570,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94571,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94572,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94573,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 94574,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94576,
                          "name": "Sydney, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94577,
                          "name": "Gimcheon, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 94580,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 94582,
                          "name": "Sydney, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94586,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 94587,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 94588,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94591,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94592,
                          "name": "Glasgow, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 94596,
                          "name": "Braga, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94599,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94616,
                          "name": "Karshi, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94622,
                          "name": "Rome, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94623,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 94653,
                          "name": "Bangkok-2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 94656,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94717,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94728,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94730,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94731,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94752,
                          "name": "Manerbio, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94754,
                          "name": "Blois, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94755,
                          "name": "Kenitra, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94795,
                          "name": "Furth, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94803,
                          "name": "Andria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94822,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 94851,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94860,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 94871,
                          "name": "Mendoza, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 94877,
                          "name": "Happy Valley, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94881,
                          "name": "Mendoza, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94884,
                          "name": "Bangkok, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94890,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94905,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 94933,
                          "name": "An-Ning, China",
                          "importance": 0
                        },
                        {
                          "id": 94938,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 94945,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 94952,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 94955,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 94960,
                          "name": "Taipei City, Taiwan",
                          "importance": 0
                        },
                        {
                          "id": 94962,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 94970,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94972,
                          "name": "Happy Valley, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94973,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 94974,
                          "name": "West Lakes, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94975,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 94978,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 94985,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94986,
                          "name": "Taipei City, Taiwan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94990,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 94992,
                          "name": "Ostrava, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94993,
                          "name": "Sao Paulo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94995,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94996,
                          "name": "Turin, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95004,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95007,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95009,
                          "name": "Puerto Vallarta, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 95015,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 95016,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95024,
                          "name": "West Lakes, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95025,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95026,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 95035,
                          "name": "Busan, Korea",
                          "importance": 0
                        },
                        {
                          "id": 95047,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95048,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 95051,
                          "name": "Marburg, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95058,
                          "name": "Alphen, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95060,
                          "name": "Medellin, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95061,
                          "name": "Brasov, Romania, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95067,
                          "name": "St. Remy, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95073,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 95074,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95077,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95080,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 95083,
                          "name": "Nottingham II, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95084,
                          "name": "Maui, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95104,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 95107,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 95114,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95117,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 95122,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95125,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95126,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 95135,
                          "name": "Happy Valley, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95136,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95140,
                          "name": "Yeongwol, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 95141,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95144,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95146,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95150,
                          "name": "Yeongwol, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95151,
                          "name": "Helsinki, Finland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95152,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95175,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95180,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95183,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95195,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95197,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 95202,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95215,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 95220,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 95222,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95265,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 95311,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 95313,
                          "name": "Geneva, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 95316,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95324,
                          "name": "Geneva, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95325,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95331,
                          "name": "Yeongwol, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95338,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 95340,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 95343,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95346,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95350,
                          "name": "Bangkok, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95351,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95358,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95359,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 95366,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 95367,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 95370,
                          "name": "Leon, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95388,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 95390,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95392,
                          "name": "Mendoza, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95411,
                          "name": "Tour Finals, Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 95418,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group B",
                          "importance": 0
                        },
                        {
                          "id": 95419,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group A",
                          "importance": 0
                        },
                        {
                          "id": 95435,
                          "name": "Tyumen, Russia",
                          "importance": 0
                        },
                        {
                          "id": 95439,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 95440,
                          "name": "Tyumen, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95442,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95450,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95451,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 95464,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 95465,
                          "name": "Marbella, Spain",
                          "importance": 0
                        },
                        {
                          "id": 95477,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 95480,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95482,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95483,
                          "name": "Chennai, India , Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95484,
                          "name": "Tyumen, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95496,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 95498,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95500,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 95502,
                          "name": "Marbella, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95512,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95515,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 95516,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 95517,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95520,
                          "name": "Bangkok, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95523,
                          "name": "Happy Valley, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95532,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 95534,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 95535,
                          "name": "Casablanca, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 95543,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 95547,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 95548,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 95549,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 95550,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 95551,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 95552,
                          "name": "Loughborough, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 95554,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95555,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95557,
                          "name": "Sao Leopoldo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 95563,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95564,
                          "name": "Sao Leopoldo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95565,
                          "name": "Loughborough, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95577,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 95594,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95600,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95602,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 95613,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95623,
                          "name": "Nottingham-2, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95637,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95649,
                          "name": "Kaohsiung, Taiwan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95653,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 95666,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95686,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 95687,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 95688,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 95689,
                          "name": "Geneva, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 95690,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 95691,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 95694,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 95699,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95700,
                          "name": "Launceston, Australia",
                          "importance": 0
                        },
                        {
                          "id": 95708,
                          "name": "Santo Domingo, Dominican Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95712,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95713,
                          "name": "Cordenons, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95716,
                          "name": "Kazan 2, Russia",
                          "importance": 0
                        },
                        {
                          "id": 95717,
                          "name": "Kazan 2, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95718,
                          "name": "Mouilleron-Le-Captif, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95720,
                          "name": "Meerbusch, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95722,
                          "name": "Melbourne, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95725,
                          "name": "Anning, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95727,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95729,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95731,
                          "name": "Kazan 2, Russia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95735,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95737,
                          "name": "Melbourne, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95741,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95745,
                          "name": "Geneva, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95749,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 95750,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95771,
                          "name": "Genoa, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95774,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95778,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95782,
                          "name": "Tallahassee, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95795,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95806,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95856,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 95859,
                          "name": "Porto Alegre, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 95865,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 95867,
                          "name": "Porto Alegre, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95894,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95899,
                          "name": "Rio de Janeiro, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 95901,
                          "name": "Villa Allende, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 95905,
                          "name": "Villa Allende, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95906,
                          "name": "Porto Alegre, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95908,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95911,
                          "name": "Puerto Vallarta, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95914,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95934,
                          "name": "Launceston, Australia",
                          "importance": 0
                        },
                        {
                          "id": 95935,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95936,
                          "name": "Kazan, Russia",
                          "importance": 0
                        },
                        {
                          "id": 95939,
                          "name": "Rio de Janeiro, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95942,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 95945,
                          "name": "Furth, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95947,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95964,
                          "name": "Portoroz, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95970,
                          "name": "Santo Domingo, Dominican Republic",
                          "importance": 0
                        },
                        {
                          "id": 95972,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 95975,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95976,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 95981,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 95985,
                          "name": "New Delhi, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95989,
                          "name": "Wroclaw, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95993,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 95996,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 95997,
                          "name": "San Juan, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 96000,
                          "name": "Sao Jose Do Rio Preto, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 96001,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 96003,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96004,
                          "name": "San Juan, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96005,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 96008,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96012,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96013,
                          "name": "San Juan, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96014,
                          "name": "Sao Jose Do Rio Preto, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96015,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96024,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96032,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96048,
                          "name": "Heilbronn II, Germany",
                          "importance": 0
                        },
                        {
                          "id": 96057,
                          "name": "Karshi, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96061,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96062,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 96064,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 96066,
                          "name": "Launceston, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96070,
                          "name": "Santo Domingo, Dominican Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96073,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96080,
                          "name": "Sacramento, USA",
                          "importance": 0
                        },
                        {
                          "id": 96083,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96086,
                          "name": "Quito, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96088,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96098,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 96099,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 96103,
                          "name": "Quito, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 96104,
                          "name": "Belem, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 96105,
                          "name": "Belem, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96106,
                          "name": "Mons, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96118,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96121,
                          "name": "Beijing, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96131,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96141,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 96151,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 96155,
                          "name": "Stockton, USA",
                          "importance": 0
                        },
                        {
                          "id": 96161,
                          "name": "Tunis, Tunisia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96166,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 96168,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96170,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 96181,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 96183,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 96184,
                          "name": "Lermontov, Russia",
                          "importance": 0
                        },
                        {
                          "id": 96186,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96187,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96195,
                          "name": "Panama City, Panama",
                          "importance": 0
                        },
                        {
                          "id": 96202,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96203,
                          "name": "Lermontov, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96211,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96215,
                          "name": "Happy Valley, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96217,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 96218,
                          "name": "Izmir, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 96219,
                          "name": "Noumea, New Caledonia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96221,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96237,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96243,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96251,
                          "name": "Cleveland, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96254,
                          "name": "Quimper, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96277,
                          "name": "Santo Domingo, Dominican Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96290,
                          "name": "Trnava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 96293,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96302,
                          "name": "Vancouver, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96311,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 96316,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 96317,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 96318,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 96320,
                          "name": "Petange, Luxembourg",
                          "importance": 0
                        },
                        {
                          "id": 96322,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96323,
                          "name": "Ningbo, China",
                          "importance": 0
                        },
                        {
                          "id": 96347,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96357,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96370,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96372,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96376,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96381,
                          "name": "Ningbo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96384,
                          "name": "Petange, Luxembourg, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96385,
                          "name": "Alphen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96387,
                          "name": "Trnava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 96390,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96391,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96400,
                          "name": "Bangkok-2, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 96403,
                          "name": "Genoa, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96404,
                          "name": "Kenitra, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96409,
                          "name": "St. Remy, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96410,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96412,
                          "name": "Le Gosier, Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 96413,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 96417,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 96418,
                          "name": "Panama City, Panama, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96427,
                          "name": "Alphen aan den Rijn, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 96428,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 96429,
                          "name": "Le Gosier, Guadeloupe, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96432,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96435,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 96437,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96443,
                          "name": "An-Ning, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96449,
                          "name": "St. Remy, France",
                          "importance": 0
                        },
                        {
                          "id": 96467,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 96472,
                          "name": "Moscow, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96475,
                          "name": "Todi, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96480,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96482,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96488,
                          "name": "Alphen aan den Rijn, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96490,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96501,
                          "name": "Alphen aan den Rijn, The Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96508,
                          "name": "Rome-1, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96517,
                          "name": "Orlando, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96532,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 96544,
                          "name": "Newport Beach, USA",
                          "importance": 0
                        },
                        {
                          "id": 96550,
                          "name": "Launceston, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96555,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96565,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96570,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 96581,
                          "name": "Launceston, Australia",
                          "importance": 0
                        },
                        {
                          "id": 96594,
                          "name": "Seoul, Korea",
                          "importance": 0
                        },
                        {
                          "id": 96598,
                          "name": "Bergamo, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96608,
                          "name": "Barranquilla, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96614,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96639,
                          "name": "Morelos, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96640,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96647,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96648,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96668,
                          "name": "Andria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96670,
                          "name": "Santiago 2, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96682,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 96686,
                          "name": "Andria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96699,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96700,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 96706,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96728,
                          "name": "Taipei, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 96735,
                          "name": "Mexico City, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96736,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96751,
                          "name": "Guangzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 96764,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96765,
                          "name": "New Delhi, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96766,
                          "name": "New Delhi, India",
                          "importance": 0
                        },
                        {
                          "id": 96769,
                          "name": "Genova, Italy",
                          "importance": 0
                        },
                        {
                          "id": 96782,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96784,
                          "name": "Nanchang, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96785,
                          "name": "Alphen aan den Rijn, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 96790,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 96794,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 96799,
                          "name": "St. Remy, France",
                          "importance": 0
                        },
                        {
                          "id": 96807,
                          "name": "Genova, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96818,
                          "name": "St. Remy, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96822,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96870,
                          "name": "Casablanca, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 96880,
                          "name": "Happy Valley, Australia",
                          "importance": 0
                        },
                        {
                          "id": 96887,
                          "name": "Casablanca, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96937,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96976,
                          "name": "Maui, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 96987,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 96989,
                          "name": "Milan, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97041,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97045,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97056,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97091,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97094,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 97098,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97099,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 97100,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97102,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97104,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 97105,
                          "name": "Happy Valley, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97107,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97110,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97118,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 97124,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 97134,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 97137,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97139,
                          "name": "Hua Hin, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 97141,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97146,
                          "name": "Meerbusch, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97147,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97152,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97153,
                          "name": "Meerbusch Doubles, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97156,
                          "name": "Kazan, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97158,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97161,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97163,
                          "name": "Alicante, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97183,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97209,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 97210,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 97212,
                          "name": "Rio de Janeiro, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 97214,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97218,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97226,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97230,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 97233,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97242,
                          "name": "Dallas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97246,
                          "name": "Dallas, USA, Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97266,
                          "name": "Drummondville, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97307,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 97309,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 97310,
                          "name": "Sao Paulo 3, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 97312,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 97313,
                          "name": "Sao Paulo 3, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97314,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97324,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 97329,
                          "name": "Guimaraes, Portugal",
                          "importance": 0
                        },
                        {
                          "id": 97332,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 97333,
                          "name": "Orbetello, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97334,
                          "name": "Oberstaufen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97337,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 97338,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97339,
                          "name": "Guimaraes, Portugal, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97341,
                          "name": "Orbetello, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97342,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97343,
                          "name": "Oberstaufen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97346,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97362,
                          "name": "Manerbio, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97363,
                          "name": "Portoroz, Slovenia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97385,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97391,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97406,
                          "name": "Marburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97428,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97440,
                          "name": "Manchester, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97441,
                          "name": "Chennai, India",
                          "importance": 0
                        },
                        {
                          "id": 97445,
                          "name": "West Lakes, Australia",
                          "importance": 0
                        },
                        {
                          "id": 97446,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 97448,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97453,
                          "name": "West Lakes, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97456,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 97461,
                          "name": "Maui, USA",
                          "importance": 0
                        },
                        {
                          "id": 97465,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97466,
                          "name": "Maui, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97468,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97469,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 97474,
                          "name": "Andria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97476,
                          "name": "Launceston, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97479,
                          "name": "Lille, France",
                          "importance": 0
                        },
                        {
                          "id": 97480,
                          "name": "Qujing, China",
                          "importance": 0
                        },
                        {
                          "id": 97483,
                          "name": "Marbella, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97493,
                          "name": "St. Brieuc, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97523,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97528,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97530,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97536,
                          "name": "Portoroz, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 97540,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 97545,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97547,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97566,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 97567,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97568,
                          "name": "Blois, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97570,
                          "name": "Nottingham-2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 97573,
                          "name": "Kosice, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97577,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 97582,
                          "name": "Rome-2, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97584,
                          "name": "Arad, Romania",
                          "importance": 0
                        },
                        {
                          "id": 97589,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97591,
                          "name": "Furth, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97593,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97596,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 97600,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 97602,
                          "name": "Arad, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97605,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97616,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 97621,
                          "name": "Monterrey, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 97626,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 97627,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 97628,
                          "name": "Suzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 97629,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97632,
                          "name": "Monterrey, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97636,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97637,
                          "name": "Suzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97638,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97658,
                          "name": "Burnie, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97659,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97664,
                          "name": "Newport Beach, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97665,
                          "name": "Meknes, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97666,
                          "name": "Gimcheon, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97675,
                          "name": "Colombus, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97697,
                          "name": "Chitre, Panama",
                          "importance": 0
                        },
                        {
                          "id": 97703,
                          "name": "West Lakes, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97706,
                          "name": "Chennai, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97715,
                          "name": "Santiago, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97718,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97723,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97725,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97730,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 97742,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 97745,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97790,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 97792,
                          "name": "Rio Quente, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 97794,
                          "name": "Rome-2, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97800,
                          "name": "Kun-Ming, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97801,
                          "name": "Kun-Ming, China",
                          "importance": 0
                        },
                        {
                          "id": 97819,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 97841,
                          "name": "An-Ning, China",
                          "importance": 0
                        },
                        {
                          "id": 97843,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 97844,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 97845,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 97852,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97864,
                          "name": "Chitre, Panama, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97866,
                          "name": "Johannesburg, South Africa",
                          "importance": 0
                        },
                        {
                          "id": 97878,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97880,
                          "name": "Johannesburg, South Africa, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97884,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 97890,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 97898,
                          "name": "Aptos, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97927,
                          "name": "Koblenz, Germany",
                          "importance": 0
                        },
                        {
                          "id": 97933,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 97943,
                          "name": "Tour Finals, Sao Paulo, Brazil, Group B",
                          "importance": 0
                        },
                        {
                          "id": 97947,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98007,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98019,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 98022,
                          "name": "Maui, USA",
                          "importance": 0
                        },
                        {
                          "id": 98026,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98027,
                          "name": "Seoul, Korea",
                          "importance": 0
                        },
                        {
                          "id": 98031,
                          "name": "Burnie, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98064,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98069,
                          "name": "Poprad Tatry, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98077,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 98080,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 98081,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 98082,
                          "name": "Canberra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98083,
                          "name": "Brescia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 98084,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 98085,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98086,
                          "name": "Brescia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98087,
                          "name": "Toyota, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98088,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98089,
                          "name": "Yokohama, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98137,
                          "name": "Aptos, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98174,
                          "name": "An-Ning, China",
                          "importance": 0
                        },
                        {
                          "id": 98177,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98206,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 98212,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98215,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98218,
                          "name": "Cali, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98219,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98223,
                          "name": "Shenzhen, China",
                          "importance": 0
                        },
                        {
                          "id": 98224,
                          "name": "Andria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 98227,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 98228,
                          "name": "Irving, USA",
                          "importance": 0
                        },
                        {
                          "id": 98230,
                          "name": "Columbus, USA",
                          "importance": 0
                        },
                        {
                          "id": 98231,
                          "name": "Andria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98249,
                          "name": "Lille, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98262,
                          "name": "Qujing, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98266,
                          "name": "Bucaramanga, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98268,
                          "name": "Maui, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98306,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98364,
                          "name": "Cordoba, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 98365,
                          "name": "Pune, India",
                          "importance": 0
                        },
                        {
                          "id": 98368,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 98373,
                          "name": "San Juan, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 98374,
                          "name": "Cordoba, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98375,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98378,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98381,
                          "name": "Cordoba, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98382,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98386,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98390,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98396,
                          "name": "Jinan, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98414,
                          "name": "Sao Paulo, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98448,
                          "name": "Koblenz, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98449,
                          "name": "Casablanca 2, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 98450,
                          "name": "Ho Chi Minh City, Vietnam",
                          "importance": 0
                        },
                        {
                          "id": 98454,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 98455,
                          "name": "Sacramento, USA",
                          "importance": 0
                        },
                        {
                          "id": 98456,
                          "name": "Manila, Philippines",
                          "importance": 0
                        },
                        {
                          "id": 98458,
                          "name": "Rio de Janeiro, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 98459,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 98460,
                          "name": "Sao Paulo 2, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 98461,
                          "name": "Ho Chi Minh City, Vietnam, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98464,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98468,
                          "name": "Rennes, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98469,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98471,
                          "name": "Mons, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98474,
                          "name": "Casablanca 2, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98475,
                          "name": "Ho Chi Minh City, Vietnam, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98476,
                          "name": "Tashkent, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98477,
                          "name": "Manila, Philippines, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98481,
                          "name": "Rio de Janeiro, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98541,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 98548,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98574,
                          "name": "Cary, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98582,
                          "name": "Da Nang, Vietnam, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98583,
                          "name": "Da Nang, Vietnam",
                          "importance": 0
                        },
                        {
                          "id": 98618,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 98634,
                          "name": "Poprad Tatry, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 98659,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 98685,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 98723,
                          "name": "Indore, India",
                          "importance": 0
                        },
                        {
                          "id": 98729,
                          "name": "Indore, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98731,
                          "name": "San Juan, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98755,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 98756,
                          "name": "Irving, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98757,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 98760,
                          "name": "Cortina, Italy",
                          "importance": 0
                        },
                        {
                          "id": 98762,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 98763,
                          "name": "Lexington, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98771,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 98772,
                          "name": "Biella, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98837,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 98838,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 98842,
                          "name": "Brescia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 98844,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 98846,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98850,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98854,
                          "name": "Andria, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98863,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 98864,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98866,
                          "name": "Mohammedia, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 98873,
                          "name": "Columbus, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98877,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98879,
                          "name": "Playford City, Australia",
                          "importance": 0
                        },
                        {
                          "id": 98882,
                          "name": "Sao Paulo 2, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98890,
                          "name": "Vicenza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98899,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 98918,
                          "name": "Orlando, USA",
                          "importance": 0
                        },
                        {
                          "id": 98934,
                          "name": "Orlando, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98942,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 98993,
                          "name": "Mauthausen, Austria, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 98998,
                          "name": "Mauthausen, Austria",
                          "importance": 0
                        },
                        {
                          "id": 99026,
                          "name": "Budapest, Hungary, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99035,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 99036,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 99037,
                          "name": "Agri, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 99039,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 99040,
                          "name": "Potro Alegre, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 99042,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99044,
                          "name": "Traralgon 2, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99045,
                          "name": "Agri, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99046,
                          "name": "Pereira, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99048,
                          "name": "Potro Alegre, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99050,
                          "name": "Mohammedia, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99056,
                          "name": "Winnipeg, Canada",
                          "importance": 0
                        },
                        {
                          "id": 99067,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 99069,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 99071,
                          "name": "Casablanca, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99072,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99075,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 99078,
                          "name": "Zhuhai, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99079,
                          "name": "Santiago, Chile, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99080,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99093,
                          "name": "Astana, Kazakhstan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99098,
                          "name": "Poznan, Poland, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99099,
                          "name": "San Benedetto, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99101,
                          "name": "Scheveningen, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99148,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 99150,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 99154,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 99157,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 99158,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99167,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99168,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99171,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99176,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99186,
                          "name": "Drummondville, Canada, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99290,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99293,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99296,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99299,
                          "name": "Meknes, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99332,
                          "name": "Indian Wells, USA",
                          "importance": 0
                        },
                        {
                          "id": 99400,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 99465,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 99466,
                          "name": "Bastad, Sweden, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99474,
                          "name": "Braunschweig, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99477,
                          "name": "Perugia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99478,
                          "name": "Winnetka, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99519,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99522,
                          "name": "Brescia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99545,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99611,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99653,
                          "name": "Mouilleron Le Captif, France",
                          "importance": 0
                        },
                        {
                          "id": 99655,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 99656,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99657,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99659,
                          "name": "Montevideo, Uruguay , Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99660,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 99700,
                          "name": "Timisoara, Romania",
                          "importance": 0
                        },
                        {
                          "id": 99710,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99711,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 99713,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 99714,
                          "name": "Ilkley, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 99715,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99717,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99738,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 99742,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 99744,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 99748,
                          "name": "Morelos, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 99755,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 99761,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99768,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99774,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99779,
                          "name": "Liberec, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 99781,
                          "name": "Toyota, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 99785,
                          "name": "Cortina, Italy",
                          "importance": 0
                        },
                        {
                          "id": 99790,
                          "name": "Liberec, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99791,
                          "name": "Cortina, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99799,
                          "name": "Portoroz, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99802,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 99946,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100003,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 100004,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 100005,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100006,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100015,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100047,
                          "name": "Lyon, France",
                          "importance": 0
                        },
                        {
                          "id": 100048,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100056,
                          "name": "Ilkley, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100062,
                          "name": "Poprad Tatry, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100075,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 100081,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 100082,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 100085,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 100087,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100089,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100092,
                          "name": "Bogota, Colombia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100093,
                          "name": "Nanchang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100099,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100106,
                          "name": "Mouilleron Le Captif, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100107,
                          "name": "Ortisei, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100108,
                          "name": "Kobe, Japan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100110,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100221,
                          "name": "Blois, France",
                          "importance": 0
                        },
                        {
                          "id": 100223,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 100224,
                          "name": "Perugia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 100228,
                          "name": "Milan, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100229,
                          "name": "Perugia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100243,
                          "name": "Andria, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100299,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 100334,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 100335,
                          "name": "Houston, USA",
                          "importance": 0
                        },
                        {
                          "id": 100351,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 100353,
                          "name": "Kobe, Japan",
                          "importance": 0
                        },
                        {
                          "id": 100354,
                          "name": "Bangalore, India",
                          "importance": 0
                        },
                        {
                          "id": 100356,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100395,
                          "name": "Bangalore, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100399,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 100405,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 100415,
                          "name": "Fergana, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100453,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 100454,
                          "name": "Gimcheon, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 100456,
                          "name": "Manchester, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 100457,
                          "name": "Mestre, Italy",
                          "importance": 0
                        },
                        {
                          "id": 100459,
                          "name": "Furth, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100460,
                          "name": "Caltanissetta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100461,
                          "name": "Moscow, Russia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100554,
                          "name": "Surbiton, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 100558,
                          "name": "Cherbourg, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100559,
                          "name": "Buenos Aires, Argentina, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100560,
                          "name": "Champaign, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100561,
                          "name": "Lisbon, Portugal, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100564,
                          "name": "Caltanissetta, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100566,
                          "name": "Lyon, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100567,
                          "name": "Nottingham, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100594,
                          "name": "Brest, France",
                          "importance": 0
                        },
                        {
                          "id": 100595,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 100596,
                          "name": "Santiago 2, Chile",
                          "importance": 0
                        },
                        {
                          "id": 100597,
                          "name": "Las Vegas , USA",
                          "importance": 0
                        },
                        {
                          "id": 100600,
                          "name": "Las Vegas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100603,
                          "name": "Pune, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100609,
                          "name": "Traralgon, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100611,
                          "name": "Suzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100612,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100613,
                          "name": "Budapest, Hungary, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100622,
                          "name": "Suzhou, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100624,
                          "name": "Traralgon, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100644,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 100646,
                          "name": "Vicenza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 100654,
                          "name": "Furth, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100656,
                          "name": "Gimcheon, South Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100657,
                          "name": "Manchester, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100658,
                          "name": "Mestre, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100660,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100669,
                          "name": "Busan, South Korea, Doubles, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100712,
                          "name": "Ningbo, China",
                          "importance": 0
                        },
                        {
                          "id": 100719,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 100720,
                          "name": "Pune, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100724,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100726,
                          "name": "Bangalore, India, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100776,
                          "name": "Binghamton, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100786,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 100834,
                          "name": "Eskisehir, Turkey, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100849,
                          "name": "Montevideo, Uruguay, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100850,
                          "name": "Knoxville, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100851,
                          "name": "Bratislava, Slovakia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100884,
                          "name": "Las Vegas, USA, Doubles Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100893,
                          "name": "Prostejov, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100898,
                          "name": "Surbiton, Great Britain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100921,
                          "name": "Zhuhai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100922,
                          "name": "Anning, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100932,
                          "name": "Shenzhen II, China",
                          "importance": 0
                        },
                        {
                          "id": 100933,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 100934,
                          "name": "Las Vegas, USA",
                          "importance": 0
                        },
                        {
                          "id": 100935,
                          "name": "Shenzhen II, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100936,
                          "name": "Guayaquil, Ecuador, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100937,
                          "name": "Eckental, Germany, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100955,
                          "name": "Knoxville, USA, Doubles, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100965,
                          "name": "Las Vegas, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100966,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 100967,
                          "name": "Wroclaw, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100972,
                          "name": "Wroclaw, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100995,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 100996,
                          "name": "Mohammedia, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 100998,
                          "name": "Mons, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 100999,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101001,
                          "name": "Casablanca, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101002,
                          "name": "Tashkent, Uzbekistan, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101007,
                          "name": "Liuzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 101008,
                          "name": "Traralgon, Australia",
                          "importance": 0
                        },
                        {
                          "id": 101055,
                          "name": "Alphen, Netherlands, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101075,
                          "name": "Calgary, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101076,
                          "name": "Brest, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101077,
                          "name": "Lima, Peru, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101078,
                          "name": "Liuzhou, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101098,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101111,
                          "name": "Mons, Belgium, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101112,
                          "name": "Stockton, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101118,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 101119,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 101120,
                          "name": "Campinas, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101121,
                          "name": "Mohammedia, Morocco, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101122,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101123,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101145,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101146,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101195,
                          "name": "Kaohsiung, Taiwan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101198,
                          "name": "Abidjan 2, Cote d Ivoire, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101210,
                          "name": "Abidjan 2, Cote d Ivoire",
                          "importance": 0
                        },
                        {
                          "id": 101259,
                          "name": "Shymkent, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101279,
                          "name": "Jiujiang, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101280,
                          "name": "Shymkent 2, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101290,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 101291,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101301,
                          "name": "Monza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101302,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101303,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101305,
                          "name": "Recife, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101306,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101307,
                          "name": "Yokohama, Japan",
                          "importance": 0
                        },
                        {
                          "id": 101308,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101309,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 101310,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 101312,
                          "name": "Cancun, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 101314,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101317,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 101318,
                          "name": "Monza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101319,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101320,
                          "name": "Pereira, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101321,
                          "name": "Recife, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101323,
                          "name": "Rome-2, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101325,
                          "name": "Campinas, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101327,
                          "name": "Barranquilla, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101329,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 101330,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 101333,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101335,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101336,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 101337,
                          "name": "Barranquilla, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101339,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 101343,
                          "name": "Guadalajara, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101345,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101349,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101351,
                          "name": "Seoul, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 101352,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 101353,
                          "name": "Marburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101354,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 101356,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 101357,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101359,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 101360,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101361,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101362,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 101363,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101367,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101368,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101369,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101370,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101372,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101373,
                          "name": "Casablanca, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101375,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101379,
                          "name": "Aachen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101380,
                          "name": "Jersey-2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 101381,
                          "name": "Aachen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101382,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 101383,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101384,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101385,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101388,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 101390,
                          "name": "Leon, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 101392,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101393,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101401,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 101404,
                          "name": "Rome II, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101405,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101406,
                          "name": "Bath, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 101407,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101408,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101409,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101411,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101412,
                          "name": "Marrakech, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 101414,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101415,
                          "name": "Pingguo, China",
                          "importance": 0
                        },
                        {
                          "id": 101418,
                          "name": "Bath, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101419,
                          "name": "Marrakech, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101420,
                          "name": "Pingguo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101424,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101425,
                          "name": "Manta, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 101426,
                          "name": "Beijing, China",
                          "importance": 0
                        },
                        {
                          "id": 101427,
                          "name": "Sibiu, Romania",
                          "importance": 0
                        },
                        {
                          "id": 101428,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101429,
                          "name": "Beijing, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101430,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 101431,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101432,
                          "name": "Chuncheon, Korea",
                          "importance": 0
                        },
                        {
                          "id": 101434,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101435,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101436,
                          "name": "Chuncheon, Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101438,
                          "name": "Kazan, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101441,
                          "name": "Samarkand, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101446,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101448,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101454,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101460,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101463,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101467,
                          "name": "Seoul, Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101468,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 101469,
                          "name": "Kaohsiung, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101475,
                          "name": "Busan, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101478,
                          "name": "Rimouski, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101481,
                          "name": "Rabat, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 101483,
                          "name": "Le Gosier, Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 101486,
                          "name": "San Jose, Costa Rica, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101487,
                          "name": "Rimouski, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101488,
                          "name": "Mersin, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101490,
                          "name": "Guangzhou, China",
                          "importance": 0
                        },
                        {
                          "id": 101492,
                          "name": "Le Gosier, Guadeloupe, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101494,
                          "name": "Rabat, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101497,
                          "name": "Calabasas, USA",
                          "importance": 0
                        },
                        {
                          "id": 101499,
                          "name": "Santiago-2, Chile",
                          "importance": 0
                        },
                        {
                          "id": 101501,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 101502,
                          "name": "Bangkok-2, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101505,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 101506,
                          "name": "Calabasas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101508,
                          "name": "Orbetello, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101509,
                          "name": "Seoul, Korea, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101510,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101511,
                          "name": "Busan, Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101512,
                          "name": "Oberstaufen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101514,
                          "name": "Kobe, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101515,
                          "name": "Guangzhou, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101516,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 101517,
                          "name": "Oberstaufen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101523,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101524,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101525,
                          "name": "Orbetello, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101526,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101528,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101530,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101531,
                          "name": "Wuhan, China",
                          "importance": 0
                        },
                        {
                          "id": 101532,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101534,
                          "name": "Knoxville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101535,
                          "name": "Meknes, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101537,
                          "name": "Kaohsiung, Taiwan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101538,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101539,
                          "name": "Caltanissetta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101540,
                          "name": "Wuhan, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101542,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101544,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101545,
                          "name": "Seoul, Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101548,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101549,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 101553,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101555,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101557,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 101558,
                          "name": "Sarajevo, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 101559,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101562,
                          "name": "Sarajevo, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101564,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101567,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101568,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 101570,
                          "name": "Asuncion, Paraguay",
                          "importance": 0
                        },
                        {
                          "id": 101571,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 101572,
                          "name": "Kolding, Denmark",
                          "importance": 0
                        },
                        {
                          "id": 101573,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 101578,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101579,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101586,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 101589,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101592,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 101594,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101597,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101598,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 101601,
                          "name": "Bercuit, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 101603,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101604,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101606,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 101610,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101622,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 101624,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 101625,
                          "name": "Sacramento, USA",
                          "importance": 0
                        },
                        {
                          "id": 101627,
                          "name": "Tarragona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 101628,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 101630,
                          "name": "Penza, Russia",
                          "importance": 0
                        },
                        {
                          "id": 101632,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101634,
                          "name": "Bercuit, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101636,
                          "name": "Rennes, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101641,
                          "name": "Wolfsburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101643,
                          "name": "Wolfsburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101648,
                          "name": "Casablanca, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 101650,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101651,
                          "name": "Casablanca, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101652,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101653,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101655,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101656,
                          "name": "Penza, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101657,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101658,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 101659,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101661,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101662,
                          "name": "Quito, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 101667,
                          "name": "Ortisei, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101675,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101681,
                          "name": "Sunrise, FL, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101682,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101693,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101694,
                          "name": "Trnava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 101695,
                          "name": "Palermo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101701,
                          "name": "Ljubljana, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 101709,
                          "name": "Meknes, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 101718,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101722,
                          "name": "Banja Luka, Bosnia",
                          "importance": 0
                        },
                        {
                          "id": 101724,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 101725,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101726,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 101727,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101728,
                          "name": "Timisoara, Romania",
                          "importance": 0
                        },
                        {
                          "id": 101729,
                          "name": "Tulsa, USA",
                          "importance": 0
                        },
                        {
                          "id": 101733,
                          "name": "Banja Luka, Bosnia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101734,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101741,
                          "name": "Caloundra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 101742,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 101745,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101750,
                          "name": "Alphen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 101751,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101756,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101758,
                          "name": "Timisoara, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101763,
                          "name": "Quimper, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101765,
                          "name": "Caloundra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101766,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 101767,
                          "name": "Seville, Spain, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 101768,
                          "name": "Freudenstadt, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101771,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101780,
                          "name": "Burnie, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101784,
                          "name": "Recanati, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101788,
                          "name": "Dallas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101789,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101796,
                          "name": "Kazan, Russia",
                          "importance": 0
                        },
                        {
                          "id": 101798,
                          "name": "Almaty, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 101799,
                          "name": "Courmayeur, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101800,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101801,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101803,
                          "name": "Almaty Doubles, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 101804,
                          "name": "Courmayeur, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101805,
                          "name": "Kazan, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101806,
                          "name": "Manerbio Doubles, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101807,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101808,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101810,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 101811,
                          "name": "Arad, Romania",
                          "importance": 0
                        },
                        {
                          "id": 101812,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 101813,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 101814,
                          "name": "Arad, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101815,
                          "name": "Buenos Aires, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101817,
                          "name": "Lima, Peru",
                          "importance": 0
                        },
                        {
                          "id": 101820,
                          "name": "Trnava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101830,
                          "name": "Geneva, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 101831,
                          "name": "San Sebastian, Spain",
                          "importance": 0
                        },
                        {
                          "id": 101833,
                          "name": "Trani, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101835,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101836,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101838,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 101841,
                          "name": "Brasilia 2, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101843,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 101844,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101847,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 101848,
                          "name": "Honolulu, USA",
                          "importance": 0
                        },
                        {
                          "id": 101849,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101851,
                          "name": "Honolulu, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101854,
                          "name": "Reunion Island, France",
                          "importance": 0
                        },
                        {
                          "id": 101855,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101856,
                          "name": "Singapore, Singapore",
                          "importance": 0
                        },
                        {
                          "id": 101857,
                          "name": "Reunion Island, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101859,
                          "name": "Singapore, Singapore, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101862,
                          "name": "Samarkand, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 101863,
                          "name": "Como, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101864,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 101867,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 101874,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 101876,
                          "name": "Campos do Jordao, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101877,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 101879,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 101881,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101886,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 101891,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101895,
                          "name": "Belo Horizonte, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101900,
                          "name": "Saransk, Russia",
                          "importance": 0
                        },
                        {
                          "id": 101901,
                          "name": "Orbetello, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101902,
                          "name": "Tampere, Finland",
                          "importance": 0
                        },
                        {
                          "id": 101920,
                          "name": "Monza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101921,
                          "name": "Kosice, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101922,
                          "name": "Kosice, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 101923,
                          "name": "Monza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101925,
                          "name": "Nottingham-2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 101935,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 101939,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101948,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 101951,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101955,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 101958,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 101959,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 101960,
                          "name": "Manta, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 101961,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 101962,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101963,
                          "name": "Penza, Russia",
                          "importance": 0
                        },
                        {
                          "id": 101964,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 101965,
                          "name": "Recanati, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101976,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 101977,
                          "name": "Manchester, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 101980,
                          "name": "Rimini, Italy",
                          "importance": 0
                        },
                        {
                          "id": 101983,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101984,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101985,
                          "name": "Buenos Aires-2, Argentina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101986,
                          "name": "Buenos Aires-2, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 101987,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 101990,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 101991,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 101992,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102006,
                          "name": "Oberstaufen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102007,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102008,
                          "name": "Salzburg, Austria",
                          "importance": 0
                        },
                        {
                          "id": 102009,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102010,
                          "name": "Taipei, Chinese Taipei, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102011,
                          "name": "Cancun, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102014,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 102015,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102018,
                          "name": "Salzburg, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102021,
                          "name": "Cancun, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102024,
                          "name": "Champaign, USA",
                          "importance": 0
                        },
                        {
                          "id": 102027,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102030,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 102031,
                          "name": "Rome II, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102032,
                          "name": "Athens, Greece",
                          "importance": 0
                        },
                        {
                          "id": 102033,
                          "name": "Athens, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102034,
                          "name": "Prague, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102035,
                          "name": "Rio Quente, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102037,
                          "name": "Rio Quente, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102038,
                          "name": "Busan, South Korea",
                          "importance": 0
                        },
                        {
                          "id": 102039,
                          "name": "Bordeaux, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102040,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 102043,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102044,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 102045,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102047,
                          "name": "Rijeka, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 102048,
                          "name": "Alphen aan den Rijn, The Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 102049,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102050,
                          "name": "Kaohsiung, Taiwan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102051,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102053,
                          "name": "Guayaquil, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 102056,
                          "name": "Aachen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102057,
                          "name": "Loughborough, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102058,
                          "name": "Loughborough, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102059,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102062,
                          "name": "Aachen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102063,
                          "name": "Noumea, New Caledonia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102064,
                          "name": "Reggio Emilia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102072,
                          "name": "Constanta, Romania",
                          "importance": 0
                        },
                        {
                          "id": 102076,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 102077,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102082,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102083,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102084,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102087,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 102088,
                          "name": "Astana-2, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 102089,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102090,
                          "name": "Astana-2, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102092,
                          "name": "Medellin, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102093,
                          "name": "Milan, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102097,
                          "name": "Bytom, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102107,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102110,
                          "name": "Sao Paulo-2, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102113,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102114,
                          "name": "Sao Paulo-2, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102116,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102117,
                          "name": "Kaohsiung, Chinese Taipei",
                          "importance": 0
                        },
                        {
                          "id": 102118,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102119,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 102121,
                          "name": "Bratislava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102127,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 102128,
                          "name": "Kosice, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102129,
                          "name": "Sacramento, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102132,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102136,
                          "name": "Calabasas, USA",
                          "importance": 0
                        },
                        {
                          "id": 102137,
                          "name": "Sao Paulo-2, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 102138,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102144,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102145,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 102146,
                          "name": "Calabasas, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102147,
                          "name": "Santiago-2, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102148,
                          "name": "Furth, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102149,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102150,
                          "name": "Yuba City, USA",
                          "importance": 0
                        },
                        {
                          "id": 102152,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 102153,
                          "name": "Prostejov, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102155,
                          "name": "Charlottesville, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102156,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 102159,
                          "name": "Karlsruhe, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102160,
                          "name": "Alessandria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102164,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102165,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102168,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 102169,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 102170,
                          "name": "Asuncion, Paraguay",
                          "importance": 0
                        },
                        {
                          "id": 102171,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 102173,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102180,
                          "name": "Bergamo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102181,
                          "name": "Mersin, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 102183,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 102185,
                          "name": "Blumenau, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102186,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102187,
                          "name": "Asuncion, Paraguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102192,
                          "name": "Cremona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102197,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 102198,
                          "name": "Fergana, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 102199,
                          "name": "Pereira, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102201,
                          "name": "Blumenau, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102211,
                          "name": "Ostrava, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 102213,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 102214,
                          "name": "Palermo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102215,
                          "name": "Sacramento, USA",
                          "importance": 0
                        },
                        {
                          "id": 102216,
                          "name": "Tarragona, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102217,
                          "name": "Quito, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102219,
                          "name": "Mons, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102222,
                          "name": "Quito, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 102223,
                          "name": "Palermo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102224,
                          "name": "Leon, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 102225,
                          "name": "Tarragona, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102226,
                          "name": "Barletta, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102227,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 102228,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102231,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 102232,
                          "name": "Blumenau, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102234,
                          "name": "Busan, Korea",
                          "importance": 0
                        },
                        {
                          "id": 102235,
                          "name": "Sarasota, USA",
                          "importance": 0
                        },
                        {
                          "id": 102236,
                          "name": "Izmir, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 102238,
                          "name": "San Remo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102239,
                          "name": "Savannah, USA",
                          "importance": 0
                        },
                        {
                          "id": 102241,
                          "name": "Barranquilla, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102243,
                          "name": "Le Gosier, Guadeloupe",
                          "importance": 0
                        },
                        {
                          "id": 102248,
                          "name": "Le Gosier, Guadeloupe, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102253,
                          "name": "Ramat Hasharon, Israel",
                          "importance": 0
                        },
                        {
                          "id": 102256,
                          "name": "Rimouski, Canada",
                          "importance": 0
                        },
                        {
                          "id": 102257,
                          "name": "Marrakech, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102258,
                          "name": "Bath, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102259,
                          "name": "Bath, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102261,
                          "name": "Marrakech, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102265,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102266,
                          "name": "Napoli-2, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102267,
                          "name": "Montevideo, Uruguay, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102271,
                          "name": "Napoli-2, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102277,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102278,
                          "name": "Rhodes, Greece",
                          "importance": 0
                        },
                        {
                          "id": 102283,
                          "name": "Dallas 2, USA",
                          "importance": 0
                        },
                        {
                          "id": 102284,
                          "name": "Guadalajara, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102287,
                          "name": "Sarajevo, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 102288,
                          "name": "Rabat, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102289,
                          "name": "Sarajevo, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102290,
                          "name": "Ostrava, Czec Republic",
                          "importance": 0
                        },
                        {
                          "id": 102292,
                          "name": "Pingguo, China",
                          "importance": 0
                        },
                        {
                          "id": 102293,
                          "name": "Tenerife, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102294,
                          "name": "Dallas 2, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102295,
                          "name": "Pingguo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102296,
                          "name": "Rabat, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102299,
                          "name": "Izmir, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 102300,
                          "name": "Bogota-3, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102302,
                          "name": "Bogota-3, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102307,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 102310,
                          "name": "Sofia, Bulgaria",
                          "importance": 0
                        },
                        {
                          "id": 102312,
                          "name": "Ljubljana, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 102313,
                          "name": "Meknes, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102314,
                          "name": "Trnava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102315,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102316,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102317,
                          "name": "Ljubljana, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102321,
                          "name": "Bogota, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102325,
                          "name": "Mexico City, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102329,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 102332,
                          "name": "Meknes, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102334,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 102337,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102339,
                          "name": "Genova, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102342,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 102343,
                          "name": "Belo Horizonte-2, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102346,
                          "name": "Tulsa, USA",
                          "importance": 0
                        },
                        {
                          "id": 102351,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102352,
                          "name": "Florianopolis, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102353,
                          "name": "Tulsa, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102355,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102358,
                          "name": "Casablanca, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102360,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102361,
                          "name": "Singapore, Singapore",
                          "importance": 0
                        },
                        {
                          "id": 102362,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 102363,
                          "name": "Florianopolis, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102364,
                          "name": "Singapore, Singapore, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102372,
                          "name": "Athens, Greece",
                          "importance": 0
                        },
                        {
                          "id": 102374,
                          "name": "Monza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102375,
                          "name": "Baton Rouge, USA",
                          "importance": 0
                        },
                        {
                          "id": 102376,
                          "name": "San Luis Potosi, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102377,
                          "name": "Belo Horizonte-2, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102380,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102381,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 102386,
                          "name": "Meknes, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102388,
                          "name": "Bangkok, Thailand, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102394,
                          "name": "Wolfsburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102395,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102396,
                          "name": "Wolfsburg, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102399,
                          "name": "St.Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 102405,
                          "name": "Genova, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102407,
                          "name": "Rijeka, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 102408,
                          "name": "Genova, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102409,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 102410,
                          "name": "St. Remy, France",
                          "importance": 0
                        },
                        {
                          "id": 102411,
                          "name": "Alphen aan den Rijn, The Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102415,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102416,
                          "name": "Rijeka, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102418,
                          "name": "Sarajevo, Bosnia and Hercegovina",
                          "importance": 0
                        },
                        {
                          "id": 102419,
                          "name": "St. Remy, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102428,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102430,
                          "name": "Jersey, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102432,
                          "name": "Korat, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 102461,
                          "name": "Bangkok, Thailand",
                          "importance": 0
                        },
                        {
                          "id": 102462,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102464,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102465,
                          "name": "Marrakech, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102467,
                          "name": "Sunrise, USA",
                          "importance": 0
                        },
                        {
                          "id": 102474,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102475,
                          "name": "Santiago, Chile",
                          "importance": 0
                        },
                        {
                          "id": 102476,
                          "name": "Rabat, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102479,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 102482,
                          "name": "Caloundra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 102483,
                          "name": "Quimper, France",
                          "importance": 0
                        },
                        {
                          "id": 102485,
                          "name": "Caloundra, Australia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102489,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 102491,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102504,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102507,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 102511,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102514,
                          "name": "Astana, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 102516,
                          "name": "Geneva, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 102517,
                          "name": "San Sebastian, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102518,
                          "name": "Astana, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102519,
                          "name": "San Sebastian, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102522,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 102524,
                          "name": "Wolfsburg, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102525,
                          "name": "Meknes, Morroco",
                          "importance": 0
                        },
                        {
                          "id": 102526,
                          "name": "Besancon, France",
                          "importance": 0
                        },
                        {
                          "id": 102529,
                          "name": "Salvador, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102533,
                          "name": "Melbourne, Australia",
                          "importance": 0
                        },
                        {
                          "id": 102535,
                          "name": "Kazan, Russia",
                          "importance": 0
                        },
                        {
                          "id": 102536,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102538,
                          "name": "Salvador, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102546,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 102548,
                          "name": "Brasilia, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102549,
                          "name": "Trani, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102550,
                          "name": "Istanbul, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102551,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102552,
                          "name": "Brasilia, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102553,
                          "name": "Trani, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102570,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 102572,
                          "name": "Beijing, China",
                          "importance": 0
                        },
                        {
                          "id": 102576,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102577,
                          "name": "Kitzbuhel, Austria",
                          "importance": 0
                        },
                        {
                          "id": 102580,
                          "name": "Campos Do Jordao, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102581,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 102583,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102584,
                          "name": "Kitzbuhel, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102587,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102588,
                          "name": "Campos Do Jordao, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102589,
                          "name": "Beijing, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102590,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102593,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102598,
                          "name": "Belgrade, Serbia",
                          "importance": 0
                        },
                        {
                          "id": 102603,
                          "name": "Honolulu, USA",
                          "importance": 0
                        },
                        {
                          "id": 102610,
                          "name": "Honolulu, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102612,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102616,
                          "name": "Tanger, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 102618,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102620,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102621,
                          "name": "Heilbronn, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102622,
                          "name": "Tallahassee, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102646,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102648,
                          "name": "Granby, Canada",
                          "importance": 0
                        },
                        {
                          "id": 102654,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102660,
                          "name": "Saransk, Russia",
                          "importance": 0
                        },
                        {
                          "id": 102661,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102662,
                          "name": "Saransk, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102670,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102680,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 102683,
                          "name": "Orbetello, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102684,
                          "name": "Penza, Russia",
                          "importance": 0
                        },
                        {
                          "id": 102685,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102688,
                          "name": "Orbetello, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102690,
                          "name": "Wroclaw, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102691,
                          "name": "Dallas, USA",
                          "importance": 0
                        },
                        {
                          "id": 102692,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102693,
                          "name": "Burnie, Australia",
                          "importance": 0
                        },
                        {
                          "id": 102695,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102697,
                          "name": "Lexington, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102700,
                          "name": "Penza, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102707,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 102715,
                          "name": "Heilbronn, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102718,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 102719,
                          "name": "Carson, USA",
                          "importance": 0
                        },
                        {
                          "id": 102720,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 102721,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102722,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102725,
                          "name": "Toyota, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102729,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 102730,
                          "name": "Bogota-2, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102731,
                          "name": "Bogota-2, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102732,
                          "name": "Rimini, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102734,
                          "name": "Rimini, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102735,
                          "name": "Bratislava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102736,
                          "name": "Salzburg, Austria",
                          "importance": 0
                        },
                        {
                          "id": 102737,
                          "name": "Montevideo, Uruguay",
                          "importance": 0
                        },
                        {
                          "id": 102738,
                          "name": "Iquique, Chile",
                          "importance": 0
                        },
                        {
                          "id": 102739,
                          "name": "Champaign, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102740,
                          "name": "Salzburg, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102741,
                          "name": "Lugano, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102744,
                          "name": "Ortisei, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102745,
                          "name": "Knoxville, USA",
                          "importance": 0
                        },
                        {
                          "id": 102746,
                          "name": "Buenos Aires, Argentina",
                          "importance": 0
                        },
                        {
                          "id": 102747,
                          "name": "Geneva, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 102748,
                          "name": "Loughborough, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102750,
                          "name": "Geneva, Switzerland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102752,
                          "name": "Loughborough, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102757,
                          "name": "Biella, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102758,
                          "name": "Scheveningen, Netherlands, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102759,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 102760,
                          "name": "Oberstaufen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102761,
                          "name": "Oberstaufen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102762,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102763,
                          "name": "San Benedetto, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102765,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102776,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102784,
                          "name": "Eckental, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102786,
                          "name": "Charlottesville, USA",
                          "importance": 0
                        },
                        {
                          "id": 102787,
                          "name": "Medellin, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102788,
                          "name": "Eckental, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102791,
                          "name": "Sao Leopoldo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102792,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 102794,
                          "name": "Sao Leopoldo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102795,
                          "name": "Leon, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102797,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 102798,
                          "name": "Orleans, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102799,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102800,
                          "name": "Seoul, South Korea, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102801,
                          "name": "Arad, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102802,
                          "name": "Arad, Romania",
                          "importance": 0
                        },
                        {
                          "id": 102805,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102806,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 102809,
                          "name": "San Jose do Rio Preto, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102810,
                          "name": "San Jose do Rio Preto, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102814,
                          "name": "Cordenons, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102820,
                          "name": "Quito, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 102821,
                          "name": "Reggio Emilia, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102827,
                          "name": "Orleans, France",
                          "importance": 0
                        },
                        {
                          "id": 102828,
                          "name": "Quito, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102829,
                          "name": "Reggio Emilia, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102831,
                          "name": "Tiburon, USA",
                          "importance": 0
                        },
                        {
                          "id": 102832,
                          "name": "Rennes, France",
                          "importance": 0
                        },
                        {
                          "id": 102833,
                          "name": "Tiburon, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102840,
                          "name": "Reggio Emilia, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 102845,
                          "name": "Bytom, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102846,
                          "name": "Bytom, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102851,
                          "name": "Palermo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102853,
                          "name": "Sacramento, USA",
                          "importance": 0
                        },
                        {
                          "id": 102854,
                          "name": "Mons, Belgium",
                          "importance": 0
                        },
                        {
                          "id": 102857,
                          "name": "Mons, Belgium, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102858,
                          "name": "Palermo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102859,
                          "name": "Banja Luka, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102860,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102861,
                          "name": "Todi, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102862,
                          "name": "Aguascalientes, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 102864,
                          "name": "Madrid, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102865,
                          "name": "Recife, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102867,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102868,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102870,
                          "name": "Aguascalientes, Mexico, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102871,
                          "name": "Recife, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102872,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102880,
                          "name": "Lugano, Switzerland",
                          "importance": 0
                        },
                        {
                          "id": 102881,
                          "name": "Kosice, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102882,
                          "name": "Kosice, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102885,
                          "name": "Furth, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102888,
                          "name": "Ljubljana, Slovenia",
                          "importance": 0
                        },
                        {
                          "id": 102889,
                          "name": "Izmir, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 102890,
                          "name": "Cali, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 102894,
                          "name": "Segovia, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102895,
                          "name": "Trnava, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 102896,
                          "name": "Ljubljana, Slovenia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102898,
                          "name": "Cali, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102899,
                          "name": "Trnava, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102901,
                          "name": "Tashkent, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 102902,
                          "name": "Ojai, USA",
                          "importance": 0
                        },
                        {
                          "id": 102903,
                          "name": "Izmir, Turkey, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102904,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 102906,
                          "name": "Ojai, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102908,
                          "name": "Nottingham, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102909,
                          "name": "Rome-3, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102911,
                          "name": "Prostejov, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 102912,
                          "name": "Rome-3, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102913,
                          "name": "Tashkent, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102915,
                          "name": "Lima, Peru, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102917,
                          "name": "Sibiu, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102921,
                          "name": "Ningbo, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102922,
                          "name": "Alessandria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102923,
                          "name": "Carson, USA",
                          "importance": 0
                        },
                        {
                          "id": 102925,
                          "name": "Szczecin, Poland",
                          "importance": 0
                        },
                        {
                          "id": 102926,
                          "name": "Belo Horizonte, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 102927,
                          "name": "Istanbul, Turkey",
                          "importance": 0
                        },
                        {
                          "id": 102928,
                          "name": "Banja Luka, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 102929,
                          "name": "Alessandria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102930,
                          "name": "Tulsa, USA",
                          "importance": 0
                        },
                        {
                          "id": 102931,
                          "name": "Tulsa, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102933,
                          "name": "Carson, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102934,
                          "name": "Szczecin, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102935,
                          "name": "Todi, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102936,
                          "name": "Ningbo, China",
                          "importance": 0
                        },
                        {
                          "id": 102937,
                          "name": "Belo Horizonte, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102940,
                          "name": "Cremona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102944,
                          "name": "Cremona, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102949,
                          "name": "Fergana, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102952,
                          "name": "Genova, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102956,
                          "name": "St. Remy, France",
                          "importance": 0
                        },
                        {
                          "id": 102957,
                          "name": "Alphen aan den Rijn, The Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 102958,
                          "name": "Biella, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102959,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 102960,
                          "name": "Zagreb, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 102961,
                          "name": "Brasov, Romania",
                          "importance": 0
                        },
                        {
                          "id": 102962,
                          "name": "Zagreb, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102963,
                          "name": "Shanghai, China",
                          "importance": 0
                        },
                        {
                          "id": 102964,
                          "name": "Shanghai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102966,
                          "name": "Seville, Spain",
                          "importance": 0
                        },
                        {
                          "id": 102967,
                          "name": "Brasov, Romania, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102968,
                          "name": "Seville, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102979,
                          "name": "San Remo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102980,
                          "name": "Cairo, Egypt",
                          "importance": 0
                        },
                        {
                          "id": 102981,
                          "name": "Cairo, Egypt, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102982,
                          "name": "Ramat Hasharon, Israel, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102983,
                          "name": "San Remo, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102984,
                          "name": "Ramat Hasharon, Israel",
                          "importance": 0
                        },
                        {
                          "id": 102985,
                          "name": "St. Brieuc, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102986,
                          "name": "Como, Italy",
                          "importance": 0
                        },
                        {
                          "id": 102988,
                          "name": "Tunis, Tunisia",
                          "importance": 0
                        },
                        {
                          "id": 102992,
                          "name": "Rhodes, Greece",
                          "importance": 0
                        },
                        {
                          "id": 102993,
                          "name": "Campinas, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102994,
                          "name": "Tunis, Tunisia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102995,
                          "name": "Manta, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 102996,
                          "name": "Manta, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102997,
                          "name": "Rhodes, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102998,
                          "name": "Aptos, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 102999,
                          "name": "Manerbio, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103000,
                          "name": "Astana-2, Kazakhstan",
                          "importance": 0
                        },
                        {
                          "id": 103010,
                          "name": "Manerbio, Italy,Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103011,
                          "name": "Athens, Greece",
                          "importance": 0
                        },
                        {
                          "id": 103012,
                          "name": "Curitiba, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 103013,
                          "name": "Tallahassee, USA",
                          "importance": 0
                        },
                        {
                          "id": 103014,
                          "name": "Rome-2, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103015,
                          "name": "Athens, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103016,
                          "name": "Curitiba, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103017,
                          "name": "Rome-2, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103018,
                          "name": "Astana-2, Kazakhstan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103021,
                          "name": "Blumenau, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 103022,
                          "name": "Pereira, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 103024,
                          "name": "Baton Rouge, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103025,
                          "name": "Baton Rouge, USA",
                          "importance": 0
                        },
                        {
                          "id": 103026,
                          "name": "Johannesburg, South Africa",
                          "importance": 0
                        },
                        {
                          "id": 103027,
                          "name": "Rome, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103028,
                          "name": "Blumenau, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103031,
                          "name": "Pereira, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103032,
                          "name": "Rome, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103033,
                          "name": "Cordenons, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103034,
                          "name": "San Sebastian, Spain",
                          "importance": 0
                        },
                        {
                          "id": 103035,
                          "name": "Johannesburg, South Africa, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103038,
                          "name": "Karshi, Uzbekistan",
                          "importance": 0
                        },
                        {
                          "id": 103039,
                          "name": "San Sebastian, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103040,
                          "name": "Karshi, Uzbekistan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103046,
                          "name": "San Marino, San Marino",
                          "importance": 0
                        },
                        {
                          "id": 103047,
                          "name": "Binghamton, USA",
                          "importance": 0
                        },
                        {
                          "id": 103048,
                          "name": "Binghamton, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103049,
                          "name": "San Marino, San Marino, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103052,
                          "name": "Monza, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103057,
                          "name": "Guayaquil, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103060,
                          "name": "Monza, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103063,
                          "name": "Trani, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103067,
                          "name": "Beijing, China",
                          "importance": 0
                        },
                        {
                          "id": 103070,
                          "name": "Segovia, Spain",
                          "importance": 0
                        },
                        {
                          "id": 103071,
                          "name": "Vancouver, Canada",
                          "importance": 0
                        },
                        {
                          "id": 103072,
                          "name": "Campos do Jordao, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103073,
                          "name": "Beijing, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103074,
                          "name": "Vancouver, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103075,
                          "name": "Trani, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103078,
                          "name": "St. Brieuc, France",
                          "importance": 0
                        },
                        {
                          "id": 103080,
                          "name": "Campos do Jordao, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 103081,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103083,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103084,
                          "name": "Jersey, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 103086,
                          "name": "Rimouski, Canada",
                          "importance": 0
                        },
                        {
                          "id": 103088,
                          "name": "Barletta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103089,
                          "name": "Jersey, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103093,
                          "name": "Rimouski, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103096,
                          "name": "Dortmund, Germany",
                          "importance": 0
                        },
                        {
                          "id": 103098,
                          "name": "Tampere, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103104,
                          "name": "Wuhai, China",
                          "importance": 0
                        },
                        {
                          "id": 103105,
                          "name": "Dortmund, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103107,
                          "name": "Mauthausen, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103108,
                          "name": "Wuhai, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103110,
                          "name": "Marrakech, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 103112,
                          "name": "Caltanissetta, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103113,
                          "name": "Sunrise, FL, USA",
                          "importance": 0
                        },
                        {
                          "id": 103114,
                          "name": "Sarajevo, Bosnia & Herzegovina",
                          "importance": 0
                        },
                        {
                          "id": 103115,
                          "name": "Rabat, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 103116,
                          "name": "Tyler, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103117,
                          "name": "Kyoto, Japan",
                          "importance": 0
                        },
                        {
                          "id": 103119,
                          "name": "Rabat, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103120,
                          "name": "Sarajevo, Bosnia & Herzegovina, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103121,
                          "name": "Kyoto, Japan, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103129,
                          "name": "Lexington, USA",
                          "importance": 0
                        },
                        {
                          "id": 103130,
                          "name": "Orbetello, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103135,
                          "name": "Poznan, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103136,
                          "name": "Cherbourg, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103139,
                          "name": "Poznan, Poland",
                          "importance": 0
                        },
                        {
                          "id": 103140,
                          "name": "Manta, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 103142,
                          "name": "Orbetello, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103145,
                          "name": "Manta, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103147,
                          "name": "Cherbourg, France",
                          "importance": 0
                        },
                        {
                          "id": 103157,
                          "name": "Meknes, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 103162,
                          "name": "Penza, Russia",
                          "importance": 0
                        },
                        {
                          "id": 103165,
                          "name": "Penza, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103169,
                          "name": "Granby, Canada, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103179,
                          "name": "Bogota, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 103186,
                          "name": "Belgrade, Serbia",
                          "importance": 0
                        },
                        {
                          "id": 103189,
                          "name": "Sopot, Poland",
                          "importance": 0
                        },
                        {
                          "id": 103190,
                          "name": "Tanger, Morocco",
                          "importance": 0
                        },
                        {
                          "id": 103191,
                          "name": "Tanger, Morocco, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103192,
                          "name": "Belgrade, Serbia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103195,
                          "name": "Aptos, USA",
                          "importance": 0
                        },
                        {
                          "id": 103200,
                          "name": "Penza, Russia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103201,
                          "name": "Sopot, Poland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103209,
                          "name": "Oberstaufen, Germany",
                          "importance": 0
                        },
                        {
                          "id": 103210,
                          "name": "Scheveningen, Netherlands",
                          "importance": 0
                        },
                        {
                          "id": 103212,
                          "name": "Oberstaufen, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103213,
                          "name": "Pozoblanco, Spain",
                          "importance": 0
                        },
                        {
                          "id": 103218,
                          "name": "Pozoblanco, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103222,
                          "name": "San Benedetto, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103229,
                          "name": "Bergamo, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103232,
                          "name": "Braunschweig, Germany",
                          "importance": 0
                        },
                        {
                          "id": 103235,
                          "name": "Turin, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103238,
                          "name": "Winnetka, USA",
                          "importance": 0
                        },
                        {
                          "id": 103239,
                          "name": "Turin, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103241,
                          "name": "Winnetka, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103242,
                          "name": "Braunschweig, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103244,
                          "name": "Dallas, TX - USA",
                          "importance": 0
                        },
                        {
                          "id": 103245,
                          "name": "Kazan, Russia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103247,
                          "name": "Kazan, Russia",
                          "importance": 0
                        },
                        {
                          "id": 103248,
                          "name": "Dallas, TX - USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103252,
                          "name": "Maui, USA",
                          "importance": 0
                        },
                        {
                          "id": 103254,
                          "name": "Guadalajara, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 103255,
                          "name": "Dallas, TX - USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103257,
                          "name": "Bucaramanga, Colombia",
                          "importance": 0
                        },
                        {
                          "id": 103258,
                          "name": "Honolulu, HI - USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103259,
                          "name": "Honolulu, HI - USA",
                          "importance": 0
                        },
                        {
                          "id": 103260,
                          "name": "Bucaramanga, Colombia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103283,
                          "name": "Salinas, Ecuador, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103287,
                          "name": "Salinas, Ecuador",
                          "importance": 0
                        },
                        {
                          "id": 103293,
                          "name": "Nottingham-2, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 103294,
                          "name": "Nottingham-2, Great Britain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103295,
                          "name": "Kosice, Slovakia",
                          "importance": 0
                        },
                        {
                          "id": 103296,
                          "name": "Kosice, Slovakia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103300,
                          "name": "Sao Paulo, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 103305,
                          "name": "Noumea, New Caledonia",
                          "importance": 0
                        },
                        {
                          "id": 103306,
                          "name": "Sao Paulo, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103309,
                          "name": "Nottingham, Great Britain",
                          "importance": 0
                        },
                        {
                          "id": 103310,
                          "name": "Rijeka, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 103312,
                          "name": "Rijeka, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103316,
                          "name": "Salzburg, Austria, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103317,
                          "name": "Khanty-Mansiysk, Russia",
                          "importance": 0
                        },
                        {
                          "id": 103318,
                          "name": "Salzburg, Austria",
                          "importance": 0
                        },
                        {
                          "id": 103320,
                          "name": "Puebla, Mexico",
                          "importance": 0
                        },
                        {
                          "id": 103321,
                          "name": "Helsinki, Finland",
                          "importance": 0
                        },
                        {
                          "id": 103327,
                          "name": "Helsinki, Finland, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103328,
                          "name": "Toyota, Japan",
                          "importance": 0
                        },
                        {
                          "id": 103329,
                          "name": "Alessandria, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103330,
                          "name": "Alessandria, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103333,
                          "name": "Cremona, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103339,
                          "name": "Cremona, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103342,
                          "name": "Tyler, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103346,
                          "name": "Zagreb, Croatia",
                          "importance": 0
                        },
                        {
                          "id": 103347,
                          "name": "Bordeaux, France",
                          "importance": 0
                        },
                        {
                          "id": 103350,
                          "name": "Zagreb, Croatia, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103364,
                          "name": "Prague, Czech Republic",
                          "importance": 0
                        },
                        {
                          "id": 103365,
                          "name": "Bordeaux, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103368,
                          "name": "Rome-2, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103398,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103404,
                          "name": "Rome-2, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103410,
                          "name": "Heilbronn II, Germany, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103415,
                          "name": "Napoli, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103416,
                          "name": "Napoli, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103421,
                          "name": "Blumenau, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 103422,
                          "name": "Rome-1, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103423,
                          "name": "Athens, Greece",
                          "importance": 0
                        },
                        {
                          "id": 103424,
                          "name": "Johannesburg, South Africa",
                          "importance": 0
                        },
                        {
                          "id": 103425,
                          "name": "Blumenau, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103426,
                          "name": "Athens, Greece, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103428,
                          "name": "Johannesburg, South Africa, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103437,
                          "name": "Prague, Czech Republic, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103438,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103451,
                          "name": "San Miguel de Tucuman, Argentina, Double",
                          "importance": 0
                        },
                        {
                          "id": 103463,
                          "name": "Savannah, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103487,
                          "name": "Madrid, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103488,
                          "name": "Sarasota, USA, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103531,
                          "name": "Sarasota, USA, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103579,
                          "name": "Concepcion, Chile, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103601,
                          "name": "Morelia, Mexico, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103635,
                          "name": "Brisbane 2, Australia",
                          "importance": 0
                        },
                        {
                          "id": 103636,
                          "name": "Chennai, India, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103637,
                          "name": "Tenerife, Spain, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103712,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103713,
                          "name": "Nonthaburi, Thailand, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103775,
                          "name": "Cagliari, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103779,
                          "name": "Aix en Provence, France, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 103780,
                          "name": "Aix en Provence, France",
                          "importance": 0
                        },
                        {
                          "id": 103781,
                          "name": "Cagliari, Italy",
                          "importance": 0
                        },
                        {
                          "id": 103782,
                          "name": "Ostrava, Czech Republic, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103784,
                          "name": "Abidjan 2, Cote d Ivoire, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103991,
                          "name": "Aix en Provence, France, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 103993,
                          "name": "Cagliari, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 104403,
                          "name": "Wuxi, China",
                          "importance": 0
                        },
                        {
                          "id": 104404,
                          "name": "Wuxi, China, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 104433,
                          "name": "Francavilla, Italy, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 104457,
                          "name": "Brazzaville, Republic of Congo",
                          "importance": 0
                        },
                        {
                          "id": 104471,
                          "name": "Brazzaville, Republic of Congo, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 104472,
                          "name": "Francavilla, Italy",
                          "importance": 0
                        },
                        {
                          "id": 104473,
                          "name": "Santos, Brazil, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 104476,
                          "name": "Santos, Brazil",
                          "importance": 0
                        },
                        {
                          "id": 104511,
                          "name": "Wuxi, China, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 104554,
                          "name": "Francavilla, Italy, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 104570,
                          "name": "Santos, Brazil, Doubles",
                          "importance": 0
                        },
                        {
                          "id": 104574,
                          "name": "Brazzaville, Republic of Congo, Doubles",
                          "importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By Class"
      }
    },
    "/seasons-by-tournament": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons By Tournament",
        "description": "This endpoint allows you to retrieve the seasons from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **tournament_id**<br />`https://tennis.sportmicro.com/seasons-by-tournament?tournament_id=eq.{tournament_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-by-tournament.tournament_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-by-tournament"
                  },
                  "type": "array",
                  "example": [
                    {
                      "tournament_id": 53,
                      "tournament_name": "Canberra - Australia",
                      "seasons": [
                        {
                          "id": 50,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2026",
                          "year": "2026"
                        },
                        {
                          "id": 55612,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2024",
                          "year": "2024"
                        },
                        {
                          "id": 55622,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2023",
                          "year": "2023"
                        },
                        {
                          "id": 58645,
                          "name": "ATP Challenger Canberra, Australia Men Singles 2025",
                          "year": "2025"
                        },
                        {
                          "id": 64113,
                          "name": "2020 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2020"
                        },
                        {
                          "id": 73934,
                          "name": "2018 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2018"
                        },
                        {
                          "id": 76475,
                          "name": "2019 ATP Challenger Canberra, Australia Men Singles",
                          "year": "2019"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons By Tournament"
      }
    },
    "/seasons": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons",
        "description": "This endpoint allows you to retrieve the seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons<br />`https://tennis.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://tennis.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://tennis.sportmicro.com/seasons?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.seasons.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 66490,
                      "name": "UTR Newport Beach W09 2026",
                      "year": "2026",
                      "start_time": "2026-04-26",
                      "end_time": "2026-04-26",
                      "league_id": 9322,
                      "league_name": "UTR Newport Beach W09"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons"
      }
    },
    "/media-players": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Media Players",
        "description": "This endpoint allows you to retrieve the media from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **player_id**<br />`https://tennis.sportmicro.com/media-players?player_id=eq.{player_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.media-players.player_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/media-players"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 358,
                      "player_id": 562298,
                      "title": "C. Alcaraz 0 - 2 J. Sinner",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=2n70tHqPWDQ",
                      "thumbnail_url": "https://i.ytimg.com/vi/2n70tHqPWDQ/hqdefault.jpg",
                      "date_published": "2025-11-16T20:19:59+00:00",
                      "channel_url": "https://www.youtube.com/watch?v=2n70tHqPWDQ"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Players"
      }
    },
    "/matches-tv-channels": {
      "get": {
        "tags": [
          "Tv channels"
        ],
        "summary": "Matches Tv Channels",
        "description": "This endpoint allows you to retrieve the tv channels for matches from all countries.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet tv channels from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}&alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-tv-channels.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-tv-channels.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-tv-channels"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 679,
                      "country_id": 4,
                      "country_name": "Brazil",
                      "country_hash_image": "bbaf8352442730e92c16c5ea6b0ff7cc595c24e02d8e8bfc5fea5a4e0bb0b46b",
                      "alpha": "BR",
                      "tv_channels": [
                        {
                          "id": 162,
                          "name": "Disney+"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Tv Channels"
      }
    },
    "/seasons-info": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Info",
        "description": "This endpoint allows you to retrieve the info from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet info from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-info?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-info.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-info"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 50,
                      "season_name": "ATP Challenger Canberra, Australia Men Singles 2026",
                      "competitors": 32,
                      "total_prize_money": 225000,
                      "total_prize_money_currency": "$",
                      "city": "Canberra",
                      "countries": [
                        "Australia"
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Info"
      }
    },
    "/matches-by-date": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches By Date",
        "description": "This endpoint allows you to retrieve the matches from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date**<br />`https://tennis.sportmicro.com/matches-by-date?date=eq.{date}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date.date"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-by-date"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2003-04-26",
                      "matches": [
                        {
                          "id": 608109,
                          "name": "Anastasia Myskina vs Karolina Sprem",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T10:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 298594,
                          "home_team_id": 352701,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Karolina Sprem",
                          "home_team_name": "Anastasia Myskina",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "83988f31b4e50d638722e47342fd4b6c3fd51a9ad88902ae28793faed0920a90",
                          "home_team_hash_image": "9dead16bbc90f247c3b832860dd06e1c28f19a8a6f40f896e736a8e449e7cc97",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 6,
                          "away_team_period_3_score": 0,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 3,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608117,
                          "name": "Maria Emilia Salerni vs Katarina Srebotnik",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 175691,
                          "home_team_id": 355632,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Katarina Srebotnik",
                          "home_team_name": "Maria Emilia Salerni",
                          "away_team_score": 2,
                          "home_team_score": 1,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "9e65badfe20146f6af8901f465f5c36ba5dbcc2af2d0a216bc49899d501e3718",
                          "home_team_hash_image": "90c7290b1e7ba6a1d8bafabdc1a6af9c471bf6fefce435967f7b6dce88eefd5d",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 6,
                          "away_team_period_3_score": 6,
                          "home_team_period_1_score": 3,
                          "home_team_period_2_score": 7,
                          "home_team_period_3_score": 1
                        },
                        {
                          "id": 608128,
                          "name": "Elena Dementieva vs Iva Majoli",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T11:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 203847,
                          "home_team_id": 355116,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Iva Majoli",
                          "home_team_name": "Elena Dementieva",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "b3159cb402a49347127b4476dd5c680d57ccc9f29ce596f6e11749d2b437e59d",
                          "home_team_hash_image": "f0e6654fb553ba9b498e0193522899c9e6c05fb76082b8a2c624550f2c307550",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 4,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608129,
                          "name": "Amelie Mauresmo vs Catalina Castano",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 339326,
                          "home_team_id": 355111,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Catalina Castano",
                          "home_team_name": "Amelie Mauresmo",
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "330dbf15ab653b06dbe4fc39af9d62d06c4c7bbe047c392bb53e41cab055dc9b",
                          "home_team_hash_image": "b77c1114cb15d90c435a9188305247ea8acee1f919528f5ab4a3f999537f5dd0",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "home_team_period_1_score": 5
                        },
                        {
                          "id": 608161,
                          "name": "USA vs Czechia",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 75952,
                          "start_time": "2003-04-26T17:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2010",
                          "away_team_id": 1537,
                          "home_team_id": 1543,
                          "status_reason": "Ended",
                          "tournament_id": 82396,
                          "away_team_name": "Czechia",
                          "home_team_name": "USA",
                          "away_team_score": 0,
                          "home_team_score": 5,
                          "tournament_name": "Billie Jean King Cup",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "20b411891376d5d0ebf6db5a383a64c9464e8e7658d2478ce4ea0f697d5a93be",
                          "home_team_hash_image": "b92f23b9722318c8e7b471cab5040682ba9cd97bea4a9f43508ffb99591473cb",
                          "tournament_importance": 0
                        },
                        {
                          "id": 608228,
                          "name": "Venus Williams vs Daniela Bedanova",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T17:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356523,
                          "home_team_id": 106824,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Daniela Bedanova",
                          "home_team_name": "Venus Williams",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "a5c181d5847aa6e65a54aa79fe5be7e2a1335c16e9b902fa97a98ba45743806f",
                          "home_team_hash_image": "5f2ca7809c1020a5209cc1714ed9f0ef6503b7004762bea3230795d8c1be01ce",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 0,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608234,
                          "status": "canceled",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T14:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 355333,
                          "status_reason": "Canceled",
                          "tournament_id": 28078,
                          "away_team_name": "Tina Pisnik",
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "4106e6bc9f3caba5d8eb0cfb59eac575d4f77d5b6c013d3a5cda83e3956414ec",
                          "tournament_importance": 0
                        },
                        {
                          "id": 608273,
                          "name": "Hanni Nooni vs Flavia Pennetta",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 113778,
                          "home_team_id": 356517,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Flavia Pennetta",
                          "home_team_name": "Hanni Nooni",
                          "away_team_score": 2,
                          "home_team_score": 0,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "dc673a28895ee98314404cf0e67f888de27ec6568a4dc17acfb1af8958109f2f",
                          "home_team_hash_image": "a66792a87215e4dab88ee5cc8dd939b9768466817eddcc4e97a846ed28fd8d77",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 6,
                          "home_team_period_1_score": 4,
                          "home_team_period_2_score": 3
                        },
                        {
                          "id": 608301,
                          "name": "Sofia Arvidsson vs A. Serra Zanetti",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356531,
                          "home_team_id": 114291,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "A. Serra Zanetti",
                          "home_team_name": "Sofia Arvidsson",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "f24bec3f2d5b79ab123661fedc95dd8542d1fa11c6b0880fd5b04fa3ad9ad1f9",
                          "home_team_hash_image": "7a316fbb6e4e0f1c7de19db801c5ffdef1badf12bef57566c8c384a02e4ee1bc",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 4,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 3,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608302,
                          "name": "Natalia Gussoni vs Maja Matevzic",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T14:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356191,
                          "home_team_id": 356528,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Maja Matevzic",
                          "home_team_name": "Natalia Gussoni",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "e9e8f49c8b1b1a0eb6030ed5de6946ae8cc2c65b655ef17b7e431136ac1473c0",
                          "home_team_hash_image": "1a967c1cb436c359ebd5add98392a29ea134a9e05fbd8364ad3afbdea02cbf38",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 4,
                          "away_team_period_2_score": 2,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608307,
                          "name": "Kim Clijsters vs Evelyn Fauth",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356519,
                          "home_team_id": 188263,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Evelyn Fauth",
                          "home_team_name": "Kim Clijsters",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "07cb57ff94e6af26775922f585f333671ff4788cec5c84549af6936eebcf31a7",
                          "home_team_hash_image": "5874b3502741fdaef5f9db82a6155a21da936d15dffcb739cbaba46b407bf68b",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 2,
                          "away_team_period_3_score": 2,
                          "home_team_period_1_score": 4,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608324,
                          "name": "DECHY N. vs Fabiola Zuluaga",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:00:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356527,
                          "home_team_id": 288509,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Fabiola Zuluaga",
                          "home_team_name": "DECHY N.",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "a070faa2c8a60174be5244e8b1fe47adb1cec552451b118a887423bb75e1b910",
                          "home_team_hash_image": "32992601bd0577094024b9e035dcb9fc46eb0299c045e1cda393853248668883",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 4,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608338,
                          "name": "Marlene Weingartner vs Daniela Hantuchova",
                          "status": "finished",
                          "duration": 9000,
                          "league_id": 370,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:15:00+00:00",
                          "league_name": "Billie Jean King Cup",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 114259,
                          "home_team_id": 356520,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Daniela Hantuchova",
                          "home_team_name": "Marlene Weingartner",
                          "away_team_score": 2,
                          "home_team_score": 1,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "away_team_hash_image": "2b2342ea9c764e6e15c49d10218525593ccedaa2730bdd38899e1986b2536442",
                          "home_team_hash_image": "7ed7332bc3a934dff3fce3c1ade13d4b904e7c0d5c676986e8143021e1a8949f",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 2,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 7,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 5
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date"
      }
    },
    "/matches-live": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Live",
        "description": "This endpoint allows you to retrieve the live matches.\n\nIt has the same results as the /matches endpoint.",
        "responses": {},
        "operationId": "Matches Live"
      }
    },
    "/countries": {
      "get": {
        "tags": [
          "Countries"
        ],
        "summary": "Countries",
        "description": "This endpoint allows you to retrieve the countries.\nYou can use the `alpha` field to get the country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per week.\n\nYou can get the image of the country by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet countries<br />`https://tennis.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://tennis.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://tennis.sportmicro.com/countries?alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.countries.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.countries.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/countries"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "Central African Republic",
                      "alpha": "CF",
                      "hash_image": "5c62e0b4977585c1b8aecfb35a731f2f6669e3c814cd6feab19ee492d56499f1"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Countries"
      }
    },
    "/matches-point-by-points": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Point By Points",
        "description": "This endpoint allows you to retrieve the point by points from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet points from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-point-by-points?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-point-by-points.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-point-by-points"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 1,
                      "sets": [
                        {
                          "set": 1,
                          "games": [
                            {
                              "game": 1,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 0,
                              "home_score": 1
                            },
                            {
                              "game": 2,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 1,
                              "home_score": 1
                            },
                            {
                              "game": 3,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 1,
                              "home_score": 2
                            },
                            {
                              "game": 4,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 2,
                              "home_score": 2
                            },
                            {
                              "game": 5,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 2,
                              "home_score": 3
                            },
                            {
                              "game": 6,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 3,
                              "home_score": 3
                            },
                            {
                              "game": 7,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 3,
                              "home_score": 4
                            },
                            {
                              "game": 8,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 4,
                              "home_score": 4
                            },
                            {
                              "game": 9,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 4,
                              "home_score": 5
                            },
                            {
                              "game": 10,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 2,
                              "away_score": 4,
                              "home_score": 6
                            }
                          ]
                        },
                        {
                          "set": 2,
                          "games": [
                            {
                              "game": 1,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 0,
                              "home_score": 1
                            },
                            {
                              "game": 2,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 1,
                              "home_score": 1
                            },
                            {
                              "game": 3,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 1,
                              "home_score": 2
                            },
                            {
                              "game": 4,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 2,
                              "away_score": 1,
                              "home_score": 3
                            },
                            {
                              "game": 5,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 1,
                              "home_score": 4
                            },
                            {
                              "game": 6,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 2,
                              "home_score": 4
                            },
                            {
                              "game": 7,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 2,
                              "home_score": 5
                            },
                            {
                              "game": 8,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 3,
                              "home_score": 5
                            },
                            {
                              "game": 9,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 3,
                              "home_score": 6
                            }
                          ]
                        },
                        {
                          "set": 3,
                          "games": [
                            {
                              "game": 1,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 1,
                              "home_score": 0
                            },
                            {
                              "game": 2,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 1,
                              "away_score": 2,
                              "home_score": 0
                            },
                            {
                              "game": 3,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 3,
                              "home_score": 0
                            },
                            {
                              "game": 4,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 1,
                              "away_score": 4,
                              "home_score": 0
                            },
                            {
                              "game": 5,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 2,
                              "away_score": 4,
                              "home_score": 1
                            },
                            {
                              "game": 6,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 4,
                              "home_score": 2
                            },
                            {
                              "game": 7,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 2,
                              "serving": 2,
                              "away_score": 5,
                              "home_score": 2
                            },
                            {
                              "game": 8,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 5,
                              "home_score": 3
                            },
                            {
                              "game": 9,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 2,
                              "away_score": 5,
                              "home_score": 4
                            },
                            {
                              "game": 10,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 5,
                              "home_score": 5
                            },
                            {
                              "game": 11,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 2,
                              "away_score": 5,
                              "home_score": 6
                            },
                            {
                              "game": 12,
                              "points": [
                                {
                                  "away_point": "0",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "15"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "30"
                                },
                                {
                                  "away_point": "15",
                                  "home_point": "40"
                                }
                              ],
                              "scoring": 1,
                              "serving": 1,
                              "away_score": 5,
                              "home_score": 7
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Point By Points"
      }
    },
    "/arenas": {
      "get": {
        "tags": [
          "Arenas"
        ],
        "summary": "Arenas",
        "description": "This endpoint allows you to retrieve the arenas.\nWith geolocation parameter from `geolocations` endpoint we can see latitude and longitute of the arena.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the arena by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet arenas<br />`https://tennis.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://tennis.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://tennis.sportmicro.com/arenas?country_id=eq.{country_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.arenas.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.arenas.country_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/arenas"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 22,
                      "name": "Centre Court",
                      "city": "Canberra",
                      "opened": "1922",
                      "owner": "All England Lawn Tennis and Croquet Club",
                      "surface": "grass court",
                      "hash_image": "100e18107ffa800e8823c9a4e711eeff1e1670d31dd52cf809f8ce6af405f5c9",
                      "country_id": 33,
                      "country_name": "Australia",
                      "country_hash_image": "86936315fce40c126916c0c980e24be16cd8fd390243c6740f58c62d08cea336",
                      "geolocation": [
                        {
                          "name": "Australian Capital Territory",
                          "type": "region",
                          "label": "Australian Capital Territory, Australia",
                          "region": "Australian Capital Territory",
                          "latitude": -35.470057,
                          "continent": "Oceania",
                          "longitude": 148.954507,
                          "confidence": 0.3,
                          "region_code": "ACT",
                          "country_code": "AUS"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas"
      }
    },
    "/leagues-info": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues Info",
        "description": "This endpoint allows you to retrieve the info from leagues and cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\n### Use Cases\nGet league info from a specific **league_id**<br />`https://tennis.sportmicro.com/leagues-info?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues-info.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues-info"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 46,
                      "competition_name": "Canberra, Australia",
                      "city_name": "Canberra",
                      "playing_months": [
                        1
                      ],
                      "surface_type": "Hardcourt outdoor",
                      "qualification_rounds_played": 1,
                      "main_rounds_played": 6,
                      "prize_money": "162480 $",
                      "match_type": "singles",
                      "number_of_teams": 64,
                      "age_category": "seniors",
                      "category": "Challenger",
                      "league_gender": "M"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues Info"
      }
    },
    "/tournaments": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments",
        "description": "This endpoint allows you to retrieve the tournaments.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments<br />`https://tennis.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://tennis.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://tennis.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://tennis.sportmicro.com/tournaments?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.league_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.tournaments.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 42411,
                      "name": "Zagreb, Croatia, Qualifying",
                      "importance": 0,
                      "league_id": 13374,
                      "league_name": "Zagreb - Croatia",
                      "class_id": 28,
                      "class_name": "Challenger",
                      "class_hash_image": "96ae6b1996feda3127c70abd756b5612bb35a4e69ecbee3b1c538fc0f861b13c"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments"
      }
    },
    "/news-matches": {
      "get": {
        "tags": [
          "News"
        ],
        "summary": "News Matches",
        "description": "This endpoint allows you to retrieve the news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 2 hours.<br />**Recommended Calls**: Limit calls to 1 every 2 hours.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://tennis.sportmicro.com/news-matches?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.news-matches.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/news-matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1211631,
                      "match_id": 1211631,
                      "league_id": 2237,
                      "league_name": "US Open",
                      "league_hash_image": "6235142c787378ed7c02b201125899404b03aedb07e75dfe2c73862e89249428",
                      "date": "2024-08-19T18:05:00+00:00",
                      "title": "US Open Women Singles 2024 Round 1: A Grand Slam Showdown at Court 7",
                      "name": "US Open Women Singles 2024 Round 1: A Grand Slam Showdown at Court 7",
                      "subtitles": [
                        {
                          "text": "Court 7, known for its intimate setting and electric atmosphere, is the chosen arena for the first round of the US Open Women Singles 2024. The court has been the stage for many memorable matches in the past, and this year promises to be no different. The players will have to navigate the unique challenges of the court, including its fast surface and the often unpredictable weather conditions. Despite these challenges, Court 7 remains a favorite among players and fans alike, and is sure to provide a fitting backdrop for the opening round of the tournament.",
                          "subtitle": "Court 7: The Stage for the First Round"
                        },
                        {
                          "text": "The opening match of the tournament is set to be a thrilling encounter. The home team, led by the formidable Mateas M., will be going head-to-head against the away team, led by the equally impressive Teichmann J. Both teams have a strong track record in the tournament, and the match promises to be a closely fought contest. The players will need to bring their A-game, as the stakes are high and the competition fierce. The match is scheduled to start at 18:05 GMT, and fans around the world are eagerly awaiting the start of what promises to be a thrilling contest.",
                          "subtitle": "The Opening Match: A Clash of Titans"
                        },
                        {
                          "text": "The US Open Women Singles 2024 has officially kicked off, marking the start of another thrilling Grand Slam season. The first round of matches promises to be a spectacle of skill, strategy, and stamina, as the world's top female tennis players battle it out on the court. The tournament, held at the iconic Court 7, is set to be a showcase of the highest level of tennis, with each match a testament to the players' dedication, hard work, and passion for the sport.",
                          "subtitle": "Grand Slam Season Opens with a Bang"
                        },
                        {
                          "text": "The US Open Women Singles 2024 is set to be a tournament of epic proportions. With the world's top female tennis players vying for the coveted title, fans can expect a series of intense and exciting matches. The first round, held at Court 7, is just a taste of what's to come. As the tournament progresses, the competition will only get tougher, and the matches more thrilling. Whether you're a seasoned tennis fan or a newcomer to the sport, the US Open Women Singles 2024 is a tournament you won't want to miss.",
                          "subtitle": "What to Expect from the US Open Women Singles 2024"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "News Matches"
      }
    },
    "/leagues-by-date": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues By Date",
        "description": "This endpoint allows you to retrieve the leagues from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **date**<br />`https://tennis.sportmicro.com/leagues-by-date?date=eq.{date}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues-by-date.date"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues-by-date"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2003-04-26",
                      "leagues": [
                        {
                          "class_id": "Billie Jean King Cup",
                          "league_id": 370,
                          "class_name": "Billie Jean King Cup",
                          "league_name": "Billie Jean King Cup",
                          "class_hash_image": "a9c456bc0b5c1e5eaba7df443fbf58fb5f244e9ca808a0775e9c746d56b8c5e0",
                          "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                          "league_importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues By Date"
      }
    },
    "/leagues": {
      "get": {
        "tags": [
          "Leagues"
        ],
        "summary": "Leagues",
        "description": "This endpoint allows you to retrieve the leagues and the cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\nYou can get the image of the league by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet leagues<br />`https://tennis.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://tennis.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://tennis.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://tennis.sportmicro.com/leagues?class_id=eq.{class_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.leagues.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.leagues.class_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/leagues"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 46,
                      "name": "Canberra - Australia",
                      "importance": 0,
                      "ground": "Hardcourt outdoor",
                      "number_of_sets": 3,
                      "start_league": "2026-01-03T00:00:00+00:00",
                      "end_league": "2026-01-10T00:00:00+00:00",
                      "hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab",
                      "class_id": 28,
                      "class_name": "Challenger",
                      "class_hash_image": "96ae6b1996feda3127c70abd756b5612bb35a4e69ecbee3b1c538fc0f861b13c"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Leagues"
      }
    },
    "/tournaments-by-league": {
      "get": {
        "tags": [
          "Tournaments"
        ],
        "summary": "Tournaments By League",
        "description": "This endpoint allows you to retrieve the tournaments from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **league_id**<br />`https://tennis.sportmicro.com/tournaments-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tournaments-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tournaments-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 46,
                      "league_name": "Canberra - Australia",
                      "league_hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab",
                      "tournaments": [
                        {
                          "id": 53,
                          "name": "Canberra - Australia",
                          "importance": 0
                        },
                        {
                          "id": 60375,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 60387,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 60539,
                          "name": "Canberra - Australia - Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63001,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 63356,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 81120,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 86316,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 86340,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 86836,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 94226,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94656,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 94890,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 95666,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        },
                        {
                          "id": 97134,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 98685,
                          "name": "Canberra, Australia",
                          "importance": 0
                        },
                        {
                          "id": 103712,
                          "name": "Canberra, Australia, Qualifying",
                          "importance": 0
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tournaments By League"
      }
    },
    "/teams-by-league": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By League",
        "description": "This endpoint allows you to retrieve the teams from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **league_id**<br />`https://tennis.sportmicro.com/teams-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 78,
                      "league_name": "ATP Finals",
                      "teams": [
                        {
                          "id": 138,
                          "name": "Jannik Sinner",
                          "hash_image": "b1f4dc58d39cd76fa6753046391d74c72fcc68c72200d5e5461b944748c6703e"
                        },
                        {
                          "id": 2122,
                          "name": "Carlos Alcaraz",
                          "hash_image": "5cae860b276791caf24fea7721baa4f1da6c6c4f70dad9aa8110ef1ea12b7276"
                        },
                        {
                          "id": 7826,
                          "name": "Felix Auger-Aliassime",
                          "hash_image": "4d4197ee1857babcd4e5f482d557d05bc917d532a031f7cc147c0ca0fc489a74"
                        },
                        {
                          "id": 8012,
                          "name": "Grigor Dimitrov",
                          "hash_image": "b1a61665d5c322c27c60bc85ed39656921e96cb155185acb57ec211e0a4f946b"
                        },
                        {
                          "id": 8031,
                          "name": "Holger Rune",
                          "hash_image": "83d2e15e2226383eecf7fb3ee54d6fed7bbc832d4822be3a6c8878992a00fb9f"
                        },
                        {
                          "id": 96544,
                          "name": "Alex de Minaur",
                          "hash_image": "c6defec40b3839707da516cf147d879b32f34baab13afd6dd05fb337a0ddc090"
                        },
                        {
                          "id": 140629,
                          "name": "Andrey Rublev",
                          "hash_image": "9dad2488f1810ce6f4e996eb9603d9e2ca0e68ff99b129e62818bffe2b058fb0"
                        },
                        {
                          "id": 140639,
                          "name": "Roger Federer",
                          "hash_image": "1f2c5245520172abb069c976b4d7ac8ae6e8858f58661dcdcc5b1e5a005d490d"
                        },
                        {
                          "id": 140641,
                          "name": "Tomáš Berdych",
                          "hash_image": "77c0496313ffbbe3d210601971f91f6911c4ea212943dd5d37a512a78b7b81f9"
                        },
                        {
                          "id": 140667,
                          "name": "Stan Wawrinka",
                          "hash_image": "94fddb85991e8b3094b3f7aa4c89d155570ca82213c6533fed7a0f2e7e94d9fa"
                        },
                        {
                          "id": 140671,
                          "name": "Kei Nishikori",
                          "hash_image": "25f120e4928752fb988d47c1b16aaf975b38d45088e58ddd3519b80dd90e686c"
                        },
                        {
                          "id": 140675,
                          "name": "David Ferrer",
                          "hash_image": "f27a27d8cf30c7e0ff3736c092e6a61d1538c125194206ab4c650e7880d3d1d4"
                        },
                        {
                          "id": 140681,
                          "name": "Andy Murray",
                          "hash_image": "63ff53c3e4b52fd0ec1a34dc097e21bc19408c2599b8e85e560d947b3689ce1c"
                        },
                        {
                          "id": 140684,
                          "name": "Jo-Wilfried Tsonga",
                          "hash_image": "61f4e45fd6acfaf97eed024dc7e0cd4e5a0b83561066b4140fcebd37528ac973"
                        },
                        {
                          "id": 140687,
                          "name": "Juan Martín del Potro",
                          "hash_image": "6af57db5917c54e39e9d36e9eaa5852124dd6f9f6770eebd3d15aeb7c39a2aa9"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By League"
      }
    },
    "/cup-bracket": {
      "get": {
        "tags": [
          "Cup bracket"
        ],
        "summary": "Cup Bracket",
        "description": "This endpoint allows you to retrieve the cup knock outs.\nYou can use `id` from the `seasons` or `leagues` endpoint to get the wanted cup knock out tree.\n\nFields in rounds:\n\nField | Explanation\n--- | ---\n`order` | The order of the round\n`description` | The description of the round\n`blocks` | The blocks of the round\n`finished` | If the match is finished\n`order` | The order of the block\n`home_team_score` | The score of the home team\n`away_team_score` | The score of the away team\n`has_next_round_link` | If the match has next round\n`match_in_progress` | If the match is in play\n`series_start_date_timestamp` | The start date of the match\n`automatic_progression` | If the match has automatic progression\n`participants` | The participants of the block (match)\n`team_id` | The id of the team\n`winner` | If the team is winner of the block\n`order` | The order of the participants\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet cup knock out based on the **id**<br />`https://tennis.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://tennis.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://tennis.sportmicro.com/cup-bracket?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.cup-bracket.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/cup-bracket"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 5,
                      "name": "Australia",
                      "current_round": 5,
                      "type": 1,
                      "season_id": 50,
                      "season_name": "ATP Challenger Canberra, Australia Men Singles 2026",
                      "league_id": 46,
                      "league_name": "Canberra - Australia",
                      "league_hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab",
                      "rounds": [
                        {
                          "type": 16,
                          "order": 1,
                          "blocks": [
                            {
                              "order": 1,
                              "finished": true,
                              "has_next_round_link": true,
                              "automatic_progression": false,
                              "series_start_date_timestamp": "2026-01-06T03:10:00+00:00"
                            }
                          ],
                          "description": "Round of 32"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Cup Bracket"
      }
    },
    "/matches-by-date-league": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches By Date League",
        "description": "This endpoint allows you to retrieve the matches from a specific date and league. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date** and **league_id**<br />`https://tennis.sportmicro.com/matches-by-date-league?date=eq.{date}&league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date-league.date"
          },
          {
            "$ref": "#/components/parameters/rowFilter.matches-by-date-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-by-date-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "date": "2003-04-26",
                      "league_id": 370,
                      "league_name": "Billie Jean King Cup",
                      "league_hash_image": "cdf0015be1d0ea5aafa681e40daccc52bf575388cc55fc4c8326f1dc16729120",
                      "matches": [
                        {
                          "id": 608109,
                          "name": "Anastasia Myskina vs Karolina Sprem",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T10:00:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 298594,
                          "home_team_id": 352701,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Karolina Sprem",
                          "home_team_name": "Anastasia Myskina",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "83988f31b4e50d638722e47342fd4b6c3fd51a9ad88902ae28793faed0920a90",
                          "home_team_hash_image": "9dead16bbc90f247c3b832860dd06e1c28f19a8a6f40f896e736a8e449e7cc97",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 6,
                          "away_team_period_3_score": 0,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 3,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608117,
                          "name": "Maria Emilia Salerni vs Katarina Srebotnik",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:00:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 175691,
                          "home_team_id": 355632,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Katarina Srebotnik",
                          "home_team_name": "Maria Emilia Salerni",
                          "away_team_score": 2,
                          "home_team_score": 1,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "9e65badfe20146f6af8901f465f5c36ba5dbcc2af2d0a216bc49899d501e3718",
                          "home_team_hash_image": "90c7290b1e7ba6a1d8bafabdc1a6af9c471bf6fefce435967f7b6dce88eefd5d",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 6,
                          "away_team_period_3_score": 6,
                          "home_team_period_1_score": 3,
                          "home_team_period_2_score": 7,
                          "home_team_period_3_score": 1
                        },
                        {
                          "id": 608128,
                          "name": "Elena Dementieva vs Iva Majoli",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T11:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 203847,
                          "home_team_id": 355116,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Iva Majoli",
                          "home_team_name": "Elena Dementieva",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "b3159cb402a49347127b4476dd5c680d57ccc9f29ce596f6e11749d2b437e59d",
                          "home_team_hash_image": "f0e6654fb553ba9b498e0193522899c9e6c05fb76082b8a2c624550f2c307550",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 4,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608129,
                          "name": "Amelie Mauresmo vs Catalina Castano",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 339326,
                          "home_team_id": 355111,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Catalina Castano",
                          "home_team_name": "Amelie Mauresmo",
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "330dbf15ab653b06dbe4fc39af9d62d06c4c7bbe047c392bb53e41cab055dc9b",
                          "home_team_hash_image": "b77c1114cb15d90c435a9188305247ea8acee1f919528f5ab4a3f999537f5dd0",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "home_team_period_1_score": 5
                        },
                        {
                          "id": 608161,
                          "name": "USA vs Czechia",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 75952,
                          "start_time": "2003-04-26T17:00:00+00:00",
                          "season_name": "Fed Cup 2010",
                          "away_team_id": 1537,
                          "home_team_id": 1543,
                          "status_reason": "Ended",
                          "tournament_id": 82396,
                          "away_team_name": "Czechia",
                          "home_team_name": "USA",
                          "away_team_score": 0,
                          "home_team_score": 5,
                          "tournament_name": "Billie Jean King Cup",
                          "away_team_hash_image": "20b411891376d5d0ebf6db5a383a64c9464e8e7658d2478ce4ea0f697d5a93be",
                          "home_team_hash_image": "b92f23b9722318c8e7b471cab5040682ba9cd97bea4a9f43508ffb99591473cb",
                          "tournament_importance": 0
                        },
                        {
                          "id": 608228,
                          "name": "Venus Williams vs Daniela Bedanova",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T17:00:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356523,
                          "home_team_id": 106824,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Daniela Bedanova",
                          "home_team_name": "Venus Williams",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "a5c181d5847aa6e65a54aa79fe5be7e2a1335c16e9b902fa97a98ba45743806f",
                          "home_team_hash_image": "5f2ca7809c1020a5209cc1714ed9f0ef6503b7004762bea3230795d8c1be01ce",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 0,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608234,
                          "status": "canceled",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T14:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 355333,
                          "status_reason": "Canceled",
                          "tournament_id": 28078,
                          "away_team_name": "Tina Pisnik",
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "4106e6bc9f3caba5d8eb0cfb59eac575d4f77d5b6c013d3a5cda83e3956414ec",
                          "tournament_importance": 0
                        },
                        {
                          "id": 608273,
                          "name": "Hanni Nooni vs Flavia Pennetta",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T13:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 113778,
                          "home_team_id": 356517,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Flavia Pennetta",
                          "home_team_name": "Hanni Nooni",
                          "away_team_score": 2,
                          "home_team_score": 0,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "dc673a28895ee98314404cf0e67f888de27ec6568a4dc17acfb1af8958109f2f",
                          "home_team_hash_image": "a66792a87215e4dab88ee5cc8dd939b9768466817eddcc4e97a846ed28fd8d77",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 6,
                          "home_team_period_1_score": 4,
                          "home_team_period_2_score": 3
                        },
                        {
                          "id": 608301,
                          "name": "Sofia Arvidsson vs A. Serra Zanetti",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:00:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356531,
                          "home_team_id": 114291,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "A. Serra Zanetti",
                          "home_team_name": "Sofia Arvidsson",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "f24bec3f2d5b79ab123661fedc95dd8542d1fa11c6b0880fd5b04fa3ad9ad1f9",
                          "home_team_hash_image": "7a316fbb6e4e0f1c7de19db801c5ffdef1badf12bef57566c8c384a02e4ee1bc",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 4,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 3,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608302,
                          "name": "Natalia Gussoni vs Maja Matevzic",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T14:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356191,
                          "home_team_id": 356528,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Maja Matevzic",
                          "home_team_name": "Natalia Gussoni",
                          "away_team_score": 0,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "e9e8f49c8b1b1a0eb6030ed5de6946ae8cc2c65b655ef17b7e431136ac1473c0",
                          "home_team_hash_image": "1a967c1cb436c359ebd5add98392a29ea134a9e05fbd8364ad3afbdea02cbf38",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 4,
                          "away_team_period_2_score": 2,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6
                        },
                        {
                          "id": 608307,
                          "name": "Kim Clijsters vs Evelyn Fauth",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356519,
                          "home_team_id": 188263,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Evelyn Fauth",
                          "home_team_name": "Kim Clijsters",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "07cb57ff94e6af26775922f585f333671ff4788cec5c84549af6936eebcf31a7",
                          "home_team_hash_image": "5874b3502741fdaef5f9db82a6155a21da936d15dffcb739cbaba46b407bf68b",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 6,
                          "away_team_period_2_score": 2,
                          "away_team_period_3_score": 2,
                          "home_team_period_1_score": 4,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608324,
                          "name": "DECHY N. vs Fabiola Zuluaga",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:00:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 356527,
                          "home_team_id": 288509,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Fabiola Zuluaga",
                          "home_team_name": "DECHY N.",
                          "away_team_score": 1,
                          "home_team_score": 2,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "a070faa2c8a60174be5244e8b1fe47adb1cec552451b118a887423bb75e1b910",
                          "home_team_hash_image": "32992601bd0577094024b9e035dcb9fc46eb0299c045e1cda393853248668883",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 1,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 4,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 6
                        },
                        {
                          "id": 608338,
                          "name": "Marlene Weingartner vs Daniela Hantuchova",
                          "status": "finished",
                          "duration": 9000,
                          "season_id": 54683,
                          "start_time": "2003-04-26T12:15:00+00:00",
                          "season_name": "Fed Cup 2011",
                          "away_team_id": 114259,
                          "home_team_id": 356520,
                          "status_reason": "Ended",
                          "tournament_id": 28078,
                          "away_team_name": "Daniela Hantuchova",
                          "home_team_name": "Marlene Weingartner",
                          "away_team_score": 2,
                          "home_team_score": 1,
                          "tournament_name": "Billie Jean King Cup - Singles Matches",
                          "away_team_hash_image": "2b2342ea9c764e6e15c49d10218525593ccedaa2730bdd38899e1986b2536442",
                          "home_team_hash_image": "7ed7332bc3a934dff3fce3c1ade13d4b904e7c0d5c676986e8143021e1a8949f",
                          "tournament_importance": 0,
                          "away_team_period_1_score": 2,
                          "away_team_period_2_score": 7,
                          "away_team_period_3_score": 7,
                          "home_team_period_1_score": 6,
                          "home_team_period_2_score": 6,
                          "home_team_period_3_score": 5
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches By Date League"
      }
    },
    "/arenas-by-country": {
      "get": {
        "tags": [
          "Arenas"
        ],
        "summary": "Arenas By Country",
        "description": "This endpoint allows you to retrieve the arenas from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet arenas from a specific **country_id**<br />`https://tennis.sportmicro.com/arenas-by-country?country_id=eq.{country_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.arenas-by-country.country_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/arenas-by-country"
                  },
                  "type": "array",
                  "example": [
                    {
                      "country_id": 2,
                      "country_name": "Ecuador",
                      "country_hash_image": "1b2fc8498d96e7b58559e39567d46787bdae06cf5898b8deb820bb519ce5b5bf",
                      "arenas": [
                        {
                          "id": 19191,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 19394,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 21651,
                          "name": "Court 2",
                          "hash_image": "cb6814ebf006be151f7844bff7bc086dee9acf974bfca0a10c4338fa3126d1e9"
                        },
                        {
                          "id": 21652,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 21653,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 22336,
                          "name": "Central",
                          "hash_image": "0200f0d078fcfa701ae188a25bfb1809c9488d72ad1bfdeba59b85c6935690fa"
                        },
                        {
                          "id": 22339,
                          "name": "Cancha 2",
                          "hash_image": "255756c7e23862df13db8a4f1e3fbc954cf7ef0262290a108289f0f4b51349dd"
                        },
                        {
                          "id": 22344,
                          "name": "Cancha Central A. Gomez",
                          "hash_image": "c2348477b2286711fa3fe2bc4dd2f1989addc028378f4a59894362d05432713a"
                        },
                        {
                          "id": 22347,
                          "name": "Cancha N. Lapeni",
                          "hash_image": "93d42083c207df52c86e6f45d07e38fd70f36da99ae2be617d8d8ac1905a1f12"
                        },
                        {
                          "id": 22349,
                          "name": "Cancha P. Segura",
                          "hash_image": "2fb9d42f181a6cf5234eb87b4cad80a4fb57924fb440d89b8b2d6048bf5be4ec"
                        },
                        {
                          "id": 22350,
                          "name": "Cancha R. Viver",
                          "hash_image": "cfed9c467e015c1941832259985dee75dc048822605036edb0b0cbd13c163b06"
                        },
                        {
                          "id": 22362,
                          "name": "Cancha Central",
                          "hash_image": "06566756c849ef2aee329b3668df88bc1f0b4f7d0121795acf8070c316f9b3c9"
                        },
                        {
                          "id": 22365,
                          "name": "Cancha 3",
                          "hash_image": "005e3f04b6fd4757afac165b0fff8f5baf93112b20c3bb1eb44962aadcc2adc3"
                        },
                        {
                          "id": 22366,
                          "name": "Cancha 4",
                          "hash_image": "d10e1d8bcea98d6807f826e4ff66aa1b28f77525528231799830bbfbf3dc5619"
                        },
                        {
                          "id": 22381,
                          "name": "Cancha 5",
                          "hash_image": "82e9518e16c607487c19988b11da6f072cc4126ee6ea361162a30641936b80a9"
                        },
                        {
                          "id": 22387,
                          "name": "Central",
                          "hash_image": "0200f0d078fcfa701ae188a25bfb1809c9488d72ad1bfdeba59b85c6935690fa"
                        },
                        {
                          "id": 23093,
                          "name": "Cancha 1",
                          "hash_image": "1f61e4fd50c846a85b00e1b3a4e22180c520f5746b8c0afa1b71c2c01e7f7d28"
                        },
                        {
                          "id": 25383,
                          "name": "Quito Tenis & Golf Club",
                          "hash_image": "d19e46351aa7e0f4e170ee6e3385ed12705ad7b8fa238d7e7c0e65d889e1698a"
                        },
                        {
                          "id": 25712,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 25914,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 25942,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 27359,
                          "name": "Cancha Raul Viver",
                          "hash_image": "a1a8675f1d0b0972fd40bcc7069921675db5fd2bdafa74d9bded7d03bda2f7c5"
                        },
                        {
                          "id": 27612,
                          "name": "Cancha Raul Viver",
                          "hash_image": "a1a8675f1d0b0972fd40bcc7069921675db5fd2bdafa74d9bded7d03bda2f7c5"
                        },
                        {
                          "id": 27873,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 28142,
                          "name": "Court 10",
                          "hash_image": "7c4b7b60354ab36e81414d30c48efcaab6f6a951f3e40a0d2143ad8b50946076"
                        },
                        {
                          "id": 28160,
                          "name": "Court 9 Raul Viver",
                          "hash_image": "7ff4c5fb4defd9a57313a252240322c1cd55ebfed546578035d91605d82bb37a"
                        },
                        {
                          "id": 28327,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 28341,
                          "name": "Center Court",
                          "hash_image": "f8308bdf4a12ae4cda64c87867012f6dade2aefee64e1dca305acf35db9d92df"
                        },
                        {
                          "id": 28373,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 28677,
                          "name": "Club Rancho San Francisco",
                          "hash_image": "ffb2d76c25be7cc9fbddbf0acc6a9e7a93053b457fd327a272d08cb8acc36c2b"
                        },
                        {
                          "id": 30278,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 30286,
                          "name": "Court 2",
                          "hash_image": "cb6814ebf006be151f7844bff7bc086dee9acf974bfca0a10c4338fa3126d1e9"
                        },
                        {
                          "id": 30287,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 30294,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 30317,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 30324,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 30331,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 30450,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 30454,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 30457,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 32454,
                          "name": "Cancha 8",
                          "hash_image": "61b541a225d2a5bf0053470b6728ea2e1a74b885ebc7596ebf27b183053112f1"
                        },
                        {
                          "id": 32455,
                          "name": "Cancha 2",
                          "hash_image": "255756c7e23862df13db8a4f1e3fbc954cf7ef0262290a108289f0f4b51349dd"
                        },
                        {
                          "id": 32456,
                          "name": "Stadium",
                          "hash_image": "7687334e040a29d98cbd755aaa38227429ce0baaca1db556539bc06fa726f812"
                        },
                        {
                          "id": 32499,
                          "name": "Cancha Produbanco",
                          "hash_image": "5587b7aae7ffe2e1a3e40136cc8d1e764125cacc8c48d0cf2fe86dd936e702f1"
                        },
                        {
                          "id": 32518,
                          "name": "Court 2",
                          "hash_image": "cb6814ebf006be151f7844bff7bc086dee9acf974bfca0a10c4338fa3126d1e9"
                        },
                        {
                          "id": 32520,
                          "name": "Cancha Quiport",
                          "hash_image": "6120b06d2c46619106b81157fe06d4f89947eadc0bea9a7abd57c06b41122211"
                        },
                        {
                          "id": 32591,
                          "name": "Cancha 1",
                          "hash_image": "1f61e4fd50c846a85b00e1b3a4e22180c520f5746b8c0afa1b71c2c01e7f7d28"
                        },
                        {
                          "id": 32720,
                          "name": "Court 15",
                          "hash_image": "aa95992aef10516a80658c2039d3860bde34613f79df679cf0642b234fdcf1bd"
                        },
                        {
                          "id": 32721,
                          "name": "Court 14",
                          "hash_image": "7e59a4fa50d18c60ea6ce75ccaf1e65fa50d97f1ad425d9fdc6dedc300fb6db5"
                        },
                        {
                          "id": 33049,
                          "name": "Court 6",
                          "hash_image": "62edaebe5a8911b408691dd33f83fcad2476610b9342c21df6b51955089e176d"
                        },
                        {
                          "id": 33093,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 33182,
                          "name": "Court 4",
                          "hash_image": "624169aaf3de00ca5eae30ac70acd36221cc0fca2ea7d736d8667606fa57ca10"
                        },
                        {
                          "id": 33197,
                          "name": "Court 2",
                          "hash_image": "cb6814ebf006be151f7844bff7bc086dee9acf974bfca0a10c4338fa3126d1e9"
                        },
                        {
                          "id": 33206,
                          "name": "Court 3",
                          "hash_image": "555c6b8779834474deef8c62773daf8921875fc691f7c474d5827be06a65b674"
                        },
                        {
                          "id": 33210,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 34209,
                          "name": "Cancha 2",
                          "hash_image": "255756c7e23862df13db8a4f1e3fbc954cf7ef0262290a108289f0f4b51349dd"
                        },
                        {
                          "id": 34259,
                          "name": "Cancha 1",
                          "hash_image": "1f61e4fd50c846a85b00e1b3a4e22180c520f5746b8c0afa1b71c2c01e7f7d28"
                        },
                        {
                          "id": 39824,
                          "name": "Estadio",
                          "hash_image": "715e168f4e6041e8b52c2414aeb49adc02970a955338b163b0ad05386ff34e6d"
                        },
                        {
                          "id": 40026,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 40167,
                          "name": "Match Court",
                          "hash_image": "623c5710f9c2d28c60af417bb49bc777c7d1af3344343f1d6707f1d9aabf9ef5"
                        },
                        {
                          "id": 40173,
                          "name": "Salinas Golf & Tennis Club",
                          "hash_image": "cb99ac5d471585da1d22665ac5d94845923ebcd202ec7e6405c23afe4859d3dd"
                        },
                        {
                          "id": 40937,
                          "name": "Cancha 6",
                          "hash_image": "07a6ea792e5901d0064e7a864f0efcef50a4a3cf5df7ba82fad5ebfd335e4a74"
                        },
                        {
                          "id": 40950,
                          "name": "Cancha 3",
                          "hash_image": "005e3f04b6fd4757afac165b0fff8f5baf93112b20c3bb1eb44962aadcc2adc3"
                        },
                        {
                          "id": 40954,
                          "name": "Cancha 7",
                          "hash_image": "4a09f219a3c3ec803e882b6fc0913807d93c795a53dcaf8e62f3886098af3da2"
                        },
                        {
                          "id": 40955,
                          "name": "Cancha 4",
                          "hash_image": "d10e1d8bcea98d6807f826e4ff66aa1b28f77525528231799830bbfbf3dc5619"
                        },
                        {
                          "id": 41823,
                          "name": "Court 12",
                          "hash_image": "58f5262e95581dc41e1b1057cdf62084702e5ac7e05ef4b63f101867ab0cf42d"
                        },
                        {
                          "id": 41829,
                          "name": "Court 11",
                          "hash_image": "35c42c898d3c3275362d9d2abc3e19910d6c66e638819f51856e4cb9e67b7c44"
                        },
                        {
                          "id": 41842,
                          "name": "Court 6",
                          "hash_image": "62edaebe5a8911b408691dd33f83fcad2476610b9342c21df6b51955089e176d"
                        },
                        {
                          "id": 41865,
                          "name": "Court 13",
                          "hash_image": "6a2cb2a54aa86202d432e0e546b1657a80c489977f7df4ce06623a0b66108805"
                        },
                        {
                          "id": 41895,
                          "name": "Court 7",
                          "hash_image": "96ea8e70b6d53415eee9bf1d384ac6073cde6cfdb1a662d74b348b426bf0c5f8"
                        },
                        {
                          "id": 41896,
                          "name": "Court 8",
                          "hash_image": "49467bd424e8b6caee5d7c105e8db2bb3502554a62d3a2200ccf4daea76436db"
                        },
                        {
                          "id": 42262,
                          "name": "Cancha Central",
                          "hash_image": "06566756c849ef2aee329b3668df88bc1f0b4f7d0121795acf8070c316f9b3c9"
                        },
                        {
                          "id": 42952,
                          "name": "Court 5",
                          "hash_image": "0b465524ee7a2d2fad674ec725126b1add421a3c36deea7450daf96a3b71b90c"
                        },
                        {
                          "id": 44936,
                          "name": "Cancha Central",
                          "hash_image": "06566756c849ef2aee329b3668df88bc1f0b4f7d0121795acf8070c316f9b3c9"
                        },
                        {
                          "id": 44959,
                          "name": "Cancha 1",
                          "hash_image": "1f61e4fd50c846a85b00e1b3a4e22180c520f5746b8c0afa1b71c2c01e7f7d28"
                        },
                        {
                          "id": 44985,
                          "name": "Cancha 2",
                          "hash_image": "255756c7e23862df13db8a4f1e3fbc954cf7ef0262290a108289f0f4b51349dd"
                        },
                        {
                          "id": 45224,
                          "name": "COURT 3",
                          "hash_image": "efdb287253d979afbe3925676489069c7d145b58f279084206db8500340e6131"
                        },
                        {
                          "id": 45226,
                          "name": "Court 6",
                          "hash_image": "62edaebe5a8911b408691dd33f83fcad2476610b9342c21df6b51955089e176d"
                        },
                        {
                          "id": 45720,
                          "name": "Court 1",
                          "hash_image": "8b90853149c8164a23783e6b0ff35afd6b85e8f9cf0108086fb7fa05a466ff32"
                        },
                        {
                          "id": 47940,
                          "name": "Cancha 4",
                          "hash_image": "d10e1d8bcea98d6807f826e4ff66aa1b28f77525528231799830bbfbf3dc5619"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Arenas By Country"
      }
    },
    "/teams-by-tournament": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By Tournament",
        "description": "This endpoint allows you to retrieve the teams from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **tournament_id**<br />`https://tennis.sportmicro.com/teams-by-tournament?tournament_id=eq.{tournament_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-tournament.tournament_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-tournament"
                  },
                  "type": "array",
                  "example": [
                    {
                      "tournament_id": 85,
                      "tournament_name": "s-Hertogenbosch - Netherlands - Doubles",
                      "teams": [
                        {
                          "team_id": 169861,
                          "team_name": "R. Haase / M. Middelkoop",
                          "team_hash_image": "6f43fe0222b77ee9641645f0b08865e726fe80170b023e1f23829f3a20318a52"
                        },
                        {
                          "team_id": 302648,
                          "team_name": "J. Peralta / D. Vega Hernandez",
                          "team_hash_image": "144ae359dbafa58040303a458988dee4159c968e2e632e0c153c511a71a1019a"
                        },
                        {
                          "team_id": 302611,
                          "team_name": "T. Griekspoor / D. Medvedev",
                          "team_hash_image": "cd4221004aeb68053daf2afa2192f375a825e4c94d1a3ac205c423ec3f5ef06f"
                        },
                        {
                          "team_id": 302513,
                          "team_name": "G. Brouwer / T. Van Rijthoven",
                          "team_hash_image": "21597d2f5bf33a52ebca8406e8924ab258e2b4a137ea3b9c0d1c5652515d44a3"
                        },
                        {
                          "team_id": 302630,
                          "team_name": "B. Nakashima / E. Ruusuvuori",
                          "team_hash_image": "77711a8984cb012b2aac64df0a58d27791b25bee40ece6a08e08642499ed8574"
                        },
                        {
                          "team_id": 149668,
                          "team_name": "J. De Jong / B. Stevens",
                          "team_hash_image": "5117a9a13d00a8456b41065a9ba9ef051907cfb8f408eced2b7fdb493b236fad"
                        },
                        {
                          "team_id": 123153,
                          "team_name": "H. Nys / E. Roger-Vasselin",
                          "team_hash_image": "725d1ca6a2eed5d8f7008539858f3c4e5347bcdfe95063d19b2b27daaa159cde"
                        },
                        {
                          "team_id": 163644,
                          "team_name": "L. Saville / A. de Minaur",
                          "team_hash_image": "47deb794336aea59da48054044ddcec9184b6429d134ab27ee71263aec7b7c86"
                        },
                        {
                          "team_id": 118,
                          "team_name": "Daniil Medvedev",
                          "team_hash_image": "27da025d6deeab70e36faa3358e8339424f0dd7488f8034c7fe0660c5a56cfa6"
                        },
                        {
                          "team_id": 167283,
                          "team_name": "T. Fritz / T. Paul",
                          "team_hash_image": "d5ffafe8a7fad4b9de702ac8d6c02370eb366ebd58c40df11632fdc6f631287a"
                        },
                        {
                          "team_id": 96544,
                          "team_name": "Alex de Minaur",
                          "team_hash_image": "c6defec40b3839707da516cf147d879b32f34baab13afd6dd05fb337a0ddc090"
                        },
                        {
                          "team_id": 133992,
                          "team_name": "Pierre-Hugues Herbert",
                          "team_hash_image": "4d74816b59ae77ec0eaeb00e774bf78ec07d7043f3e823336c19439ccfade742"
                        },
                        {
                          "team_id": 139113,
                          "team_name": "Robin Haase",
                          "team_hash_image": "9bad2fd61a05b99850ab1b88d0bf533399c4cc611f99183cf8ed40d671da1851"
                        },
                        {
                          "team_id": 282933,
                          "team_name": "R. Jebavy / D. Molchanov",
                          "team_hash_image": "22a847fb9755d8431ecc8863c2ad0078d508d93a8457400fd7a309a913a6f8fc"
                        },
                        {
                          "team_id": 146110,
                          "team_name": "Ilya Ivashka",
                          "team_hash_image": "997c6f213a6575ce325f9749f8bdc059b145f6b14dad88cf3edb174b0dad1432"
                        },
                        {
                          "team_id": 292316,
                          "team_name": "I. Ivashka / S. Kwon",
                          "team_hash_image": "b48a7f793e30a08da1d52fe4764aefd421bb6b88d9aba5c9889f9e1a6d23ec0d"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By Tournament"
      }
    },
    "/matches-highlights": {
      "get": {
        "tags": [
          "Matches"
        ],
        "summary": "Matches Highlights",
        "description": "This endpoint allows you to retrieve the highlights from matches.\nIt has all social media posts about the match.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet highlights from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-highlights?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.matches-highlights.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/matches-highlights"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "match_id": 1,
                      "title": "J. Sinner 3 - 0 A. Rinderknech",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=7tVWYMyG7pY",
                      "created_at": "2025-05-27T08:00:10+00:00",
                      "source_url": "https://www.youtube.com/watch?v=7tVWYMyG7pY"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Matches Highlights"
      }
    },
    "/classes": {
      "get": {
        "tags": [
          "Classes"
        ],
        "summary": "Classes",
        "description": "This endpoint allows you to retrieve the classes.\nYou can use the `alpha` parameter to get a specific class as a country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the category by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet classes<br />`https://tennis.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://tennis.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://tennis.sportmicro.com/classes?alpha=eq.{alpha}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.classes.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.classes.alpha"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/classes"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 28,
                      "name": "Challenger",
                      "flag": "challenger",
                      "importance": 6,
                      "hash_image": "96ae6b1996feda3127c70abd756b5612bb35a4e69ecbee3b1c538fc0f861b13c",
                      "matches_live_count": 0,
                      "last_match_date": "2026-05-07T08:00:00+00:00",
                      "next_match_date": "2026-05-07T09:00:00+00:00"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Classes"
      }
    },
    "/seasons-rounds": {
      "get": {
        "tags": [
          "Seasons"
        ],
        "summary": "Seasons Rounds",
        "description": "This endpoint allows you to retrieve the rounds from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet rounds from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-rounds?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.seasons-rounds.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/seasons-rounds"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 50,
                      "season_name": "ATP Challenger Canberra, Australia Men Singles 2026",
                      "rounds": [
                        {
                          "id": 998,
                          "name": "Round of 16",
                          "round": 5
                        },
                        {
                          "id": 999,
                          "name": "Quarterfinals",
                          "round": 27
                        },
                        {
                          "id": 1000,
                          "name": "Semifinals",
                          "round": 28
                        },
                        {
                          "id": 1001,
                          "name": "Final",
                          "round": 29
                        },
                        {
                          "id": 996,
                          "name": "Qualification Final",
                          "round": 250,
                          "end_time": "2026-01-05",
                          "start_time": "2026-01-04"
                        },
                        {
                          "id": 997,
                          "name": "Round of 32",
                          "round": 6,
                          "end_time": "2026-01-06",
                          "start_time": "2026-01-05"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Seasons Rounds"
      }
    },
    "/agg-news-matches": {
      "get": {
        "tags": [
          "News"
        ],
        "summary": "Agg News Matches",
        "description": "This endpoint allows you to retrieve aggregated news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://tennis.sportmicro.com/agg-news-matches?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.agg-news-matches.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/agg-news-matches"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "match_id": 827692,
                      "title": "Entrée en scène d'Alexis Galarneau et Benoît Paire - L'Express - L'Express de Drummondville",
                      "link": "https://www.journalexpress.ca/2023/11/13/entree-en-scene-alexis-galarneau-benoit-paire-challenger-tennis-drummondville/",
                      "thumbnail_url": "https://www.journalexpress.ca/wp-content/uploads/sites/6/2022/11/Challenger-tennis-divers-14-novembre-2022-3-scaled.jpg",
                      "description": "TENNIS. Pas moins de neuf Canadiens tentaient d’obtenir leur place dans le tableau principal du huitième Challenger Banque Nationale de Drummondville, dimanche. Le moins que l’on puisse dire, c’est que…",
                      "published_date": "2023-11-13T14:47:48+00:00",
                      "source_url": "https://www.journalexpress.ca",
                      "source": "L'Express de Drummondville"
                    },
                    {
                      "id": 7,
                      "match_id": 827692,
                      "title": "Challenger Danderyd, Kobe, Montevideo, Champaign e ... - LiveTennis.it",
                      "link": "https://www.livetennis.it/post/400905/challenger-danderyd-kobe-montevideo-champaign-e-drummondville-i-risultati-con-il-dettaglio-del-day-1-live/",
                      "thumbnail_url": "https://static.livetennis.it/photo/MoroniFilippo_1.jpg",
                      "description": "CHALLENGER Danderyd (Svezia) – TD Qualificazione – 1° Turno Md, cemento (al coperto) Court 2 – Ora italiana: 10:00 (ora locale: 10:00 am) 1.",
                      "published_date": "2023-11-13T07:11:09+00:00",
                      "source_url": "https://www.livetennis.it",
                      "source": "LiveTennis.it"
                    },
                    {
                      "id": 14,
                      "match_id": 827692,
                      "title": "Resultados ATP Challenger Drummondville 2023 - Canal Tenis",
                      "link": "https://canaltenis.com/resultados-atp-challenger-drummondville-2023/",
                      "thumbnail_url": "https://canaltenis.com/wp-content/uploads/2023/11/Paire.jpg",
                      "description": "Seguimos los resultados del ATP Challenger 75 de Drummondville, a jugarse entre el 13 y 19 de noviembre en la ciudad canadiense",
                      "published_date": "2023-11-13T14:37:43+00:00",
                      "source_url": "https://canaltenis.com",
                      "source": "Canal Tenis"
                    },
                    {
                      "id": 532,
                      "match_id": 827692,
                      "title": "H2H, prediction of Aziz Dougaz vs Charles Broom in Drummondville Challenger with odds, preview, pick | 15th... - Tennis Tonic",
                      "link": "https://tennistonic.com/tennis-news/641528/h2h-prediction-of-aziz-dougaz-vs-charles-broom-in-drummondville-challenger-with-odds-preview-pick-15th-november-2023/",
                      "thumbnail_url": "https://tennistonic.com/wp-content/uploads/2023/11/Prediction-and-head-to-head-Aziz-Dougaz-vs.-Charles-Broom-xhOLIBzZvP.jpg",
                      "description": "PREVIEW. Drummondville Challenger. Dougaz and Broom will play each other in the 2nd round of the Drummondville Challenger. See the prediction, H2H stats, odds, and preview of their upcoming match on Wednesday the 15th of November",
                      "published_date": "2023-11-15T06:13:13+00:00",
                      "source_url": "https://tennistonic.com",
                      "source": "Tennis Tonic"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Agg News Matches"
      }
    },
    "/media-teams": {
      "get": {
        "tags": [
          "Media"
        ],
        "summary": "Media Teams",
        "description": "This endpoint allows you to retrieve the media from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **team_id**<br />`https://tennis.sportmicro.com/media-teams?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.media-teams.team_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/media-teams"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 368,
                      "team_id": 22453,
                      "title": "J. Sinner 2 - 3 C. Alcaraz",
                      "subtitle": "Full Highlights",
                      "url": "https://www.youtube.com/watch?v=mi5gmBr5jok",
                      "thumbnail_url": "https://i.ytimg.com/vi/mi5gmBr5jok/hqdefault.jpg",
                      "date_published": "2025-06-08T19:48:11+00:00",
                      "channel_url": "https://www.youtube.com/watch?v=mi5gmBr5jok"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Media Teams"
      }
    },
    "/tv-channels": {
      "get": {
        "tags": [
          "Tv channels"
        ],
        "summary": "Tv Channels",
        "description": "This endpoint allows you to retrieve the tv channels.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a week.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tv channels<br />`https://tennis.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://tennis.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://tennis.sportmicro.com/tv-channels?id=eq.{id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.tv-channels.id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/tv-channels"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "5Sport"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Tv Channels"
      }
    },
    "/standings": {
      "get": {
        "tags": [
          "Standings"
        ],
        "summary": "Standings",
        "description": "This endpoint allows you to retrieve the standings.\nFor the type argument you can search by: **home**, **away** and **total**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet standings<br />`https://tennis.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://tennis.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get standing from a specific **league_id**, **season_id** and **type**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.standings.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.type"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.season_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.standings.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/standings"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 676,
                      "tournament_id": 618,
                      "tournament_name": "UTR PTT Cordoba Men +H 04 - Group A",
                      "type": "total",
                      "name": "2025 Cordoba Men +H 04, Group A",
                      "season_id": 642,
                      "season_name": "UTR PTT Yokohama Men 05 2025",
                      "league_id": 295,
                      "league_name": "UTR PTT Cordoba Men +H 04",
                      "competitors": [
                        {
                          "wins": 4,
                          "losses": 0,
                          "matches": 4,
                          "team_id": 862,
                          "position": 1,
                          "team_name": "Lorenzo Joaquin Rodriguez",
                          "team_hash_image": "7ad1b60cdbbfddcf8a102d034b5264484733aa35c11970b0ad64ff399ab63946"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Standings"
      }
    },
    "/referees-by-league": {
      "get": {
        "tags": [
          "Referees"
        ],
        "summary": "Referees By League",
        "description": "This endpoint allows you to retrieve the referees from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **league_id**<br />`https://tennis.sportmicro.com/referees-by-league?league_id=eq.{league_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.referees-by-league.league_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/referees-by-league"
                  },
                  "type": "array",
                  "example": [
                    {
                      "league_id": 46,
                      "league_name": "Canberra - Australia",
                      "league_hash_image": "b079491aa67501ccac4a8c8b8f94ca7e3a18fc1b18b8aa6ecfbc7a42f907f7ab"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Referees By League"
      }
    },
    "/teams-seasons": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams Seasons",
        "description": "This endpoint allows you to retrieve the seasons from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **team_id**<br />`https://tennis.sportmicro.com/teams-seasons?team_id=eq.{team_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-seasons.team_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-seasons"
                  },
                  "type": "array",
                  "example": [
                    {
                      "team_id": 91,
                      "team_name": "Vit Kopřiva",
                      "team_hash_image": "09f5d21867b1cc51a3e677e449bc131dad33cdd29dab441db11a175027c4d7f0",
                      "tournaments": [
                        {
                          "seasons": [
                            {
                              "season_id": 10740,
                              "season_name": "2025"
                            }
                          ],
                          "tournament_id": 3677,
                          "tournament_name": "Wimbledon - London - GB - Qualifying - 1st - 2nd Round"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams Seasons"
      }
    },
    "/teams-by-season": {
      "get": {
        "tags": [
          "Teams"
        ],
        "summary": "Teams By Season",
        "description": "This endpoint allows you to retrieve the teams from a specific season.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **season_id**<br />`https://tennis.sportmicro.com/teams-by-season?season_id=eq.{season_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.teams-by-season.season_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/teams-by-season"
                  },
                  "type": "array",
                  "example": [
                    {
                      "season_id": 109,
                      "season_name": "ATP World Tour Finals Men Singles 2024",
                      "teams": [
                        {
                          "team_id": 138,
                          "team_name": "Jannik Sinner",
                          "team_hash_image": "b1f4dc58d39cd76fa6753046391d74c72fcc68c72200d5e5461b944748c6703e"
                        },
                        {
                          "team_id": 2122,
                          "team_name": "Carlos Alcaraz",
                          "team_hash_image": "5cae860b276791caf24fea7721baa4f1da6c6c4f70dad9aa8110ef1ea12b7276"
                        },
                        {
                          "team_id": 7826,
                          "team_name": "Felix Auger-Aliassime",
                          "team_hash_image": "4d4197ee1857babcd4e5f482d557d05bc917d532a031f7cc147c0ca0fc489a74"
                        },
                        {
                          "team_id": 8012,
                          "team_name": "Grigor Dimitrov",
                          "team_hash_image": "b1a61665d5c322c27c60bc85ed39656921e96cb155185acb57ec211e0a4f946b"
                        },
                        {
                          "team_id": 8031,
                          "team_name": "Holger Rune",
                          "team_hash_image": "83d2e15e2226383eecf7fb3ee54d6fed7bbc832d4822be3a6c8878992a00fb9f"
                        },
                        {
                          "team_id": 96544,
                          "team_name": "Alex de Minaur",
                          "team_hash_image": "c6defec40b3839707da516cf147d879b32f34baab13afd6dd05fb337a0ddc090"
                        },
                        {
                          "team_id": 140629,
                          "team_name": "Andrey Rublev",
                          "team_hash_image": "9dad2488f1810ce6f4e996eb9603d9e2ca0e68ff99b129e62818bffe2b058fb0"
                        },
                        {
                          "team_id": 140639,
                          "team_name": "Roger Federer",
                          "team_hash_image": "1f2c5245520172abb069c976b4d7ac8ae6e8858f58661dcdcc5b1e5a005d490d"
                        },
                        {
                          "team_id": 140641,
                          "team_name": "Tomáš Berdych",
                          "team_hash_image": "77c0496313ffbbe3d210601971f91f6911c4ea212943dd5d37a512a78b7b81f9"
                        },
                        {
                          "team_id": 140667,
                          "team_name": "Stan Wawrinka",
                          "team_hash_image": "94fddb85991e8b3094b3f7aa4c89d155570ca82213c6533fed7a0f2e7e94d9fa"
                        },
                        {
                          "team_id": 140671,
                          "team_name": "Kei Nishikori",
                          "team_hash_image": "25f120e4928752fb988d47c1b16aaf975b38d45088e58ddd3519b80dd90e686c"
                        },
                        {
                          "team_id": 140675,
                          "team_name": "David Ferrer",
                          "team_hash_image": "f27a27d8cf30c7e0ff3736c092e6a61d1538c125194206ab4c650e7880d3d1d4"
                        },
                        {
                          "team_id": 140681,
                          "team_name": "Andy Murray",
                          "team_hash_image": "63ff53c3e4b52fd0ec1a34dc097e21bc19408c2599b8e85e560d947b3689ce1c"
                        },
                        {
                          "team_id": 140684,
                          "team_name": "Jo-Wilfried Tsonga",
                          "team_hash_image": "61f4e45fd6acfaf97eed024dc7e0cd4e5a0b83561066b4140fcebd37528ac973"
                        },
                        {
                          "team_id": 140687,
                          "team_name": "Juan Martín del Potro",
                          "team_hash_image": "6af57db5917c54e39e9d36e9eaa5852124dd6f9f6770eebd3d15aeb7c39a2aa9"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Teams By Season"
      }
    },
    "/odds/match-winner": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Match Winner",
        "description": "This endpoint allows you to retrieve the odds from match winner market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.match-winner.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.match-winner.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/match-winner"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 65,
                      "is_live": false,
                      "periods": [
                        {
                          "period_type": "1st Set",
                          "odds": [
                            {
                              "id": 10884106,
                              "bookmaker_id": 2,
                              "bookmaker_name": "1xBet",
                              "bookmaker_order": 3,
                              "home": 1.43,
                              "home_movement": 1,
                              "away": 2.684,
                              "away_movement": -1,
                              "payout": 93.29
                            },
                            {
                              "id": 10884118,
                              "bookmaker_id": 3,
                              "bookmaker_name": "22Bet",
                              "bookmaker_order": 4,
                              "home": 1.43,
                              "home_movement": 1,
                              "away": 2.684,
                              "away_movement": -1,
                              "payout": 93.29
                            },
                            {
                              "id": 10884111,
                              "bookmaker_id": 4,
                              "bookmaker_name": "BetVictor",
                              "bookmaker_order": 6,
                              "home": 1.3,
                              "home_movement": 0,
                              "away": 3.2,
                              "away_movement": 0,
                              "payout": 92.44
                            },
                            {
                              "id": 10884112,
                              "bookmaker_id": 9,
                              "bookmaker_name": "Marathonbet",
                              "bookmaker_order": 16,
                              "home": 1.42,
                              "home_movement": 1,
                              "away": 2.68,
                              "away_movement": -1,
                              "payout": 92.82
                            },
                            {
                              "id": 10884114,
                              "bookmaker_id": 12,
                              "bookmaker_name": "Megapari",
                              "bookmaker_order": 21,
                              "home": 1.43,
                              "home_movement": 1,
                              "away": 2.684,
                              "away_movement": -1,
                              "payout": 93.29
                            },
                            {
                              "id": 10884123,
                              "bookmaker_id": 17,
                              "bookmaker_name": "Betway",
                              "bookmaker_order": 32,
                              "home": 1.35,
                              "home_movement": 1,
                              "away": 2.75,
                              "away_movement": -1,
                              "payout": 90.55
                            },
                            {
                              "id": 10884117,
                              "bookmaker_id": 23,
                              "bookmaker_name": "Parimatch",
                              "bookmaker_order": 67,
                              "home": 1.3,
                              "home_movement": 0,
                              "away": 3.2,
                              "away_movement": 0,
                              "payout": 92.44
                            },
                            {
                              "id": 10884115,
                              "bookmaker_id": 24,
                              "bookmaker_name": "1Bet",
                              "bookmaker_order": 70,
                              "home": 1.31,
                              "home_movement": 1,
                              "away": 3.1,
                              "away_movement": 1,
                              "payout": 92.09
                            },
                            {
                              "id": 10884155,
                              "bookmaker_id": 34,
                              "bookmaker_name": "Vbet Sport",
                              "bookmaker_order": 82,
                              "home": 1.4,
                              "home_movement": 1,
                              "away": 2.8,
                              "away_movement": -1,
                              "payout": 93.33
                            },
                            {
                              "id": 10884110,
                              "bookmaker_id": 56,
                              "bookmaker_name": "Pinnacle",
                              "bookmaker_order": 7,
                              "home": 1.367,
                              "home_movement": 1,
                              "away": 2.93,
                              "away_movement": 1,
                              "payout": 93.21
                            },
                            {
                              "id": 10884116,
                              "bookmaker_id": 59,
                              "bookmaker_name": "Betobet",
                              "bookmaker_order": 68,
                              "home": 1.31,
                              "home_movement": 1,
                              "away": 3.1,
                              "away_movement": 1,
                              "payout": 92.09
                            },
                            {
                              "id": 10884160,
                              "bookmaker_id": 61,
                              "bookmaker_name": "Weltbet",
                              "bookmaker_order": 95,
                              "home": 1.31,
                              "home_movement": 1,
                              "away": 3.1,
                              "away_movement": 1,
                              "payout": 92.09
                            }
                          ]
                        },
                        {
                          "period_type": "2nd Set",
                          "odds": [
                            {
                              "id": 10884127,
                              "bookmaker_id": 4,
                              "bookmaker_name": "BetVictor",
                              "bookmaker_order": 6,
                              "home": 1.333,
                              "home_movement": 0,
                              "away": 3,
                              "away_movement": 0,
                              "payout": 92.29
                            },
                            {
                              "id": 10884124,
                              "bookmaker_id": 23,
                              "bookmaker_name": "Parimatch",
                              "bookmaker_order": 67,
                              "home": 1.333,
                              "home_movement": 0,
                              "away": 3,
                              "away_movement": 0,
                              "payout": 92.29
                            },
                            {
                              "id": 10884119,
                              "bookmaker_id": 49,
                              "bookmaker_name": "FanDuel",
                              "bookmaker_order": 56,
                              "home": 1.33,
                              "home_movement": 1,
                              "away": 3.05,
                              "away_movement": -1,
                              "payout": 92.61
                            }
                          ]
                        },
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 10884101,
                              "bookmaker_id": 2,
                              "bookmaker_name": "1xBet",
                              "bookmaker_order": 3,
                              "home": 1.29,
                              "home_movement": 1,
                              "away": 3.32,
                              "away_movement": -1,
                              "payout": 92.9
                            },
                            {
                              "id": 10884103,
                              "bookmaker_id": 3,
                              "bookmaker_name": "22Bet",
                              "bookmaker_order": 4,
                              "home": 1.29,
                              "home_movement": 1,
                              "away": 3.32,
                              "away_movement": -1,
                              "payout": 92.9
                            },
                            {
                              "id": 10884109,
                              "bookmaker_id": 4,
                              "bookmaker_name": "BetVictor",
                              "bookmaker_order": 6,
                              "home": 1.25,
                              "home_movement": -1,
                              "away": 3.6,
                              "away_movement": 1,
                              "payout": 92.78
                            },
                            {
                              "id": 10884102,
                              "bookmaker_id": 9,
                              "bookmaker_name": "Marathonbet",
                              "bookmaker_order": 16,
                              "home": 1.285,
                              "home_movement": 1,
                              "away": 3.3,
                              "away_movement": -1,
                              "payout": 92.49
                            },
                            {
                              "id": 10884100,
                              "bookmaker_id": 10,
                              "bookmaker_name": "Interwetten",
                              "bookmaker_order": 18,
                              "home": 1.27,
                              "home_movement": 0,
                              "away": 3.1,
                              "away_movement": 0,
                              "payout": 90.09
                            },
                            {
                              "id": 10884108,
                              "bookmaker_id": 12,
                              "bookmaker_name": "Megapari",
                              "bookmaker_order": 21,
                              "home": 1.29,
                              "home_movement": 1,
                              "away": 3.32,
                              "away_movement": -1,
                              "payout": 92.9
                            },
                            {
                              "id": 10884105,
                              "bookmaker_id": 13,
                              "bookmaker_name": "Betano",
                              "bookmaker_order": 22,
                              "home": 1.25,
                              "home_movement": -1,
                              "away": 3.55,
                              "away_movement": 1,
                              "payout": 92.45
                            },
                            {
                              "id": 10884104,
                              "bookmaker_id": 16,
                              "bookmaker_name": "LeoVegas Sport",
                              "bookmaker_order": 31,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            },
                            {
                              "id": 10884107,
                              "bookmaker_id": 17,
                              "bookmaker_name": "Betway",
                              "bookmaker_order": 32,
                              "home": 1.25,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 89.89
                            },
                            {
                              "id": 10884153,
                              "bookmaker_id": 23,
                              "bookmaker_name": "Parimatch",
                              "bookmaker_order": 67,
                              "home": 1.25,
                              "home_movement": -1,
                              "away": 3.6,
                              "away_movement": 1,
                              "payout": 92.78
                            },
                            {
                              "id": 10884159,
                              "bookmaker_id": 24,
                              "bookmaker_name": "1Bet",
                              "bookmaker_order": 70,
                              "home": 1.28,
                              "home_movement": 1,
                              "away": 3.41,
                              "away_movement": 1,
                              "payout": 93.07
                            },
                            {
                              "id": 10884156,
                              "bookmaker_id": 27,
                              "bookmaker_name": "Unibet",
                              "bookmaker_order": 75,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            },
                            {
                              "id": 10884157,
                              "bookmaker_id": 34,
                              "bookmaker_name": "Vbet Sport",
                              "bookmaker_order": 82,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.35,
                              "away_movement": -1,
                              "payout": 93.66
                            },
                            {
                              "id": 10884165,
                              "bookmaker_id": 40,
                              "bookmaker_name": "BetUK",
                              "bookmaker_order": 103,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            },
                            {
                              "id": 10884166,
                              "bookmaker_id": 41,
                              "bookmaker_name": "N1Bet",
                              "bookmaker_order": 106,
                              "home": 1.29,
                              "home_movement": 1,
                              "away": 3.25,
                              "away_movement": -1,
                              "payout": 92.35
                            },
                            {
                              "id": 10884189,
                              "bookmaker_id": 46,
                              "bookmaker_name": "Ladbrokes",
                              "bookmaker_order": 140,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            },
                            {
                              "id": 10884194,
                              "bookmaker_id": 47,
                              "bookmaker_name": "Coral",
                              "bookmaker_order": 141,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            },
                            {
                              "id": 10884154,
                              "bookmaker_id": 49,
                              "bookmaker_name": "FanDuel",
                              "bookmaker_order": 56,
                              "home": 1.27,
                              "home_movement": 1,
                              "away": 3.55,
                              "away_movement": -1,
                              "payout": 93.54
                            },
                            {
                              "id": 10884113,
                              "bookmaker_id": 56,
                              "bookmaker_name": "Pinnacle",
                              "bookmaker_order": 7,
                              "home": 1.327,
                              "home_movement": 1,
                              "away": 3.13,
                              "away_movement": 1,
                              "payout": 93.19
                            },
                            {
                              "id": 10884158,
                              "bookmaker_id": 59,
                              "bookmaker_name": "Betobet",
                              "bookmaker_order": 68,
                              "home": 1.28,
                              "home_movement": 1,
                              "away": 3.41,
                              "away_movement": 1,
                              "payout": 93.07
                            },
                            {
                              "id": 10884177,
                              "bookmaker_id": 61,
                              "bookmaker_name": "Weltbet",
                              "bookmaker_order": 95,
                              "home": 1.28,
                              "home_movement": 1,
                              "away": 3.41,
                              "away_movement": 1,
                              "payout": 93.07
                            },
                            {
                              "id": 10884161,
                              "bookmaker_id": 88,
                              "bookmaker_name": "BetRivers",
                              "bookmaker_order": 98,
                              "home": 1.3,
                              "home_movement": 1,
                              "away": 3.2,
                              "away_movement": -1,
                              "payout": 92.44
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Match Winner"
      }
    },
    "/odds/coverage": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Coverage",
        "description": "This endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all coverages<br />`https://tennis.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/coverage?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coverage.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/coverage"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 41,
                      "match_winner": false,
                      "total_sets_games": true,
                      "match_handicap": true,
                      "correct_score": false,
                      "odd_even": false
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage"
      }
    },
    "/odds/bookmakers": {
      "get": {
        "tags": [
          "Bookmakers"
        ],
        "summary": "Bookmakers",
        "description": "This endpoint allows you to retrieve information about all bookmakers.\n\nWith the help of the `popularity_order` parameter you can see which bookmaker is more popular and more used.\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can retrieve the image of a bookmaker by calling the following URL: https://images.sportmicro.com/{hash_image}.png\n\n### Use Cases\nGet all bookmakers<br />`https://tennis.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://tennis.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://tennis.sportmicro.com/odds/bookmakers?order=popularity_order`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.bookmakers.id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.bookmakers.name"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/bookmakers"
                  },
                  "type": "array",
                  "example": [
                    {
                      "id": 1,
                      "name": "Stake.com",
                      "popularity_order": "1",
                      "hash_image": "b7df61bb0380f1918a136da4a70b9d19bc740163bd9dbea2c58de3cc13fc0ff0"
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Bookmakers"
      }
    },
    "/odds/coverage-live": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Coverage Live",
        "description": "This endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all live coverages<br />`https://tennis.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://tennis.sportmicro.com/odds/coverage-live?match_id=eq.{match_id}`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.coverage-live.match_id"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/coverage-live"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 41,
                      "match_winner": false,
                      "total_sets_games": false,
                      "match_handicap": false,
                      "correct_score": false,
                      "odd_even": false
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Coverage Live"
      }
    },
    "/odds/correct-score": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Correct Score",
        "description": "This endpoint allows you to retrieve the odds from correct score market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.correct-score.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.correct-score.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/correct-score"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 44,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 10674530,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "0 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674527,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "1 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674531,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "2 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674533,
                                  "score": 16,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "3 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674532,
                                  "score": 14.5,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "4 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674534,
                                  "score": 41,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "5 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674537,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674536,
                                  "score": 14.75,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674538,
                                  "score": 7.4,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674540,
                                  "score": 4.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674539,
                                  "score": 4.45,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674544,
                                  "score": 7.9,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674549,
                                  "score": 12.5,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "7 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674548,
                                  "score": 3.92,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "7 : 6"
                            }
                          ],
                          "period_type": "1st Set"
                        },
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 10674550,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "0 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674555,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "1 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674551,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "2 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674556,
                                  "score": 17.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "3 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674561,
                                  "score": 17,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "4 : 6"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674557,
                                  "score": 43,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "5 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674559,
                                  "score": 51,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674566,
                                  "score": 15.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 1"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674563,
                                  "score": 6.75,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674567,
                                  "score": 4.6,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 3"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674568,
                                  "score": 3.66,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 4"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674569,
                                  "score": 8.8,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "6 : 7"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674570,
                                  "score": 12.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "7 : 5"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674573,
                                  "score": 4.15,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "7 : 6"
                            }
                          ],
                          "period_type": "2nd Set"
                        },
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 10674519,
                                  "score": 10.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "0 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674521,
                                  "score": 10.25,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "1 : 2"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674518,
                                  "score": 1.44,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "2 : 0"
                            },
                            {
                              "odds": [
                                {
                                  "id": 10674523,
                                  "score": 4.1,
                                  "bookmaker_id": 9,
                                  "bookmaker_name": "Marathonbet",
                                  "score_movement": 0,
                                  "bookmaker_order": 16
                                }
                              ],
                              "type": "2 : 1"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Correct Score"
      }
    },
    "/odds/total-sets-games": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Total Sets Games",
        "description": "This endpoint allows you to retrieve the odds from total sets games market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.total-sets-games.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.total-sets-games.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/total-sets-games"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 41,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 22303605,
                                  "over": 1.77,
                                  "under": 1.83,
                                  "bookmaker_id": 37,
                                  "over_movement": 0,
                                  "bookmaker_name": "Ivibet",
                                  "under_movement": 0,
                                  "bookmaker_order": 91
                                }
                              ],
                              "type": "22.5 Games"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Total Sets Games"
      }
    },
    "/odds/match-handicap": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Match Handicap",
        "description": "This endpoint allows you to retrieve the odds from match handicap market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.match-handicap.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.match-handicap.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/match-handicap"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 41,
                      "is_live": false,
                      "periods": [
                        {
                          "odds": [
                            {
                              "odds": [
                                {
                                  "id": 16174920,
                                  "away": 2.04,
                                  "home": 1.61,
                                  "bookmaker_id": 37,
                                  "away_movement": 1,
                                  "home_movement": -1,
                                  "bookmaker_name": "Ivibet",
                                  "bookmaker_order": 91
                                }
                              ],
                              "type": "-3.5/+3.5 Games"
                            }
                          ],
                          "period_type": "Full Time"
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Match Handicap"
      }
    },
    "/odds/odd-even": {
      "get": {
        "tags": [
          "Odds"
        ],
        "summary": "Odd Even",
        "description": "This endpoint allows you to retrieve the odds from odd even market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.\n\n**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.false`",
        "parameters": [
          {
            "$ref": "#/components/parameters/rowFilter.odd-even.match_id"
          },
          {
            "$ref": "#/components/parameters/rowFilter.odd-even.is_live"
          },
          {
            "$ref": "#/components/parameters/offset"
          },
          {
            "$ref": "#/components/parameters/limit"
          },
          {
            "$ref": "#/components/parameters/lang"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/odd-even"
                  },
                  "type": "array",
                  "example": [
                    {
                      "match_id": 47,
                      "is_live": false,
                      "periods": [
                        {
                          "period_type": "1st Set",
                          "odds": [
                            {
                              "id": 1901595,
                              "bookmaker_id": 9,
                              "bookmaker_name": "Marathonbet",
                              "bookmaker_order": 16,
                              "odd": 1.45,
                              "odd_movement": 0,
                              "even": 2.51,
                              "even_movement": 0,
                              "payout": 91.91
                            }
                          ]
                        },
                        {
                          "period_type": "2nd Set",
                          "odds": [
                            {
                              "id": 1901596,
                              "bookmaker_id": 9,
                              "bookmaker_name": "Marathonbet",
                              "bookmaker_order": 16,
                              "odd": 1.5,
                              "odd_movement": 0,
                              "even": 2.375,
                              "even_movement": 0,
                              "payout": 91.94
                            }
                          ]
                        },
                        {
                          "period_type": "Full Time",
                          "odds": [
                            {
                              "id": 1901592,
                              "bookmaker_id": 2,
                              "bookmaker_name": "1xBet",
                              "bookmaker_order": 3,
                              "odd": 1.83,
                              "odd_movement": 0,
                              "even": 1.83,
                              "even_movement": 0,
                              "payout": 91.5
                            },
                            {
                              "id": 1901593,
                              "bookmaker_id": 3,
                              "bookmaker_name": "22Bet",
                              "bookmaker_order": 4,
                              "odd": 1.83,
                              "odd_movement": 0,
                              "even": 1.83,
                              "even_movement": 0,
                              "payout": 91.5
                            },
                            {
                              "id": 1901594,
                              "bookmaker_id": 12,
                              "bookmaker_name": "Megapari",
                              "bookmaker_order": 21,
                              "odd": 1.83,
                              "odd_movement": 0,
                              "even": 1.83,
                              "even_movement": 0,
                              "payout": 91.5
                            }
                          ]
                        }
                      ]
                    }
                  ]
                }
              }
            }
          }
        },
        "operationId": "Odd Even"
      }
    }
  },
  "externalDocs": {
    "description": "Sportmicro API Documentation",
    "url": "https://docs.sportmicro.com/docs"
  },
  "tags": [
    {
      "name": "Countries",
      "description": "API Endpoints of Countries"
    },
    {
      "name": "Classes",
      "description": "API Endpoints of Classes"
    },
    {
      "name": "Leagues",
      "description": "API Endpoints of Leagues"
    },
    {
      "name": "Tournaments",
      "description": "API Endpoints of Tournaments"
    },
    {
      "name": "Seasons",
      "description": "API Endpoints of Seasons"
    },
    {
      "name": "Cup bracket",
      "description": "API Endpoints of Cup bracket"
    },
    {
      "name": "Standings",
      "description": "API Endpoints of Standings"
    },
    {
      "name": "Teams",
      "description": "API Endpoints of Teams"
    },
    {
      "name": "Players",
      "description": "API Endpoints of Players"
    },
    {
      "name": "Injuries",
      "description": "API Endpoints of Injuries"
    },
    {
      "name": "Matches",
      "description": "API Endpoints of Matches"
    },
    {
      "name": "Odds",
      "description": "API Endpoints of Odds"
    },
    {
      "name": "Bookmakers",
      "description": "API Endpoints of Bookmakers"
    },
    {
      "name": "Tv channels",
      "description": "API Endpoints of Tv channels"
    },
    {
      "name": "Coaches",
      "description": "API Endpoints of coaches"
    },
    {
      "name": "Referees",
      "description": "API Endpoints of Referees"
    },
    {
      "name": "Arenas",
      "description": "API Endpoints of arenas"
    },
    {
      "name": "News",
      "description": "API Endpoints of News"
    },
    {
      "name": "Media",
      "description": "API Endpoints of Media"
    },
    {
      "name": "v1-Odds",
      "description": "API Endpoints of Odds from Bet365"
    }
  ],
  "x-tagGroups": [
    {
      "name": "Endpoints",
      "tags": [
        "Countries",
        "Classes",
        "Leagues",
        "Tournaments",
        "Seasons",
        "Cup bracket",
        "Standings",
        "Teams",
        "Players",
        "Injuries",
        "Matches",
        "Odds",
        "Bookmakers",
        "Tv channels",
        "Coaches",
        "Referees",
        "Arenas",
        "News",
        "Media",
        "v1-Odds"
      ]
    }
  ],
  "servers": [
    {
      "url": "https://tennis.sportmicro.com"
    }
  ],
  "components": {
    "parameters": {
      "preferParams": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "params=single-object"
          ]
        }
      },
      "preferReturn": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "return=representation",
            "return=minimal",
            "return=none"
          ]
        }
      },
      "preferCount": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "count=none"
          ]
        }
      },
      "preferPost": {
        "name": "Prefer",
        "description": "Preference",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "enum": [
            "return=representation",
            "return=minimal",
            "return=none",
            "resolution=ignore-duplicates",
            "resolution=merge-duplicates"
          ]
        }
      },
      "select": {
        "name": "select",
        "description": "Filtering Columns",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "on_conflict": {
        "name": "on_conflict",
        "description": "On Conflict",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "order": {
        "name": "order",
        "description": "Ordering",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string"
        }
      },
      "range": {
        "name": "Range",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string"
        }
      },
      "rangeUnit": {
        "name": "Range-Unit",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "header",
        "schema": {
          "type": "string",
          "default": "items",
          "example": "items"
        },
        "example": "items"
      },
      "offset": {
        "name": "offset",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "0",
          "example": "0"
        },
        "example": "0"
      },
      "limit": {
        "name": "limit",
        "description": "Limiting and Pagination",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "50",
          "example": "50"
        },
        "example": "50"
      },
      "rowFilter.matches-statistics.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-statistics.statistics": {
        "name": "statistics",
        "description": "The statistics of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-players.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-players.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-players.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-players.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-players.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-powers.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-powers.set": {
        "name": "set",
        "description": "The number of sets of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-powers.games": {
        "name": "games",
        "description": "The games of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams.id": {
        "name": "id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.366107"
        },
        "example": "eq.366107"
      },
      "rowFilter.teams.name": {
        "name": "name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.short_name": {
        "name": "short_name",
        "description": "The short name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.full_name": {
        "name": "full_name",
        "description": "The full name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.gender": {
        "name": "gender",
        "description": "The gender of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character"
        }
      },
      "rowFilter.teams.team_player_info_id": {
        "name": "team_player_info_id",
        "description": "The id of the player (_team_)",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.name_code": {
        "name": "name_code",
        "description": "The name code of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.national": {
        "name": "national",
        "description": "If the team is national",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.teams.type": {
        "name": "type",
        "description": "The type of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.flag": {
        "name": "flag",
        "description": "The flag of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.color_primary": {
        "name": "color_primary",
        "description": "The primary color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.color_secondary": {
        "name": "color_secondary",
        "description": "The secondary color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.color_text": {
        "name": "color_text",
        "description": "The text color of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.foundation_date": {
        "name": "foundation_date",
        "description": "The foundation date of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.teams.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.sub_teams": {
        "name": "sub_teams",
        "description": "The sub teams of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer[]"
        }
      },
      "rowFilter.teams.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.166"
        },
        "example": "eq.166"
      },
      "rowFilter.teams.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.primary_league_id": {
        "name": "primary_league_id",
        "description": "The id of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.primary_league_name": {
        "name": "primary_league_name",
        "description": "The name of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.primary_league_hash_image": {
        "name": "primary_league_hash_image",
        "description": "The name image of the primary league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.coach_id": {
        "name": "coach_id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.coach_name": {
        "name": "coach_name",
        "description": "The name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.coach_hash_image": {
        "name": "coach_hash_image",
        "description": "The name image of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams.parent_team_id": {
        "name": "parent_team_id",
        "description": "The id of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.teams.parent_team_name": {
        "name": "parent_team_name",
        "description": "The name of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams.parent_team_hash_image": {
        "name": "parent_team_hash_image",
        "description": "The name image of the parent team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues-by-class.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.28"
        },
        "example": "eq.28"
      },
      "rowFilter.leagues-by-class.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-by-class.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues-by-class.leagues": {
        "name": "leagues",
        "description": "The leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.seasons-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-league.seasons": {
        "name": "seasons",
        "description": "The seasons",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.media-leagues.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-leagues.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.67"
        },
        "example": "eq.67"
      },
      "rowFilter.media-leagues.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-leagues.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-leagues.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-groups.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.109"
        },
        "example": "eq.109"
      },
      "rowFilter.seasons-groups.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-groups.groups": {
        "name": "groups",
        "description": "The groups of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.rankings.type": {
        "name": "type",
        "description": "The type of the ranking (atp|wta)",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.atp"
        },
        "example": "eq.atp"
      },
      "rowFilter.rankings.class": {
        "name": "class",
        "description": "The class of the ranking (official|now)",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.now"
        },
        "example": "eq.now"
      },
      "rowFilter.rankings.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.rankings.team_hash_image": {
        "name": "team_hash_image",
        "description": "The hash image of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.rankings.rank": {
        "name": "rank",
        "description": "The rank of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.points": {
        "name": "points",
        "description": "The points of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.previous_rank": {
        "name": "previous_rank",
        "description": "The previous rank of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.next_win_points": {
        "name": "next_win_points",
        "description": "The next win points of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.max_points": {
        "name": "max_points",
        "description": "The max points of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.best_rank": {
        "name": "best_rank",
        "description": "The best rank of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.previous_points": {
        "name": "previous_points",
        "description": "The previous points of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.rankings.tournaments_count": {
        "name": "tournaments_count",
        "description": "The tournaments count of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-weather.id": {
        "name": "id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-weather.dt": {
        "name": "dt",
        "description": "The date of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-weather.temp": {
        "name": "temp",
        "description": "The temperature of the weather `Kelvin`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.feels_like": {
        "name": "feels_like",
        "description": "The human perception of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.pressure": {
        "name": "pressure",
        "description": "The pressure of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.humidity": {
        "name": "humidity",
        "description": "The humidity of the weather in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.dew_point": {
        "name": "dew_point",
        "description": "The minimum temperature of the weather `Kelvin`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.uvi": {
        "name": "uvi",
        "description": "The maximum value of UV index for the day",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.clouds": {
        "name": "clouds",
        "description": "The cloudiness of the weather in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_speed": {
        "name": "wind_speed",
        "description": "The wind speed `Metre/Sec`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_deg": {
        "name": "wind_deg",
        "description": "The wind direction `Degrees`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.wind_gust": {
        "name": "wind_gust",
        "description": "The wind gust `Metre/Sec`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.matches-weather.weather_id": {
        "name": "weather_id",
        "description": "The random id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-weather.weather_main": {
        "name": "weather_main",
        "description": "The title of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.weather_description": {
        "name": "weather_description",
        "description": "The description of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.weather_icon": {
        "name": "weather_icon",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-weather.pop": {
        "name": "pop",
        "description": "The probability of precipitation in `%`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "numeric"
        }
      },
      "rowFilter.coaches.id": {
        "name": "id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.name": {
        "name": "name",
        "description": "The name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nickname": {
        "name": "nickname",
        "description": "The short name of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.default_formation": {
        "name": "default_formation",
        "description": "The default formation by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nationality": {
        "name": "nationality",
        "description": "The nationality of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.nationality_iso2": {
        "name": "nationality_iso2",
        "description": "The alpha2 of the nationality",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.total_matches": {
        "name": "total_matches",
        "description": "The number of total matches by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.wins_matches": {
        "name": "wins_matches",
        "description": "The number of wins by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.draws_matches": {
        "name": "draws_matches",
        "description": "The number of draws by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.losses_matches": {
        "name": "losses_matches",
        "description": "The number of losses by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.goals_scored_matches": {
        "name": "goals_scored_matches",
        "description": "The number of goals scored in matches managed by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.goals_conceded_matches": {
        "name": "goals_conceded_matches",
        "description": "The number of goals conceded in matches managed by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.total_points_matches": {
        "name": "total_points_matches",
        "description": "The number of total points gained by the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.date_of_birth": {
        "name": "date_of_birth",
        "description": "The date of the coach's birth",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.coaches.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.former_player_id": {
        "name": "former_player_id",
        "description": "The id of the coach as a former player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.team_hash_image": {
        "name": "team_hash_image",
        "description": "The name image of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.id": {
        "name": "id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches.name": {
        "name": "name",
        "description": "Home team name vs away team name",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.first_to_serve": {
        "name": "first_to_serve",
        "description": "The first to serve in the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.ground_type": {
        "name": "ground_type",
        "description": "The ground type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.106"
        },
        "example": "eq.106"
      },
      "rowFilter.matches.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.tournament_importance": {
        "name": "tournament_importance",
        "description": "The importance of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.116"
        },
        "example": "eq.116"
      },
      "rowFilter.matches.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.round_id": {
        "name": "round_id",
        "description": "The id of the round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1512"
        },
        "example": "eq.1512"
      },
      "rowFilter.matches.round": {
        "name": "round",
        "description": "The round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.status": {
        "name": "status",
        "description": "The status of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.status_type": {
        "name": "status_type",
        "description": "The type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.attendance": {
        "name": "attendance",
        "description": "The number of people watching the match at the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.43"
        },
        "example": "eq.43"
      },
      "rowFilter.matches.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.referee_id": {
        "name": "referee_id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.referee_name": {
        "name": "referee_name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.referee_hash_image": {
        "name": "referee_hash_image",
        "description": "The name image of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.home_team_id": {
        "name": "home_team_id",
        "description": "The id of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.138"
        },
        "example": "eq.138"
      },
      "rowFilter.matches.home_team_name": {
        "name": "home_team_name",
        "description": "The name of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.home_team_hash_image": {
        "name": "home_team_hash_image",
        "description": "The name image of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.away_team_id": {
        "name": "away_team_id",
        "description": "The id of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.159"
        },
        "example": "eq.159"
      },
      "rowFilter.matches.away_team_name": {
        "name": "away_team_name",
        "description": "The name of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.away_team_hash_image": {
        "name": "away_team_hash_image",
        "description": "The name image of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.home_team_score": {
        "name": "home_team_score",
        "description": "The score of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.away_team_score": {
        "name": "away_team_score",
        "description": "The score of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.times": {
        "name": "times",
        "description": "The time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches.specific_start_time": {
        "name": "specific_start_time",
        "description": "The real start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.start_time": {
        "name": "start_time",
        "description": "The official start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.end_time": {
        "name": "end_time",
        "description": "The end of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches.duration": {
        "name": "duration",
        "description": "The duration of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.last_period": {
        "name": "last_period",
        "description": "The last period of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.season_statistics_type": {
        "name": "season_statistics_type",
        "description": "The type of the season's statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name of the class image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name of the league image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches.previous_leg_match_id": {
        "name": "previous_leg_match_id",
        "description": "The id of the previous leg match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.weather_id": {
        "name": "weather_id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches.weather_main": {
        "name": "weather_main",
        "description": "The main weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches.weather_icon": {
        "name": "weather_icon",
        "description": "The name icon of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-class.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.28"
        },
        "example": "eq.28"
      },
      "rowFilter.tournaments-by-class.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-class.class_hash_image": {
        "name": "class_hash_image",
        "description": "The hash image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments-by-class.tournaments": {
        "name": "tournaments",
        "description": "The tournaments",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-by-tournament.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.53"
        },
        "example": "eq.53"
      },
      "rowFilter.seasons-by-tournament.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-by-tournament.seasons": {
        "name": "seasons",
        "description": "The seasons",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons.id": {
        "name": "id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.66490"
        },
        "example": "eq.66490"
      },
      "rowFilter.seasons.name": {
        "name": "name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.year": {
        "name": "year",
        "description": "The year of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.start_time": {
        "name": "start_time",
        "description": "The start time of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.end_time": {
        "name": "end_time",
        "description": "The end time of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.9322"
        },
        "example": "eq.9322"
      },
      "rowFilter.seasons.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-players.player_id": {
        "name": "player_id",
        "description": "The id of the player",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.562298"
        },
        "example": "eq.562298"
      },
      "rowFilter.media-players.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-players.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-players.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-tv-channels.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.679"
        },
        "example": "eq.679"
      },
      "rowFilter.matches-tv-channels.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-tv-channels.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-tv-channels.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-tv-channels.alpha": {
        "name": "alpha",
        "description": "The alpha2 of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying",
          "example": "eq.BR"
        },
        "example": "eq.BR"
      },
      "rowFilter.matches-tv-channels.tv_channels": {
        "name": "tv_channels",
        "description": "The tv channels",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-info.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.50"
        },
        "example": "eq.50"
      },
      "rowFilter.seasons-info.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.goals": {
        "name": "goals",
        "description": "The number of goals by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.home_wins": {
        "name": "home_wins",
        "description": "The number of home team wins by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.away_wins": {
        "name": "away_wins",
        "description": "The number of away team wins by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.draws": {
        "name": "draws",
        "description": "The number of draws by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.yellow_cards": {
        "name": "yellow_cards",
        "description": "The number of yellow cards by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.red_cards": {
        "name": "red_cards",
        "description": "The number of red cards by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.rounds": {
        "name": "rounds",
        "description": "The number of rounds by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.competitors": {
        "name": "competitors",
        "description": "The number of competitors by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.total_prize_money": {
        "name": "total_prize_money",
        "description": "The number of total prize money by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.seasons-info.total_prize_money_currency": {
        "name": "total_prize_money_currency",
        "description": "The currency of the total prize money by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.city": {
        "name": "city",
        "description": "The host city of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.level": {
        "name": "level",
        "description": "The level of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-info.countries": {
        "name": "countries",
        "description": "The host countries of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text[]"
        }
      },
      "rowFilter.seasons-info.higher_tournament_teams": {
        "name": "higher_tournament_teams",
        "description": "The number of newcomers higher tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-info.lower_tournament_teams": {
        "name": "lower_tournament_teams",
        "description": "The number of newcomers lower tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.seasons-info.tournament_other_teams": {
        "name": "tournament_other_teams",
        "description": "The number of newcomers other tournaments by the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.referees-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees-by-country.referees": {
        "name": "referees",
        "description": "The referees",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-04-26"
        },
        "example": "eq.2003-04-26"
      },
      "rowFilter.matches-by-date.matches": {
        "name": "matches",
        "description": "The matches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-leagues.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-leagues.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-leagues.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-leagues.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-leagues.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-teams.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-teams.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-teams.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-teams.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.id": {
        "name": "id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1341101"
        },
        "example": "eq.1341101"
      },
      "rowFilter.matches-live.name": {
        "name": "name",
        "description": "Home team name vs away team name",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.first_to_serve": {
        "name": "first_to_serve",
        "description": "The first to serve of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.ground_type": {
        "name": "ground_type",
        "description": "The ground type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.96392"
        },
        "example": "eq.96392"
      },
      "rowFilter.matches-live.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.tournament_importance": {
        "name": "tournament_importance",
        "description": "The importance of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.61610"
        },
        "example": "eq.61610"
      },
      "rowFilter.matches-live.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.round_id": {
        "name": "round_id",
        "description": "The id of the round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.502488"
        },
        "example": "eq.502488"
      },
      "rowFilter.matches-live.round": {
        "name": "round",
        "description": "The round",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.status": {
        "name": "status",
        "description": "The status of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.status_type": {
        "name": "status_type",
        "description": "The type of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.attendance": {
        "name": "attendance",
        "description": "The number of people watching the match at the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.arena_id": {
        "name": "arena_id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.40691"
        },
        "example": "eq.40691"
      },
      "rowFilter.matches-live.arena_name": {
        "name": "arena_name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.arena_hash_image": {
        "name": "arena_hash_image",
        "description": "The name image of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.referee_id": {
        "name": "referee_id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.referee_name": {
        "name": "referee_name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.referee_hash_image": {
        "name": "referee_hash_image",
        "description": "The name image of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.home_team_id": {
        "name": "home_team_id",
        "description": "The id of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.home_team_name": {
        "name": "home_team_name",
        "description": "The name of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.home_team_hash_image": {
        "name": "home_team_hash_image",
        "description": "The name image of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.away_team_id": {
        "name": "away_team_id",
        "description": "The id of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.away_team_name": {
        "name": "away_team_name",
        "description": "The name of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.away_team_hash_image": {
        "name": "away_team_hash_image",
        "description": "The name image of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.home_team_score": {
        "name": "home_team_score",
        "description": "The score of the home team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.away_team_score": {
        "name": "away_team_score",
        "description": "The score of the away team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.times": {
        "name": "times",
        "description": "The time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-live.specific_start_time": {
        "name": "specific_start_time",
        "description": "The real start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.start_time": {
        "name": "start_time",
        "description": "The official start time of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.end_time": {
        "name": "end_time",
        "description": "The end of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-live.last_period": {
        "name": "last_period",
        "description": "The last period of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.season_statistics_type": {
        "name": "season_statistics_type",
        "description": "The type of the season's statistics",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name of the class image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name of the league image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-live.previous_leg_match_id": {
        "name": "previous_leg_match_id",
        "description": "The id of the previous leg match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.weather_id": {
        "name": "weather_id",
        "description": "The id of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-live.weather_main": {
        "name": "weather_main",
        "description": "The main weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-live.weather_icon": {
        "name": "weather_icon",
        "description": "The name icon of the weather",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.countries.id": {
        "name": "id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.countries.name": {
        "name": "name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.countries.alpha": {
        "name": "alpha",
        "description": "The alpha name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying",
          "example": "eq.CF"
        },
        "example": "eq.CF"
      },
      "rowFilter.countries.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-point-by-points.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "1"
        },
        "example": "1"
      },
      "rowFilter.matches-point-by-points.sets": {
        "name": "sets",
        "description": "The sets of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.arenas.id": {
        "name": "id",
        "description": "The id of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.22"
        },
        "example": "eq.22"
      },
      "rowFilter.arenas.name": {
        "name": "name",
        "description": "The name of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.city": {
        "name": "city",
        "description": "The city of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.stadium_capacity": {
        "name": "stadium_capacity",
        "description": "The capacity of the stadium",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.arenas.coordinates": {
        "name": "coordinates",
        "description": "The coordinates of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.built": {
        "name": "built",
        "description": "The built date of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.opened": {
        "name": "opened",
        "description": "The date when the arena opened",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.owner": {
        "name": "owner",
        "description": "The owner of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.operator": {
        "name": "operator",
        "description": "The operator of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.surface": {
        "name": "surface",
        "description": "The surface of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.cost": {
        "name": "cost",
        "description": "The cost of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.dimensions": {
        "name": "dimensions",
        "description": "The dimensions of the arena",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.33"
        },
        "example": "eq.33"
      },
      "rowFilter.arenas.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas.geolocation": {
        "name": "geolocation",
        "description": "The geolocation",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.leagues-info.competition_name": {
        "name": "competition_name",
        "description": "The name of the competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.city_name": {
        "name": "city_name",
        "description": "The city of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.playing_months": {
        "name": "playing_months",
        "description": "The months playing in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer[]"
        }
      },
      "rowFilter.leagues-info.surface_type": {
        "name": "surface_type",
        "description": "The surface",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.qualification_rounds_played": {
        "name": "qualification_rounds_played",
        "description": "The rounds played in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.main_rounds_played": {
        "name": "main_rounds_played",
        "description": "The main rounds played in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.prize_money": {
        "name": "prize_money",
        "description": "The amount of the prize money for winning the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.match_type": {
        "name": "match_type",
        "description": "The match type",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.promoted_teams": {
        "name": "promoted_teams",
        "description": "The promoted teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.most_title_names": {
        "name": "most_title_names",
        "description": "The teams with most titles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.number_of_teams": {
        "name": "number_of_teams",
        "description": "The number of the teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.number_of_groups": {
        "name": "number_of_groups",
        "description": "The number of the groups in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.league_grade": {
        "name": "league_grade",
        "description": "The grade of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.age_category": {
        "name": "age_category",
        "description": "The age class of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.category": {
        "name": "category",
        "description": "The class of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.first_season_winner": {
        "name": "first_season_winner",
        "description": "The first season winner of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.total_teams_count": {
        "name": "total_teams_count",
        "description": "The count of the teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_tables_count": {
        "name": "total_tables_count",
        "description": "The count of the tables in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.promoting_teams_count": {
        "name": "promoting_teams_count",
        "description": "The count of the promoting teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.relegating_teams_count": {
        "name": "relegating_teams_count",
        "description": "The count of the relegating teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_games_count": {
        "name": "total_games_count",
        "description": "The count of the games in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.game_frequency": {
        "name": "game_frequency",
        "description": "The frequency of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_rounds_count": {
        "name": "total_rounds_count",
        "description": "The count of the rounds in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.competition_type": {
        "name": "competition_type",
        "description": "The type of the competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.league_gender": {
        "name": "league_gender",
        "description": "The gender people playing in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.first_season_start_year": {
        "name": "first_season_start_year",
        "description": "First season start year",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.most_popular_teams": {
        "name": "most_popular_teams",
        "description": "The name of the most popular teams in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.playoff_teams_count": {
        "name": "playoff_teams_count",
        "description": "The number of the teams playing in the playoffs",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.main_competition": {
        "name": "main_competition",
        "description": "The main competition",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.games_per_group": {
        "name": "games_per_group",
        "description": "The number of the games per group",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues-info.playoff_qualifying_teams_count": {
        "name": "playoff_qualifying_teams_count",
        "description": "The count of the teams that are qualified to play in the playoffs",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.number_of_promoted_teams": {
        "name": "number_of_promoted_teams",
        "description": "The number of promoted teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.total_number_of_rounds": {
        "name": "total_number_of_rounds",
        "description": "The number of rounds",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues-info.largest_stadium": {
        "name": "largest_stadium",
        "description": "The largest stadium",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.last_season_magnitude": {
        "name": "last_season_magnitude",
        "description": "The last season magnitude",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.tv_partners": {
        "name": "tv_partners",
        "description": "The tv partners of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.official_organization": {
        "name": "official_organization",
        "description": "The official organisation of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.promotions": {
        "name": "promotions",
        "description": "The promotions",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-info.last_season_top_scorers": {
        "name": "last_season_top_scorers",
        "description": "The last season top scorers in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.tournaments.id": {
        "name": "id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.42411"
        },
        "example": "eq.42411"
      },
      "rowFilter.tournaments.name": {
        "name": "name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.importance": {
        "name": "importance",
        "description": "The importance level of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.tournaments.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.13374"
        },
        "example": "eq.13374"
      },
      "rowFilter.tournaments.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.28"
        },
        "example": "eq.28"
      },
      "rowFilter.tournaments.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.news-matches.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.news-matches.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1211631"
        },
        "example": "eq.1211631"
      },
      "rowFilter.news-matches.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.news-matches.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.news-matches.date": {
        "name": "date",
        "description": "The date of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.news-matches.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.name": {
        "name": "name",
        "description": "The name of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.news-matches.subtitles": {
        "name": "subtitles",
        "description": "The subtitles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues-by-date.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-04-26"
        },
        "example": "eq.2003-04-26"
      },
      "rowFilter.leagues-by-date.leagues": {
        "name": "leagues",
        "description": "The leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.id": {
        "name": "id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.leagues.name": {
        "name": "name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.importance": {
        "name": "importance",
        "description": "The importance level of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.level": {
        "name": "level",
        "description": "The level of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.current_champion_team_id": {
        "name": "current_champion_team_id",
        "description": "The id of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.current_champion_team_name": {
        "name": "current_champion_team_name",
        "description": "The name of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.current_champion_team_hash_image": {
        "name": "current_champion_team_hash_image",
        "description": "The name image of the team that hold the title",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.current_champion_team_num_titles": {
        "name": "current_champion_team_num_titles",
        "description": "The number of the title that the team is holding",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.teams_most_titles": {
        "name": "teams_most_titles",
        "description": "The ids of the teams with the most titles",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.most_titles": {
        "name": "most_titles",
        "description": "The number of the most titles accomplished by one team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.ground": {
        "name": "ground",
        "description": "The default ground type of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.number_of_sets": {
        "name": "number_of_sets",
        "description": "The default number of sets in the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.max_points": {
        "name": "max_points",
        "description": "The max number of points in one game",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.leagues.primary_color": {
        "name": "primary_color",
        "description": "The primary color of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.secondary_color": {
        "name": "secondary_color",
        "description": "The secondary color of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.connected_leagues": {
        "name": "connected_leagues",
        "description": "The ids of connected leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.higher_leagues": {
        "name": "higher_leagues",
        "description": "The ids of higher leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.lower_leagues": {
        "name": "lower_leagues",
        "description": "The ids of lower leagues",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.leagues.start_league": {
        "name": "start_league",
        "description": "The date of starting the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.leagues.end_league": {
        "name": "end_league",
        "description": "The date of ending the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.leagues.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.leagues.class_id": {
        "name": "class_id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.28"
        },
        "example": "eq.28"
      },
      "rowFilter.leagues.class_name": {
        "name": "class_name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.leagues.class_hash_image": {
        "name": "class_hash_image",
        "description": "The name image of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.tournaments-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tournaments-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.tournaments-by-league.tournaments": {
        "name": "tournaments",
        "description": "The tournaments",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.78"
        },
        "example": "eq.78"
      },
      "rowFilter.teams-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams-by-league.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.cup-bracket.id": {
        "name": "id",
        "description": "The id of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.5"
        },
        "example": "eq.5"
      },
      "rowFilter.cup-bracket.name": {
        "name": "name",
        "description": "The name of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.current_round": {
        "name": "current_round",
        "description": "The last or the current round in the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.cup-bracket.type": {
        "name": "type",
        "description": "The type of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.cup-bracket.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.50"
        },
        "example": "eq.50"
      },
      "rowFilter.cup-bracket.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.cup-bracket.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.cup-bracket.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.cup-bracket.rounds": {
        "name": "rounds",
        "description": "The rounds of the cup bracket",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-by-date-league.date": {
        "name": "date",
        "description": "The date",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.2003-04-26"
        },
        "example": "eq.2003-04-26"
      },
      "rowFilter.matches-by-date-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.370"
        },
        "example": "eq.370"
      },
      "rowFilter.matches-by-date-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-by-date-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.matches-by-date-league.matches": {
        "name": "matches",
        "description": "The matches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.arenas-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.2"
        },
        "example": "eq.2"
      },
      "rowFilter.arenas-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.arenas-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.arenas-by-country.arenas": {
        "name": "arenas",
        "description": "The arenas",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.coaches-career.coach_id": {
        "name": "coach_id",
        "description": "The id of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches-career.careers": {
        "name": "careers",
        "description": "The career of the coach",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.coaches-by-country.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.coaches-by-country.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.coaches-by-country.country_hash_image": {
        "name": "country_hash_image",
        "description": "The hash image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coaches-by-country.coaches": {
        "name": "coaches",
        "description": "The coaches",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-by-tournament.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.85"
        },
        "example": "eq.85"
      },
      "rowFilter.teams-by-tournament.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-tournament.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.matches-highlights.id": {
        "name": "id",
        "description": "The id of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.matches-highlights.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.matches-highlights.title": {
        "name": "title",
        "description": "The title of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.url": {
        "name": "url",
        "description": "The url of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.matches-highlights.created_at": {
        "name": "created_at",
        "description": "The publishing date of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.matches-highlights.source_url": {
        "name": "source_url",
        "description": "The source url of the highlight",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.classes.id": {
        "name": "id",
        "description": "The id of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.28"
        },
        "example": "eq.28"
      },
      "rowFilter.classes.name": {
        "name": "name",
        "description": "The name of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.classes.flag": {
        "name": "flag",
        "description": "The flag of the class",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.classes.alpha": {
        "name": "alpha",
        "description": "The alpha name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.classes.importance": {
        "name": "importance",
        "description": "The importance of the class specified with a number",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.classes.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.seasons-rounds.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.50"
        },
        "example": "eq.50"
      },
      "rowFilter.seasons-rounds.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.seasons-rounds.rounds": {
        "name": "rounds",
        "description": "The rounds of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.agg-news-matches.id": {
        "name": "id",
        "description": "The id of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.agg-news-matches.match_id": {
        "name": "match_id",
        "description": "The id of the match",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.827692"
        },
        "example": "eq.827692"
      },
      "rowFilter.agg-news-matches.title": {
        "name": "title",
        "description": "The title of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.link": {
        "name": "link",
        "description": "The link of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.description": {
        "name": "description",
        "description": "The description of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.published_date": {
        "name": "published_date",
        "description": "The published date of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.agg-news-matches.source_url": {
        "name": "source_url",
        "description": "The source url of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.agg-news-matches.source": {
        "name": "source",
        "description": "The source of the news",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.id": {
        "name": "id",
        "description": "The id of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.media-teams.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.22453"
        },
        "example": "eq.22453"
      },
      "rowFilter.media-teams.title": {
        "name": "title",
        "description": "The title of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.subtitle": {
        "name": "subtitle",
        "description": "The subtitle of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.url": {
        "name": "url",
        "description": "The url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.thumbnail_url": {
        "name": "thumbnail_url",
        "description": "The thumbnail url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.media-teams.date_published": {
        "name": "date_published",
        "description": "The date of publishing the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.media-teams.channel_url": {
        "name": "channel_url",
        "description": "The source url of the media",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.tv-channels.id": {
        "name": "id",
        "description": "The id of the tv channel",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.tv-channels.name": {
        "name": "name",
        "description": "The name of the tv channel",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.id": {
        "name": "id",
        "description": "The id of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.676"
        },
        "example": "eq.676"
      },
      "rowFilter.standings.tournament_id": {
        "name": "tournament_id",
        "description": "The id of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.standings.tournament_name": {
        "name": "tournament_name",
        "description": "The name of the tournament",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.type": {
        "name": "type",
        "description": "The type of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.total"
        },
        "example": "eq.total"
      },
      "rowFilter.standings.name": {
        "name": "name",
        "description": "The name of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.642"
        },
        "example": "eq.642"
      },
      "rowFilter.standings.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.295"
        },
        "example": "eq.295"
      },
      "rowFilter.standings.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.league_hash_image": {
        "name": "league_hash_image",
        "description": "The name image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.standings.competitors": {
        "name": "competitors",
        "description": "The competitors of the standing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.referees-by-league.league_id": {
        "name": "league_id",
        "description": "The id of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.46"
        },
        "example": "eq.46"
      },
      "rowFilter.referees-by-league.league_name": {
        "name": "league_name",
        "description": "The name of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees-by-league.league_hash_image": {
        "name": "league_hash_image",
        "description": "The hash image of the league",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees-by-league.referees": {
        "name": "referees",
        "description": "The referees",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.teams-seasons.team_id": {
        "name": "team_id",
        "description": "The id of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.91"
        },
        "example": "eq.91"
      },
      "rowFilter.teams-seasons.team_name": {
        "name": "team_name",
        "description": "The name of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-seasons.team_hash_image": {
        "name": "team_hash_image",
        "description": "The hash image of the team",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams-seasons.tournaments": {
        "name": "tournaments",
        "description": "The tournaments of the team playing",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.referees.id": {
        "name": "id",
        "description": "The id of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.name": {
        "name": "name",
        "description": "The name of the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees.yellow_cards": {
        "name": "yellow_cards",
        "description": "The number of yellow cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.red_cards": {
        "name": "red_cards",
        "description": "The number of red cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.yellow_red_cards": {
        "name": "yellow_red_cards",
        "description": "The number of yellow-red cards given by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.matches_count": {
        "name": "matches_count",
        "description": "The number of games played by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.date_of_birth": {
        "name": "date_of_birth",
        "description": "The date of the referee's birth",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.referees.first_debut_timestamp": {
        "name": "first_debut_timestamp",
        "description": "The id of the first tournament played by the referee",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "timestamp with time zone"
        }
      },
      "rowFilter.referees.hash_image": {
        "name": "hash_image",
        "description": "The name of the image",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.referees.country_id": {
        "name": "country_id",
        "description": "The id of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.referees.country_name": {
        "name": "country_name",
        "description": "The name of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.referees.country_hash_image": {
        "name": "country_hash_image",
        "description": "The name image of the country",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.teams-by-season.season_id": {
        "name": "season_id",
        "description": "The id of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.109"
        },
        "example": "eq.109"
      },
      "rowFilter.teams-by-season.season_name": {
        "name": "season_name",
        "description": "The name of the season",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.teams-by-season.teams": {
        "name": "teams",
        "description": "The teams",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "jsonb"
        }
      },
      "rowFilter.match-winner-movements.match_winner_id": {
        "name": "match_winner_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.match-winner-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.match-winner.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.65"
        },
        "example": "eq.65"
      },
      "rowFilter.match-winner.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.match-winner.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.match-handicap-movements.match_handicap_id": {
        "name": "match_handicap_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.match-handicap-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.coverage.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.41"
        },
        "example": "eq.41"
      },
      "rowFilter.coverage.match_winner": {
        "name": "match_winner",
        "description": "Coverage of match_winner",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.total_sets_games": {
        "name": "total_sets_games",
        "description": "Coverage of total_sets_games",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.match_handicap": {
        "name": "match_handicap",
        "description": "Coverage of match_handicap",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.correct_score": {
        "name": "correct_score",
        "description": "Coverage of correct_score",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage.odd_even": {
        "name": "odd_even",
        "description": "Coverage of odd_even",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.bookmakers.id": {
        "name": "id",
        "description": "The id of the bookmaker. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.1"
        },
        "example": "eq.1"
      },
      "rowFilter.bookmakers.name": {
        "name": "name",
        "description": "The name of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text",
          "example": "eq.Stake.com"
        },
        "example": "eq.Stake.com"
      },
      "rowFilter.bookmakers.popularity_order": {
        "name": "popularity_order",
        "description": "The popularity score of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "text"
        }
      },
      "rowFilter.bookmakers.hash_image": {
        "name": "hash_image",
        "description": "The hash image of the bookmaker",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "character varying"
        }
      },
      "rowFilter.coverage-live.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.41"
        },
        "example": "eq.41"
      },
      "rowFilter.coverage-live.match_winner": {
        "name": "match_winner",
        "description": "Coverage of match_winner",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.total_sets_games": {
        "name": "total_sets_games",
        "description": "Coverage of total_sets_games",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.match_handicap": {
        "name": "match_handicap",
        "description": "Coverage of match_handicap",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.correct_score": {
        "name": "correct_score",
        "description": "Coverage of correct_score",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.coverage-live.odd_even": {
        "name": "odd_even",
        "description": "Coverage of odd_even",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean"
        }
      },
      "rowFilter.correct-score.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.44"
        },
        "example": "eq.44"
      },
      "rowFilter.correct-score.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.correct-score.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.total-sets-games-movements.total_sets_games_id": {
        "name": "total_sets_games_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.total-sets-games-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.correct-score-movements.correct_score_id": {
        "name": "correct_score_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.correct-score-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.total-sets-games.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.41"
        },
        "example": "eq.41"
      },
      "rowFilter.total-sets-games.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.total-sets-games.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.odd-even-movements.odd_even_id": {
        "name": "odd_even_id",
        "description": "The id. example:`eq.{id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer"
        }
      },
      "rowFilter.odd-even-movements.movements": {
        "name": "movements",
        "description": "The movements",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.match-handicap.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.41"
        },
        "example": "eq.41"
      },
      "rowFilter.match-handicap.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.match-handicap.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "rowFilter.odd-even.match_id": {
        "name": "match_id",
        "description": "The id of the match. example:`eq.{match_id}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "integer",
          "example": "eq.47"
        },
        "example": "eq.47"
      },
      "rowFilter.odd-even.is_live": {
        "name": "is_live",
        "description": "If the match is live. example:`eq.{is_live}`",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "boolean",
          "example": "eq.false"
        },
        "example": "eq.false"
      },
      "rowFilter.odd-even.periods": {
        "name": "periods",
        "description": "Periods",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "format": "json"
        }
      },
      "lang": {
        "name": "lang",
        "description": "Multi-language",
        "required": false,
        "in": "query",
        "schema": {
          "type": "string",
          "default": "en",
          "example": "en"
        },
        "example": "en"
      }
    },
    "schemas": {
      "matches-statistics": {
        "description": "Statistics\nThis endpoint allows you to retrieve the statistics from matches.\n\nTypes of the statistics:\n**Drop shot**, **Second serve**, **First serve return points**, **Second serve return points**, **Total won**, **Forehand**, **Lob**, **Receiver points won**, **Tiebreaks**, **Total**, **Return**, **Max games in a row**, **First serve points**, **Break points converted**, **Backhand**, **Service games won**, **Second serve points**, **First serve**, **Overhead**, **Service games played**, **Overhead stroke**, **Service points won**, **Groundstroke**, **Aces**, **Volley**, **Break points saved**, **Max points in a row**, **Return games played**, **Double faults**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.\n**Recommended Calls**: Limit calls to 1 every minute.\n\n### Use Cases\nGet statistics from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-statistics?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "statistics": {
            "description": "The statistics of the match",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "agg-news-players": {
        "description": "Players news\nThis endpoint allows you to retrieve aggregated news from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **player_id**<br />`https://tennis.sportmicro.com/agg-news-players?player_id=eq.{player_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-powers": {
        "description": "Powers\nThis endpoint allows you to retrieve the powers from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet powers from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-powers?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "set": {
            "description": "The number of sets of the match",
            "format": "integer",
            "type": "integer"
          },
          "games": {
            "description": "The games of the match",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams": {
        "description": "Teams\nThis endpoint allows you to retrieve the teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the team by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet teams<br />`https://tennis.sportmicro.com/teams`<br /><br />Get team based on the **name**<br />`https://tennis.sportmicro.com/teams?name=like.*Real*`<br /><br />Get team based on the **id**<br />`https://tennis.sportmicro.com/teams?id=eq.{id}`<br /><br />Get teams from a specific **country_id**<br />`https://tennis.sportmicro.com/teams?country_id=eq.{country_id}`<br /><br />Get teams from a specific **category_id**<br />`https://tennis.sportmicro.com/teams?category_id=eq.{category_id}`<br /><br />Get team from a specific **primary_league_id**<br />`https://tennis.sportmicro.com/teams?primary_league_id=eq.{primary_league_id}`",
        "properties": {
          "id": {
            "description": "The id of the team\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "short_name": {
            "description": "The short name of the team",
            "format": "text",
            "type": "string"
          },
          "full_name": {
            "description": "The full name of the team",
            "format": "text",
            "type": "string"
          },
          "gender": {
            "description": "The gender of the team",
            "format": "character",
            "maxLength": 1,
            "type": "string"
          },
          "team_player_info_id": {
            "description": "The id of the player (_team_)",
            "format": "integer",
            "type": "integer"
          },
          "name_code": {
            "description": "The name code of the team",
            "format": "text",
            "type": "string"
          },
          "national": {
            "description": "If the team is national",
            "format": "boolean",
            "type": "boolean"
          },
          "type": {
            "description": "The type of the team",
            "format": "integer",
            "type": "integer"
          },
          "color_primary": {
            "description": "The primary color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "color_secondary": {
            "description": "The secondary color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "color_text": {
            "description": "The text color of the team",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "foundation_date": {
            "description": "The foundation date of the team",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "sub_teams": {
            "description": "The sub teams of the team",
            "format": "integer[]",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "primary_league_id": {
            "description": "The id of the primary league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "primary_league_name": {
            "description": "The name of the primary league",
            "format": "text",
            "type": "string"
          },
          "primary_league_hash_image": {
            "description": "The name image of the primary league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "leagues-by-class": {
        "description": "Leagues by class\nThis endpoint allows you to retrieve the leagues from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **class_id**<br />`https://tennis.sportmicro.com/leagues-by-category?class_id=eq.{class_id}`",
        "properties": {
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The hash image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "leagues": {
            "description": "The leagues",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-by-league": {
        "description": "Seasons by league\nThis endpoint allows you to retrieve the seasons from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **league_id**<br />`https://tennis.sportmicro.com/seasons-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "text",
            "type": "string"
          },
          "seasons": {
            "description": "The seasons",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "media-leagues": {
        "description": "Leagues media\nThis endpoint allows you to retrieve the media from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **league_id**<br />`https://tennis.sportmicro.com/media-leagues?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the media\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the media",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the media",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the media",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the media",
            "format": "text",
            "type": "string"
          },
          "date_published": {
            "description": "The date of publishing the media",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "channel_url": {
            "description": "The source url of the media",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "seasons-groups": {
        "description": "Groups\nThis endpoint allows you to retrieve the groups from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet groups from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-groups?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "groups": {
            "description": "The groups of the season",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "rankings": {
        "description": "Rankings\nThis endpoint allows you to retrieve the rankings for ATP and WTA.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 30 minutes.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet official rankings for **ATP**<br />`https://tennis.sportmicro.com/rankings?type=eq.atp&class=eq.official`<br /><br />Get live rankings for **ATP**<br />`https://tennis.sportmicro.com/rankings?type=eq.atp&class=eq.now`<br /><br />Get official rankings for **WTA**<br />`https://tennis.sportmicro.com/rankings?type=eq.wta&class=eq.official`<br /><br />Get live rankings for **WTA**<br />`https://tennis.sportmicro.com/rankings?type=eq.wta&class=eq.now`",
        "properties": {
          "type": {
            "description": "The type of the ranking (atp|wta)",
            "format": "text",
            "type": "string"
          },
          "class": {
            "description": "The class of the ranking (official|now)",
            "format": "text",
            "type": "string"
          },
          "team_id": {
            "description": "The id of the team",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The hash image of the team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "rank": {
            "description": "The rank of the team",
            "format": "integer",
            "type": "integer"
          },
          "points": {
            "description": "The points of the team",
            "format": "integer",
            "type": "integer"
          },
          "next_win_points": {
            "description": "The next win points of the team",
            "format": "integer",
            "type": "integer"
          },
          "max_points": {
            "description": "The max points of the team",
            "format": "integer",
            "type": "integer"
          },
          "best_rank": {
            "description": "The best rank of the team",
            "format": "integer",
            "type": "integer"
          },
          "previous_points": {
            "description": "The previous points of the team",
            "format": "integer",
            "type": "integer"
          },
          "tournaments_count": {
            "description": "The tournaments count of the team",
            "format": "integer",
            "type": "integer"
          }
        },
        "type": "object"
      },
      "matches-weather": {
        "description": "Weather\nThis endpoint allows you to retrieve the weather from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every hour.\n**Recommended Calls**: Limit calls to 1 every hour.\n\n### Use Cases\nGet weather based on the **id**<br />`https://tennis.sportmicro.com/matches-weather?id=eq.{id}`",
        "properties": {
          "id": {
            "description": "The id of the weather\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "dt": {
            "description": "The date of the weather",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "temp": {
            "description": "The temperature of the weather `Kelvin`",
            "format": "numeric",
            "type": "number"
          },
          "feels_like": {
            "description": "The human perception of the weather",
            "format": "numeric",
            "type": "number"
          },
          "pressure": {
            "description": "The pressure of the weather",
            "format": "numeric",
            "type": "number"
          },
          "humidity": {
            "description": "The humidity of the weather in `%`",
            "format": "numeric",
            "type": "number"
          },
          "dew_point": {
            "description": "The minimum temperature of the weather `Kelvin`",
            "format": "numeric",
            "type": "number"
          },
          "uvi": {
            "description": "The maximum value of UV index for the day",
            "format": "numeric",
            "type": "number"
          },
          "clouds": {
            "description": "The cloudiness of the weather in `%`",
            "format": "numeric",
            "type": "number"
          },
          "wind_speed": {
            "description": "The wind speed `Metre/Sec`",
            "format": "numeric",
            "type": "number"
          },
          "wind_deg": {
            "description": "The wind direction `Degrees`",
            "format": "numeric",
            "type": "number"
          },
          "wind_gust": {
            "description": "The wind gust `Metre/Sec`",
            "format": "numeric",
            "type": "number"
          },
          "weather_id": {
            "description": "The random id of the weather",
            "format": "integer",
            "type": "integer"
          },
          "weather_main": {
            "description": "The title of the weather",
            "format": "text",
            "type": "string"
          },
          "weather_description": {
            "description": "The description of the weather",
            "format": "text",
            "type": "string"
          },
          "weather_icon": {
            "description": "The name of the image",
            "format": "text",
            "type": "string"
          },
          "pop": {
            "description": "The probability of precipitation in `%`",
            "format": "numeric",
            "type": "number"
          }
        },
        "type": "object"
      },
      "coaches": {
        "description": "Coaches\nThis endpoint allows you to retrieve the coaches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\nYou can get the image of the coach by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet coach based on the **id**<br />`https://tennis.sportmicro.com/coaches?id=eq.{id}`<br /><br />Get coach from a specific **country_id**<br />`https://tennis.sportmicro.com/coaches?country_id=eq.{country_id}`<br /><br />Get coach from a specific **team_id**<br />`https://tennis.sportmicro.com/coaches?team_id=eq.{team_id}`",
        "properties": {},
        "type": "object"
      },
      "matches": {
        "description": "Matches\nThis endpoint allows you to retrieve the matches.\nYou can use `id` from the `seasons`, `tournaments`, `rounds`, `arenas`, `referees` and `teams` endpoint to get the matches.\nMatches status codes:\n\n`type` | `description`\n--- | ---\ncanceled | Abandoned\ncanceled | Canceled\ncanceled | Cancelled\ndelayed | Start delayed\nendure | End of day 1\nendure | Will continue\nfinished | Defaulted\nfinished | Removed\nfinished | 3rd set\nfinished | Retired\nfinished | Player 1 defaulted, player 2 won\nfinished | Player 2 defaulted, player 1 won\nfinished | Defaulted\nfinished | 2nd set\nfinished | Ended\nfinished | Coverage canceled\nfinished | Walkover\ninterrupted | Interrupted\nlive | 3rd set\nlive | 1st set\nlive | 2nd set\npostponed | Postponed\nsuspended | Suspended\nupcoming | Not started\nlive | 4th set\nlive | 5th set\nlive | 6th set\nlive | 7th set\n\nFor **scores** we have fields for covering that: `current`, `display`, `period1`, `period2`, `period3`, `period4`, `period5`, `normaltime`, `penalties`, `series`, `point`, `period1_tie_break`, `period2_tie_break`, `period3_tie_break`, `period4_tie_break`, `period5_tie_break`, `team`, `match_id`.\n\nFor **time extras or injuries** we have fields for covering that: **current**, **period1**, **period2**, **period3**, **period4**, **period5**, **current_period_start_timestamp**, **match_id**, **time**, **period_count**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds.<br />**Recommended Calls**: Limit calls to 1 every 10 seconds.\n\n### Use Cases\nGet matches<br />`https://tennis.sportmicro.com/matches`<br /><br />Get match based on the **id**<br />`https://tennis.sportmicro.com/matches?id=eq.{id}`<br /><br />Get matches based on the **start_time** (gte = greater than or equal to, lt = lower than)<br />`https://tennis.sportmicro.com/matches?start_time=gte.2023-04-27&start_time=lt.2023-04-28`<br /><br />Get matches based on the **status_type**<br />`https://tennis.sportmicro.com/matches?status_type=eq.{status_type}`<br /><br />Get matches based on the **season_id**<br />`https://tennis.sportmicro.com/matches?season_id=eq.{season_id}`<br /><br />Get matches based on the **tournament_id**<br />`https://tennis.sportmicro.com/matches?tournament_id=eq.{tournament_id}`<br /><br />Get matches based on the **round_id**<br />`https://tennis.sportmicro.com/matches?round_id=eq.{round_id}`<br /><br />Get matches based on the **arena_id**<br />`https://tennis.sportmicro.com/matches?arena_id=eq.{arena_id}`<br /><br />Get matches based on the **referee_id**<br />`https://tennis.sportmicro.com/matches?referee_id=eq.{referee_id}`<br /><br />**H2H** - Get head to head matches with teams ex.(home_team_id, away_team_id)<br />`https://tennis.sportmicro.com/matches?or=(home_team_id.eq.{home_team_id}, away_team_id.eq.{home_team_id}, home_team_id.eq.{away_team_id}, away_team_id.eq.{away_team_id})`<br /><br />Get home team matches based on the **home_team_id**<br />`https://tennis.sportmicro.com/matches?home_team_id=eq.{home_team_id}`<br /><br />Get away team matches based on the **away_team_id**<br />`https://tennis.sportmicro.com/matches?away_team_id=eq.{away_team_id}`",
        "properties": {
          "id": {
            "description": "The id of the match\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "Home team name vs away team name",
            "format": "character varying",
            "type": "string"
          },
          "first_to_serve": {
            "description": "The first to serve in the match",
            "format": "integer",
            "type": "integer"
          },
          "ground_type": {
            "description": "The ground type of the match",
            "format": "text",
            "type": "string"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "tournament_importance": {
            "description": "The importance of the tournament",
            "format": "integer",
            "type": "integer"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "round_id": {
            "description": "The id of the round\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "round": {
            "description": "The round",
            "format": "jsonb"
          },
          "status": {
            "description": "The status of the match",
            "format": "jsonb"
          },
          "status_type": {
            "description": "The type of the match",
            "format": "text",
            "type": "string"
          },
          "arena_id": {
            "description": "The id of the arena\n\nNote:\nThis is a Foreign Key to `arenas.id`.<fk table='arenas' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "arena_name": {
            "description": "The name of the arena",
            "format": "text",
            "type": "string"
          },
          "arena_hash_image": {
            "description": "The name image of the arena",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "home_team_id": {
            "description": "The id of the home team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "home_team_name": {
            "description": "The name of the home team",
            "format": "text",
            "type": "string"
          },
          "home_team_hash_image": {
            "description": "The name image of the home team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "away_team_id": {
            "description": "The id of the away team\n\nNote:\nThis is a Foreign Key to `teams.id`.<fk table='teams' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "away_team_name": {
            "description": "The name of the away team",
            "format": "text",
            "type": "string"
          },
          "away_team_hash_image": {
            "description": "The name image of the away team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "home_team_score": {
            "description": "The score of the home team",
            "format": "jsonb"
          },
          "away_team_score": {
            "description": "The score of the away team",
            "format": "jsonb"
          },
          "times": {
            "description": "The time of the match",
            "format": "jsonb"
          },
          "specific_start_time": {
            "description": "The real start time of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "start_time": {
            "description": "The official start time of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "end_time": {
            "description": "The end of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "duration": {
            "description": "The duration of the match",
            "format": "integer",
            "type": "integer"
          },
          "last_period": {
            "description": "The last period of the match",
            "format": "text",
            "type": "string"
          },
          "season_statistics_type": {
            "description": "The type of the season's statistics",
            "format": "text",
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name of the class image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name of the league image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "previous_leg_match_id": {
            "description": "The id of the previous leg match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "weather_id": {
            "description": "The id of the weather\n\nNote:\nThis is a Foreign Key to `matches-weather.id`.<fk table='matches-weather' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "weather_main": {
            "description": "The main weather",
            "format": "text",
            "type": "string"
          },
          "weather_icon": {
            "description": "The name icon of the weather",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "tournaments-by-class": {
        "description": "Tournaments by class\nThis endpoint allows you to retrieve the tournaments from a specific class.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **class_id**<br />`https://tennis.sportmicro.com/tournaments-by-class?class_id=eq.{class_id}`",
        "properties": {
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The hash image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-by-tournament": {
        "description": "Seasons by tournament\nThis endpoint allows you to retrieve the seasons from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **tournament_id**<br />`https://tennis.sportmicro.com/seasons-by-tournament?tournament_id=eq.{tournament_id}`",
        "properties": {
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "seasons": {
            "description": "The seasons",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons": {
        "description": "Seasons\nThis endpoint allows you to retrieve the seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons<br />`https://tennis.sportmicro.com/seasons`<br /><br />Get seasons based on the **id**<br />`https://tennis.sportmicro.com/seasons?id=eq.{id}`<br /><br />Get seasons from a specific **league_id**<br />`https://tennis.sportmicro.com/seasons?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "year": {
            "description": "The year of the season",
            "format": "text",
            "type": "string"
          },
          "start_time": {
            "description": "The start time of the season",
            "format": "text",
            "type": "string"
          },
          "end_time": {
            "description": "The end time of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "media-players": {
        "description": "Players media\nThis endpoint allows you to retrieve the media from players.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **player_id**<br />`https://tennis.sportmicro.com/media-players?player_id=eq.{player_id}`",
        "properties": {
          "id": {
            "description": "The id of the media\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "player_id": {
            "description": "The id of the player",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the media",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the media",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the media",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the media",
            "format": "text",
            "type": "string"
          },
          "date_published": {
            "description": "The date of publishing the media",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "channel_url": {
            "description": "The source url of the media",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "matches-tv-channels": {
        "description": "Tv channels\nThis endpoint allows you to retrieve the tv channels for matches from all countries.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet tv channels from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}`<br /><br />Get tv channels from a specific **match_id** and **alpha**<br />`https://tennis.sportmicro.com/matches-tv-channels?match_id=eq.{match_id}&alpha=eq.{alpha}`",
        "properties": {
          "match_id": {
            "description": "The id of the match",
            "format": "integer",
            "type": "integer"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "alpha": {
            "description": "The alpha2 of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "tv_channels": {
            "description": "The tv channels",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "seasons-info": {
        "description": "Info\nThis endpoint allows you to retrieve the info from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet info from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-info?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "home_wins": {
            "description": "The number of home team wins by the season",
            "format": "integer",
            "type": "integer"
          },
          "away_wins": {
            "description": "The number of away team wins by the season",
            "format": "integer",
            "type": "integer"
          },
          "draws": {
            "description": "The number of draws by the season",
            "format": "integer",
            "type": "integer"
          },
          "rounds": {
            "description": "The number of rounds by the season",
            "format": "integer",
            "type": "integer"
          },
          "competitors": {
            "description": "The number of competitors by the season",
            "format": "integer",
            "type": "integer"
          },
          "total_prize_money": {
            "description": "The number of total prize money by the season",
            "format": "integer",
            "type": "integer"
          },
          "total_prize_money_currency": {
            "description": "The currency of the total prize money by the season",
            "format": "text",
            "type": "string"
          },
          "city": {
            "description": "The host city of the season",
            "format": "text",
            "type": "string"
          },
          "countries": {
            "description": "The host countries of the season",
            "format": "text[]",
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "type": "object"
      },
      "referees-by-country": {
        "description": "Referees by country\nThis endpoint allows you to retrieve the referees from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **country_id**<br />`https://tennis.sportmicro.com/referees-by-country?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-by-date": {
        "description": "Matches by date\nThis endpoint allows you to retrieve the matches from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date**<br />`https://tennis.sportmicro.com/matches-by-date?date=eq.{date}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "matches": {
            "description": "The matches",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "agg-news-leagues": {
        "description": "Leagues news\nThis endpoint allows you to retrieve aggregated news from leagues.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet the news from a specific **league_id**<br />`https://tennis.sportmicro.com/agg-news-leagues?league_id=eq.{league_id}`",
        "properties": {},
        "type": "object"
      },
      "agg-news-teams": {
        "description": "Teams news\nThis endpoint allows you to retrieve aggregated news from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet the news from a specific **team_id**<br />`https://tennis.sportmicro.com/agg-news-teams?team_id=eq.{team_id}`",
        "properties": {},
        "type": "object"
      },
      "matches-live": {
        "description": "Live matches\nThis endpoint allows you to retrieve the live matches.\n\nIt has the same results as the /matches endpoint.",
        "properties": {},
        "type": "object"
      },
      "countries": {
        "description": "Countries\nThis endpoint allows you to retrieve the countries.\nYou can use the `alpha` field to get the country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per week.\n\nYou can get the image of the country by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet countries<br />`https://tennis.sportmicro.com/countries`<br /><br />Get country based on the **id**<br />`https://tennis.sportmicro.com/countries?id=eq.{id}`<br /><br />Get countries based on the **alpha**<br />`https://tennis.sportmicro.com/countries?alpha=eq.{alpha}`",
        "properties": {
          "id": {
            "description": "The id of the country\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "alpha": {
            "description": "The alpha name of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "matches-point-by-points": {
        "description": "Point by points\nThis endpoint allows you to retrieve the point by points from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet points from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-point-by-points?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "sets": {
            "description": "The sets of the match",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "arenas": {
        "description": "Arenas\nThis endpoint allows you to retrieve the arenas.\nWith geolocation parameter from `geolocations` endpoint we can see latitude and longitute of the arena.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the arena by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet arenas<br />`https://tennis.sportmicro.com/arenas`<br /><br />Get arenas based on the **id**<br />`https://tennis.sportmicro.com/arenas?id=eq.{id}`<br /><br />Get arenas from a specific **country_id**<br />`https://tennis.sportmicro.com/arenas?country_id=eq.{country_id}`",
        "properties": {
          "id": {
            "description": "The id of the arena\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the arena",
            "format": "text",
            "type": "string"
          },
          "city": {
            "description": "The city of the arena",
            "format": "text",
            "type": "string"
          },
          "stadium_capacity": {
            "description": "The capacity of the stadium",
            "format": "integer",
            "type": "integer"
          },
          "built": {
            "description": "The built date of the arena",
            "format": "text",
            "type": "string"
          },
          "opened": {
            "description": "The date when the arena opened",
            "format": "text",
            "type": "string"
          },
          "owner": {
            "description": "The owner of the arena",
            "format": "text",
            "type": "string"
          },
          "operator": {
            "description": "The operator of the arena",
            "format": "text",
            "type": "string"
          },
          "surface": {
            "description": "The surface of the arena",
            "format": "text",
            "type": "string"
          },
          "cost": {
            "description": "The cost of the arena",
            "format": "text",
            "type": "string"
          },
          "dimensions": {
            "description": "The dimensions of the arena",
            "format": "text",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The name image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "geolocation": {
            "description": "The geolocation",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "leagues-info": {
        "description": "Info\nThis endpoint allows you to retrieve the info from leagues and cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\n### Use Cases\nGet league info from a specific **league_id**<br />`https://tennis.sportmicro.com/leagues-info?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "competition_name": {
            "description": "The name of the competition",
            "format": "text",
            "type": "string"
          },
          "city_name": {
            "description": "The city of the league",
            "format": "text",
            "type": "string"
          },
          "playing_months": {
            "description": "The months playing in the league",
            "format": "integer[]",
            "items": {
              "type": "integer"
            },
            "type": "array"
          },
          "surface_type": {
            "description": "The surface",
            "format": "text",
            "type": "string"
          },
          "qualification_rounds_played": {
            "description": "The rounds played in the league",
            "format": "integer",
            "type": "integer"
          },
          "main_rounds_played": {
            "description": "The main rounds played in the league",
            "format": "integer",
            "type": "integer"
          },
          "prize_money": {
            "description": "The amount of the prize money for winning the tournament",
            "format": "text",
            "type": "string"
          },
          "match_type": {
            "description": "The match type",
            "format": "text",
            "type": "string"
          },
          "most_title_names": {
            "description": "The teams with most titles",
            "format": "jsonb"
          },
          "number_of_teams": {
            "description": "The number of the teams in the league",
            "format": "integer",
            "type": "integer"
          },
          "number_of_groups": {
            "description": "The number of the groups in the league",
            "format": "integer",
            "type": "integer"
          },
          "age_category": {
            "description": "The age class of the league",
            "format": "text",
            "type": "string"
          },
          "category": {
            "description": "The class of the league",
            "format": "text",
            "type": "string"
          },
          "league_gender": {
            "description": "The gender people playing in the league",
            "format": "text",
            "type": "string"
          },
          "first_season_start_year": {
            "description": "First season start year",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "tournaments": {
        "description": "Tournaments\nThis endpoint allows you to retrieve the tournaments.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments<br />`https://tennis.sportmicro.com/tournaments`<br /><br />Get tournaments based on the **id**<br />`https://tennis.sportmicro.com/tournaments?id=eq.{id}`<br /><br />Get tournaments from a specific **league_id**<br />`https://tennis.sportmicro.com/tournaments?league_id=eq.{league_id}`<br /><br />Get tournaments from a specific **class_id**<br />`https://tennis.sportmicro.com/tournaments?class_id=eq.{class_id}`",
        "properties": {
          "id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "importance": {
            "description": "The importance level of the tournament",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "news-matches": {
        "description": "Matches news\nThis endpoint allows you to retrieve the news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 2 hours.<br />**Recommended Calls**: Limit calls to 1 every 2 hours.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://tennis.sportmicro.com/news-matches?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the news",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match",
            "format": "integer",
            "type": "integer"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "date": {
            "description": "The date of the match",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "title": {
            "description": "The title of the news",
            "format": "text",
            "type": "string"
          },
          "name": {
            "description": "The name of the news",
            "format": "text",
            "type": "string"
          },
          "subtitles": {
            "description": "The subtitles",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "leagues-by-date": {
        "description": "Leagues by date\nThis endpoint allows you to retrieve the leagues from a specific date. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet leagues from a specific **date**<br />`https://tennis.sportmicro.com/leagues-by-date?date=eq.{date}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "leagues": {
            "description": "The leagues",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "leagues": {
        "description": "Leagues\nThis endpoint allows you to retrieve the leagues and the cups.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 every day.\n\nYou can get the image of the league by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet leagues<br />`https://tennis.sportmicro.com/leagues`<br /><br />Search the leagues by the `name`<br />`https://tennis.sportmicro.com/leagues?name=like.*Championship*`<br /><br />Get leagues based on the **id**<br />`https://tennis.sportmicro.com/leagues?id=eq.{id}`<br /><br />Get leagues from a specific **class_id**<br />`https://tennis.sportmicro.com/leagues?class_id=eq.{class_id}`",
        "properties": {
          "id": {
            "description": "The id of the league\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "importance": {
            "description": "The importance level of the league",
            "format": "integer",
            "type": "integer"
          },
          "current_champion_team_id": {
            "description": "The id of the team that hold the title",
            "format": "integer",
            "type": "integer"
          },
          "current_champion_team_name": {
            "description": "The name of the team that hold the title",
            "format": "text",
            "type": "string"
          },
          "current_champion_team_hash_image": {
            "description": "The name image of the team that hold the title",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "current_champion_team_num_titles": {
            "description": "The number of the title that the team is holding",
            "format": "integer",
            "type": "integer"
          },
          "teams_most_titles": {
            "description": "The ids of the teams with the most titles",
            "format": "jsonb"
          },
          "most_titles": {
            "description": "The number of the most titles accomplished by one team",
            "format": "integer",
            "type": "integer"
          },
          "ground": {
            "description": "The default ground type of the league",
            "format": "text",
            "type": "string"
          },
          "number_of_sets": {
            "description": "The default number of sets in the league",
            "format": "integer",
            "type": "integer"
          },
          "max_points": {
            "description": "The max number of points in one game",
            "format": "integer",
            "type": "integer"
          },
          "primary_color": {
            "description": "The primary color of the league",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "secondary_color": {
            "description": "The secondary color of the league",
            "format": "character varying",
            "maxLength": 7,
            "type": "string"
          },
          "start_league": {
            "description": "The date of starting the league",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "end_league": {
            "description": "The date of ending the league",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "class_id": {
            "description": "The id of the class\n\nNote:\nThis is a Foreign Key to `classes.id`.<fk table='classes' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "class_name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "class_hash_image": {
            "description": "The name image of the class",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "tournaments-by-league": {
        "description": "Tournaments by league\nThis endpoint allows you to retrieve the tournaments from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tournaments from a specific **league_id**<br />`https://tennis.sportmicro.com/tournaments-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "teams-by-league": {
        "description": "Teams by league\nThis endpoint allows you to retrieve the teams from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **league_id**<br />`https://tennis.sportmicro.com/teams-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "cup-bracket": {
        "description": "Cup bracket\nThis endpoint allows you to retrieve the cup knock outs.\nYou can use `id` from the `seasons` or `leagues` endpoint to get the wanted cup knock out tree.\n\nFields in rounds:\n\nField | Explanation\n--- | ---\n`order` | The order of the round\n`description` | The description of the round\n`blocks` | The blocks of the round\n`finished` | If the match is finished\n`order` | The order of the block\n`home_team_score` | The score of the home team\n`away_team_score` | The score of the away team\n`has_next_round_link` | If the match has next round\n`match_in_progress` | If the match is in play\n`series_start_date_timestamp` | The start date of the match\n`automatic_progression` | If the match has automatic progression\n`participants` | The participants of the block (match)\n`team_id` | The id of the team\n`winner` | If the team is winner of the block\n`order` | The order of the participants\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet cup knock out based on the **id**<br />`https://tennis.sportmicro.com/cup-bracket?id=eq.{id}`<br /><br />Get cups based on the **season_id**<br />`https://tennis.sportmicro.com/cup-bracket?season_id=eq.{season_id}`<br /><br />Get cups based on the **league_id**<br />`https://tennis.sportmicro.com/cup-bracket?league_id=eq.{league_id}`",
        "properties": {
          "id": {
            "description": "The id of the cup bracket\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the cup bracket",
            "format": "text",
            "type": "string"
          },
          "current_round": {
            "description": "The last or the current round in the cup bracket",
            "format": "integer",
            "type": "integer"
          },
          "type": {
            "description": "The type of the cup bracket",
            "format": "integer",
            "type": "integer"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "rounds": {
            "description": "The rounds of the cup bracket",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "matches-by-date-league": {
        "description": "Matches by date and league\nThis endpoint allows you to retrieve the matches from a specific date and league. The date has a format of YYYY-DD-MM.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet matches from a specific **date** and **league_id**<br />`https://tennis.sportmicro.com/matches-by-date-league?date=eq.{date}&league_id=eq.{league_id}`",
        "properties": {
          "date": {
            "description": "The date",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "matches": {
            "description": "The matches",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "arenas-by-country": {
        "description": "Arenas by country\nThis endpoint allows you to retrieve the arenas from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet arenas from a specific **country_id**<br />`https://tennis.sportmicro.com/arenas-by-country?country_id=eq.{country_id}`",
        "properties": {
          "country_id": {
            "description": "The id of the country\n\nNote:\nThis is a Foreign Key to `countries.id`.<fk table='countries' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "country_name": {
            "description": "The name of the country",
            "format": "text",
            "type": "string"
          },
          "country_hash_image": {
            "description": "The hash image of the country",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "arenas": {
            "description": "The arenas",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "coaches-career": {
        "description": "Coaches career\nThis endpoint allows you to retrieve the careers from coaches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet career from a specific **coach_id**<br />`https://tennis.sportmicro.com/coaches-career?coach_id=eq.{coach_id}`",
        "properties": {},
        "type": "object"
      },
      "coaches-by-country": {
        "description": "Coaches by country\nThis endpoint allows you to retrieve the coaches from a specific country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet coaches from a specific **country_id**<br />`https://tennis.sportmicro.com/coaches-by-country?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "teams-by-tournament": {
        "description": "Teams by tournament\nThis endpoint allows you to retrieve the teams from a specific tournament.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **tournament_id**<br />`https://tennis.sportmicro.com/teams-by-tournament?tournament_id=eq.{tournament_id}`",
        "properties": {
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "matches-highlights": {
        "description": "Highlights\nThis endpoint allows you to retrieve the highlights from matches.\nIt has all social media posts about the match.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 10 seconds during a live match.<br />**Recommended Calls**: Limit calls to 1 per 10 seconds during a live match.\n\n### Use Cases\nGet highlights from a specific **match_id**<br />`https://tennis.sportmicro.com/matches-highlights?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the highlight\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the highlight",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the highlight",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the highlight",
            "format": "text",
            "type": "string"
          },
          "created_at": {
            "description": "The publishing date of the highlight",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "source_url": {
            "description": "The source url of the highlight",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "classes": {
        "description": "Classes\nThis endpoint allows you to retrieve the classes.\nYou can use the `alpha` parameter to get a specific class as a country.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times per day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can get the image of the category by calling the following url: `https://images.sportmicro.com/{hash_image}.png`\n\n### Use Cases\nGet classes<br />`https://tennis.sportmicro.com/classes`<br /><br />Get class based on the **id**<br />`https://tennis.sportmicro.com/classes?id=eq.{id}`<br /><br />Get classes based on the **alpha**<br />`https://tennis.sportmicro.com/classes?alpha=eq.{alpha}`",
        "properties": {
          "id": {
            "description": "The id of the class\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the class",
            "format": "text",
            "type": "string"
          },
          "flag": {
            "description": "The flag of the class",
            "format": "text",
            "type": "string"
          },
          "alpha": {
            "description": "The alpha name of the country",
            "format": "character varying",
            "maxLength": 2,
            "type": "string"
          },
          "importance": {
            "description": "The importance of the class specified with a number",
            "format": "integer",
            "type": "integer"
          },
          "hash_image": {
            "description": "The name of the image",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "seasons-rounds": {
        "description": "Rounds\nThis endpoint allows you to retrieve the rounds from seasons.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet rounds from a specific **season_id**<br />`https://tennis.sportmicro.com/seasons-rounds?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "rounds": {
            "description": "The rounds of the season",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "agg-news-matches": {
        "description": "Matches news\nThis endpoint allows you to retrieve aggregated news from matches.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every 15 minutes.<br />**Recommended Calls**: Limit calls to 1 every 15 minutes.\n\n### Use Cases\nGet news from a specific **match_id**<br />`https://tennis.sportmicro.com/agg-news-matches?match_id=eq.{match_id}`",
        "properties": {
          "id": {
            "description": "The id of the news\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "match_id": {
            "description": "The id of the match\n\nNote:\nThis is a Foreign Key to `matches.id`.<fk table='matches' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the news",
            "format": "text",
            "type": "string"
          },
          "link": {
            "description": "The link of the news",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the news",
            "format": "text",
            "type": "string"
          },
          "description": {
            "description": "The description of the news",
            "format": "text",
            "type": "string"
          },
          "published_date": {
            "description": "The published date of the news",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "source_url": {
            "description": "The source url of the news",
            "format": "text",
            "type": "string"
          },
          "source": {
            "description": "The source of the news",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "media-teams": {
        "description": "Teams media\nThis endpoint allows you to retrieve the media from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a day.<br />**Recommended Calls**: Limit calls to 1 per hour.\n\n### Use Cases\nGet media from a specific **team_id**<br />`https://tennis.sportmicro.com/media-teams?team_id=eq.{team_id}`",
        "properties": {
          "id": {
            "description": "The id of the media\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "team_id": {
            "description": "The id of the team",
            "format": "integer",
            "type": "integer"
          },
          "title": {
            "description": "The title of the media",
            "format": "text",
            "type": "string"
          },
          "subtitle": {
            "description": "The subtitle of the media",
            "format": "text",
            "type": "string"
          },
          "url": {
            "description": "The url of the media",
            "format": "text",
            "type": "string"
          },
          "thumbnail_url": {
            "description": "The thumbnail url of the media",
            "format": "text",
            "type": "string"
          },
          "date_published": {
            "description": "The date of publishing the media",
            "format": "timestamp with time zone",
            "type": "string"
          },
          "channel_url": {
            "description": "The source url of the media",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "tv-channels": {
        "description": "Tv channels\nThis endpoint allows you to retrieve the tv channels.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated several times a week.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet tv channels<br />`https://tennis.sportmicro.com/tv-channels`<br /><br />Get tv channels based on the **name**<br />`https://tennis.sportmicro.com/tv-channels?name=like.*Sportklub*`<br /><br />Get tv channels based on the **id**<br />`https://tennis.sportmicro.com/tv-channels?id=eq.{id}`",
        "properties": {
          "id": {
            "description": "The id of the tv channel\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the tv channel",
            "format": "text",
            "type": "string"
          }
        },
        "type": "object"
      },
      "standings": {
        "description": "Standings\nThis endpoint allows you to retrieve the standings.\nFor the type argument you can search by: **home**, **away** and **total**.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated after every finished match.<br />**Recommended Calls**: Limit calls to 1 per finished match.\n\n### Use Cases\nGet standings<br />`https://tennis.sportmicro.com/standings`<br /><br />Get standing based on the **id**<br />`https://tennis.sportmicro.com/standings?id=eq.{id}`<br /><br />Get standing from a specific **league_id**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}`<br /><br />Get standing from a specific **league_id** and **season_id**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}`<br /><br />Get standing from a specific **league_id**, **season_id** and **type**<br />`https://tennis.sportmicro.com/standings?league_id=eq.{league_id}&season_id=eq.{season_id}&type=eq.{type}`",
        "properties": {
          "id": {
            "description": "The id of the standing\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_id": {
            "description": "The id of the tournament\n\nNote:\nThis is a Foreign Key to `seasons-by-tournament.tournament_id`.<fk table='seasons-by-tournament' column='tournament_id'/>",
            "format": "integer",
            "type": "integer"
          },
          "tournament_name": {
            "description": "The name of the tournament",
            "format": "text",
            "type": "string"
          },
          "type": {
            "description": "The type of the standing",
            "format": "text",
            "type": "string"
          },
          "name": {
            "description": "The name of the standing",
            "format": "text",
            "type": "string"
          },
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Foreign Key to `seasons.id`.<fk table='seasons' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "league_id": {
            "description": "The id of the league\n\nNote:\nThis is a Foreign Key to `leagues.id`.<fk table='leagues' column='id'/>",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The name image of the league",
            "format": "text",
            "type": "string"
          },
          "competitors": {
            "description": "The competitors of the standing",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "referees-by-league": {
        "description": "Referees by league\nThis endpoint allows you to retrieve the referees from a specific league.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees from a specific **league_id**<br />`https://tennis.sportmicro.com/referees-by-league?league_id=eq.{league_id}`",
        "properties": {
          "league_id": {
            "description": "The id of the league",
            "format": "integer",
            "type": "integer"
          },
          "league_name": {
            "description": "The name of the league",
            "format": "text",
            "type": "string"
          },
          "league_hash_image": {
            "description": "The hash image of the league",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "teams-seasons": {
        "description": "Seasons\nThis endpoint allows you to retrieve the seasons from teams.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet seasons from a specific **team_id**<br />`https://tennis.sportmicro.com/teams-seasons?team_id=eq.{team_id}`",
        "properties": {
          "team_id": {
            "description": "The id of the team\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "team_name": {
            "description": "The name of the team",
            "format": "text",
            "type": "string"
          },
          "team_hash_image": {
            "description": "The hash image of the team",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          },
          "tournaments": {
            "description": "The tournaments of the team playing",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "referees": {
        "description": "Referees\nThis endpoint allows you to retrieve the referees.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet referees based on the **id**<br />`https://tennis.sportmicro.com/referees?id=eq.{id}`<br /><br />Get referees from a specific **country_id**<br />`https://tennis.sportmicro.com/referees?country_id=eq.{country_id}`",
        "properties": {},
        "type": "object"
      },
      "teams-by-season": {
        "description": "Teams by season\nThis endpoint allows you to retrieve the teams from a specific season.\n\n> **Multi-language**: This feature allows the user to manually change the language of the API response by adding value to the `lang` attribute. Example: `lang=en`.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\n### Use Cases\nGet teams from a specific **season_id**<br />`https://tennis.sportmicro.com/teams-by-season?season_id=eq.{season_id}`",
        "properties": {
          "season_id": {
            "description": "The id of the season\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "season_name": {
            "description": "The name of the season",
            "format": "text",
            "type": "string"
          },
          "teams": {
            "description": "The teams",
            "format": "jsonb"
          }
        },
        "type": "object"
      },
      "match-winner-movements": {
        "description": "Match winner odds movements\nThis endpoint allows you to retrieve the odds movements from match winner market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **match_winner_id**<br />`https://tennis.sportmicro.com/odds/match-winner-movements?match_winner_id=eq.{match_winner_id}`",
        "properties": {},
        "type": "object"
      },
      "match-winner": {
        "description": "Match winner odds\nThis endpoint allows you to retrieve the odds from match winner market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-winner?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      },
      "match-handicap-movements": {
        "description": "Match handicap odds movements\nThis endpoint allows you to retrieve the odds movements from match handicap market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **match_handicap_id**<br />`https://tennis.sportmicro.com/odds/match-handicap-movements?match_handicap_id=eq.{match_handicap_id}`",
        "properties": {},
        "type": "object"
      },
      "coverage": {
        "description": "Odds Coverages\nThis endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all coverages<br />`https://tennis.sportmicro.com/odds/coverage`<br /><br />Get odds coverages from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/coverage?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "match_winner": {
            "description": "Coverage of match_winner",
            "format": "boolean",
            "type": "boolean"
          },
          "total_sets_games": {
            "description": "Coverage of total_sets_games",
            "format": "boolean",
            "type": "boolean"
          },
          "match_handicap": {
            "description": "Coverage of match_handicap",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "bookmakers": {
        "description": "Bookmakers\nThis endpoint allows you to retrieve information about all bookmakers.\n\nWith the help of the `popularity_order` parameter you can see which bookmaker is more popular and more used.\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every day.<br />**Recommended Calls**: Limit calls to 1 per day.\n\nYou can retrieve the image of a bookmaker by calling the following URL: https://images.sportmicro.com/{hash_image}.png\n\n### Use Cases\nGet all bookmakers<br />`https://tennis.sportmicro.com/odds/bookmakers`<br /><br />Get information about a specific bookmaker based on the **id**<br />`https://tennis.sportmicro.com/odds/bookmakers?id=eq.{id}`<br /><br />Get the most popular bookmakers<br />`https://tennis.sportmicro.com/odds/bookmakers?order=popularity_order`",
        "properties": {
          "id": {
            "description": "The id of the bookmaker. example:`eq.{id}`\n\nNote:\nThis is a Primary Key.<pk/>",
            "format": "integer",
            "type": "integer"
          },
          "name": {
            "description": "The name of the bookmaker",
            "format": "text",
            "type": "string"
          },
          "popularity_order": {
            "description": "The popularity score of the bookmaker",
            "format": "text",
            "type": "string"
          },
          "hash_image": {
            "description": "The hash image of the bookmaker",
            "format": "character varying",
            "maxLength": 64,
            "type": "string"
          }
        },
        "type": "object"
      },
      "coverage-live": {
        "description": "Live odds coverages\nThis endpoint allows you to retrieve information about all matches coverages.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet all live coverages<br />`https://tennis.sportmicro.com/odds/coverage-live`<br /><br />Get live odds coverage a specific **match_id**<br />`https://tennis.sportmicro.com/odds/coverage-live?match_id=eq.{match_id}`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "match_winner": {
            "description": "Coverage of match_winner",
            "format": "boolean",
            "type": "boolean"
          },
          "total_sets_games": {
            "description": "Coverage of total_sets_games",
            "format": "boolean",
            "type": "boolean"
          },
          "match_handicap": {
            "description": "Coverage of match_handicap",
            "format": "boolean",
            "type": "boolean"
          },
          "correct_score": {
            "description": "Coverage of correct_score",
            "format": "boolean",
            "type": "boolean"
          },
          "odd_even": {
            "description": "Coverage of odd_even",
            "format": "boolean",
            "type": "boolean"
          }
        },
        "type": "object"
      },
      "correct-score": {
        "description": "Correct score odds\nThis endpoint allows you to retrieve the odds from correct score market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/correct-score?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      },
      "total-sets-games-movements": {
        "description": "Total sets games odds movements\nThis endpoint allows you to retrieve the odds movements from total sets games market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **total_sets_games_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games-movements?total_sets_games_id=eq.{total_sets_games_id}`",
        "properties": {},
        "type": "object"
      },
      "correct-score-movements": {
        "description": "Correct score odds movements\nThis endpoint allows you to retrieve the odds movements from correct score market.\n\nThe movements are available only for past matches within the last 6 months.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **correct_score_id**<br />`https://tennis.sportmicro.com/odds/correct-score-movements?correct_score_id=eq.{correct_score_id}`",
        "properties": {},
        "type": "object"
      },
      "total-sets-games": {
        "description": "Total sets games odds\nThis endpoint allows you to retrieve the odds from total sets games market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/total-sets-games?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      },
      "odd-even-movements": {
        "description": "Odd even odds movements\nThis endpoint allows you to retrieve the odds movements from odd even market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: The endpoint is updated every minute.<br />**Recommended Calls**: Limit calls to 1 per minute.\n\n### Use Cases\nGet the movements from a specific **odd_even_id**<br />`https://tennis.sportmicro.com/odds/odd-even-movements?odd_even_id=eq.{odd_even_id}`",
        "properties": {},
        "type": "object"
      },
      "match-handicap": {
        "description": "Match handicap odds\nThis endpoint allows you to retrieve the odds from match handicap market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.<br />**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/match-handicap?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      },
      "odd-even": {
        "description": "Odd even odds\nThis endpoint allows you to retrieve the odds from odd even market.\n\n> **Pagination**: The endpoint uses an offset and limit system. Specify the offset and limit parameters to fetch the desired range of results. The maximum and default number of results per request is 50.\n\n**Update Period**: Live and today's matches are updated every minute, while other matches are updated every hour.\n\n**Recommended Calls**: Limit calls to 1 per minute for live and today's matches, and 1 per hour for other matches.\n\n### Use Cases\nGet the odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}`<br /><br />Get the live odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.true`<br /><br />Get the pre-match odds from a specific **match_id**<br />`https://tennis.sportmicro.com/odds/odd-even?match_id=eq.{match_id}&is_live=eq.false`",
        "properties": {
          "match_id": {
            "description": "The id of the match. example:`eq.{match_id}`",
            "format": "integer",
            "type": "integer"
          },
          "is_live": {
            "description": "If the match is live. example:`eq.{is_live}`",
            "format": "boolean",
            "type": "boolean"
          },
          "periods": {
            "description": "Periods",
            "format": "json"
          }
        },
        "type": "object"
      }
    }
  }
}
