File:2019 tour de france top contenders.svg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(SVG file, nominally 1,111 × 578 pixels, file size: 66 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: The time behind the leader of the 2019 Tour de France for the top 5 riders and Thibaut Pinot:
 
Egan Bernal
 
Geraint Thomas
 
Steven Kruijswijk
 
Thibaut Pinot
 
Emanuel Buchmann
 
Julian Alaphilippe
Date
Source Own work
Author Falcorian
SVG development
InfoField
 
The SVG code is valid.
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

#!/usr/bin/env python
# coding: utf-8

# In[1]:


import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from collections import namedtuple
from scipy.interpolate import interp1d
import numpy as np
from itertools import cycle
import matplotlib.patches as mpatches


# In[2]:


# Set plotting style
plt.style.use("seaborn-white")

WIDTH = 12
HEIGHT = 7

# Hardcoded Colors
YELLOW_JERSEY_COLOR = "gold"
GREEN_JERSEY_COLOR = "#2ca02c"
POLKADOT_JERSEY_COLOR = "#d62728"
WHITE_JERSEY_COLOR = "black"
LANTERNE_ROUGE_COLOR = "darkred"
OTHER_RIDER_COLOR = "grey"

# Default colors
prop_cycle = plt.rcParams['axes.prop_cycle']
DEFAULT_COLORS = cycle(prop_cycle.by_key()['color'])

get_ipython().run_line_magic('matplotlib', 'inline')


# In[3]:


def reset_color_cycle():
    return cycle(prop_cycle.by_key()['color'])


# In[4]:


DNF = 999

LAST_STAGE = 21

TOUR_YEAR = 2019


# # Helper functions

# In[5]:


RiderRow = namedtuple("RiderRow", ["rider", "final_place", "x", "y"])


# In[6]:


RiderPlotProp = namedtuple("RiderPlotProp", ["color", "y_nudge"], defaults=[OTHER_RIDER_COLOR, 0.])


# In[7]:


def make_plot_tuples(df, x_col="stage", y_col="gap_seconds"):
    """Creates a `rider_row` with riders, place, x, and y arrays."""
    # Get stage and final ranks
    finished_riders_by_rank = df[]["stage"]==LAST_STAGE][["rider", "rank"]]
    merged_df = pd.merge(left=df, right=finished_riders_by_rank, how="left", on="rider")
    merged_df = merged_df.rename(columns={"rank_x": "stage_rank", "rank_y": "final_rank"})
    merged_df["final_rank"] = merged_df["final_rank"].fillna(DNF)
    
    ordered_riders = merged_df[]["stage"]==1].sort_values(["final_rank"])[["rider", "final_rank"]].to_numpy()

    # Get the X, Y values for each rider
    rider_rows = []
    for rider, rank in ordered_riders:
        sub_df = merged_df[]["rider"]==rider]
        x = sub_df[x_col].to_numpy()
        y = sub_df[y_col].to_numpy()
        rider_rows.append(RiderRow(rider, rank, x, y))
        
    return rider_rows


# In[8]:


def get_zorder_alpha(color):
    alpha = 1
    zorder = 0
    
    if color == OTHER_RIDER_COLOR:
        zorder = -1
        alpha = 0.3
    elif color == YELLOW_JERSEY_COLOR:
        zorder = 1
    
    return zorder, alpha


# In[9]:


def plot_lines(x, y, color=OTHER_RIDER_COLOR, label=None):
    zorder, alpha = get_zorder_alpha(color)
  
    xnew = np.linspace(1, LAST_STAGE, num=1000, endpoint=True)
    cubic = interp1d(x, y, kind='cubic')
  
    if label is None or color == OTHER_RIDER_COLOR:
        label = None

    plt.plot(
        x, y, "-",
        #xnew, cubic(xnew), "-",
        alpha=alpha, 
        zorder=zorder, 
        color=color,
        markersize=7.5,
        linewidth=5,
        label=label,
    )


# In[10]:


def draw_left_legend(ax, special_riders):
    for line in ax.lines:
        label = line.get_label()
        if label.startswith("_"):
            continue
        
        try:
            y_nudge = special_riders[label].y_nudge
        except KeyError:
            y_nudge = 0
        
        color = line.get_color()
        y = line.get_ydata()[-1]
        # Hard-code to the end of the current plot, even if they dropped out
        x = LAST_STAGE 
        
        ax.annotate(
            s=label,
            xy=(x, y),
            xytext=(x+.3, y+y_nudge),
            color=color,
            size=20,
            weight="bold",
            va="center"
        )


# In[11]:


def make_plot(
    rider_rows, 
    top_n=None, 
    max_minute=None, 
    special_riders={}, 
    title=f"Tour de France {TOUR_YEAR}",
    plot_mountains=False,
    plot_mountain_lines=False,
):
    
    
    fig, ax = plt.subplots(figsize=(WIDTH, HEIGHT))

    # Set titles
    plt.title(title, fontsize=30)
    ax.set_ylabel("Minutes Behind the Leader", fontsize=20)
    ax.set_xlabel("Stage", fontsize=20)

    # Set the ticks to be every stage
    stages = tuple(range(1, 22))
    ax.set_xticks(stages)
    
    ax.tick_params(axis='both', which='major', labelsize=15)

    #plot_2d_hist(rider_rows)
    for rider, place, x, y in rider_rows:
        color = OTHER_RIDER_COLOR
        if place == 1:
            color = YELLOW_JERSEY_COLOR
        elif rider in special_riders:
            color = special_riders[rider].color
        elif top_n is not None and place > top_n and color == OTHER_RIDER_COLOR:
            continue

        plot_lines(x, y, color, label=rider)

    # Set ticks on the y axis
    if max_minute is not None:
        ax.set_ylim(-0.25, max_minute)
        
    plt.gca().invert_yaxis()
    draw_left_legend(ax, special_riders)
    
    sns.despine(trim=True)
    
    if plot_mountains:
        Y_MAX=0.97
        if plot_mountain_lines:
            y=277
            ax.axvline(18, color="black", linestyle="--", linewidth=2, ymax=Y_MAX, zorder=-2)
            ax.axvline(20, color="black", linestyle="--", linewidth=2, ymax=Y_MAX, zorder=-2)
            ax.axvline(12, color="black", linestyle="--", linewidth=2, ymax=Y_MAX, zorder=-2)
            ax.axvline(15, color="black", linestyle="--", linewidth=2, ymax=Y_MAX, zorder=-2)
        else:
            y=4.1

        ax.axvspan(18, 20, alpha=0.1, color="grey", zorder=-2, ymax=Y_MAX)
        ax.axvspan(12, 15, alpha=0.1, color="grey", zorder=-2, ymax=Y_MAX)
            
        ax.annotate(
            s="Alps",
            xy=(19, y),
            color="black",
            size=20,
            va="center",
            ha="center",
        )
        ax.annotate(
            s="Pyrenees",
            xy=(13.5, y),
            color="black",
            size=20,
            va="center",
            ha="center",
        )
       
    if top_n is not None:
        filename = f"/tmp/{TOUR_YEAR}_tour_de_france_top_{top_n}."
    else:
        filename = f"/tmp/{TOUR_YEAR}_tour_de_france."

    # Save to disk
    for ext in ("png", "svg"):
        fig.savefig(
            f"{filename}{ext}", bbox_inches="tight"
        )


# # Load the data

# In[12]:


df = pd.read_json(f"./data/{TOUR_YEAR}-tdf-dataframe.json", orient="table")


# In[13]:


df["gap_minutes"] = df["gap_seconds"] / 60
df["gap_hours"]   = df["gap_seconds"] / 3600


# In[14]:


rider_rows = make_plot_tuples(df, x_col="stage", y_col="gap_minutes")


# # Make the plots

# In[15]:


DEFAULT_COLORS = reset_color_cycle()

TOP_SPECIAL_RIDERS = {
    "Geraint Thomas": RiderPlotProp(next(DEFAULT_COLORS)),
    "Julian Alaphilippe": RiderPlotProp(next(DEFAULT_COLORS)),   
    "Steven Kruijswijk": RiderPlotProp(next(DEFAULT_COLORS)),
    "Emanuel Buchmann": RiderPlotProp(next(DEFAULT_COLORS), +0.05),
    "Thibaut Pinot": RiderPlotProp(next(DEFAULT_COLORS), -0.07),
}


# In[16]:


make_plot(
    rider_rows, 
    top_n=5, 
    max_minute=4.251, 
    special_riders=TOP_SPECIAL_RIDERS,
    title="Tour de France 2019: Top Contenders",
    plot_mountains=True,
)


# In[17]:


DEFAULT_COLORS = reset_color_cycle()

SPECIAL_RIDERS = {
    "Peter Sagan": RiderPlotProp(GREEN_JERSEY_COLOR),
    "Romain Bardet": RiderPlotProp(POLKADOT_JERSEY_COLOR, +3),
    "Yoann Offredo": RiderPlotProp(next(DEFAULT_COLORS), -10),
    "Sebastian Langeveld": RiderPlotProp(LANTERNE_ROUGE_COLOR),
    "Julian Alaphilippe": RiderPlotProp(next(DEFAULT_COLORS), +13), 
}


# In[18]:


make_plot(
    rider_rows, 
    special_riders=SPECIAL_RIDERS,
    plot_mountains=True,
    plot_mountain_lines=True,
)

Data

Data (collapsed)
{
    "schema": {
        "fields": [
            {
                "name": "index",
                "type": "integer"
            },
            {
                "name": "rank",
                "type": "integer"
            },
            {
                "name": "rider",
                "type": "string"
            },
            {
                "name": "rider no.",
                "type": "integer"
            },
            {
                "name": "team",
                "type": "string"
            },
            {
                "name": "times",
                "type": "string"
            },
            {
                "name": "gap",
                "type": "string"
            },
            {
                "name": "b",
                "type": "string"
            },
            {
                "name": "p",
                "type": "string"
            },
            {
                "name": "stage",
                "type": "integer"
            },
            {
                "name": "gap_seconds",
                "type": "number"
            },
            {
                "name": "times_seconds",
                "type": "number"
            }
        ],
        "primaryKey": [
            "index"
        ],
        "pandas_version": "0.20.0"
    },
    "data": [
        {
            "index": 0,
            "rank": 1,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 37''",
            "gap": "-",
            "b": "B : 10''",
            "p": "-",
            "stage": 1,
            "gap_seconds": 0.0,
            "times_seconds": 15757.0
        },
        {
            "index": 1,
            "rank": 2,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 41''",
            "gap": "+ 00h 00' 04''",
            "b": "B : 6''",
            "p": "-",
            "stage": 1,
            "gap_seconds": 4.0,
            "times_seconds": 15761.0
        },
        {
            "index": 2,
            "rank": 3,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "04h 22' 43''",
            "gap": "+ 00h 00' 06''",
            "b": "B : 4''",
            "p": "-",
            "stage": 1,
            "gap_seconds": 6.0,
            "times_seconds": 15763.0
        },
        {
            "index": 3,
            "rank": 4,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 4,
            "rank": 5,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 5,
            "rank": 6,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 6,
            "rank": 7,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 7,
            "rank": 8,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 8,
            "rank": 9,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 9,
            "rank": 10,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 10,
            "rank": 11,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 11,
            "rank": 12,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 12,
            "rank": 13,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 13,
            "rank": 14,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 14,
            "rank": 15,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 15,
            "rank": 16,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 16,
            "rank": 17,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 17,
            "rank": 18,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 18,
            "rank": 19,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 19,
            "rank": 20,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 20,
            "rank": 21,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 21,
            "rank": 22,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 22,
            "rank": 23,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 23,
            "rank": 24,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 24,
            "rank": 25,
            "rider": "Patrick Bevin",
            "rider no.": 112,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 25,
            "rank": 26,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 26,
            "rank": 27,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 27,
            "rank": 28,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 28,
            "rank": 29,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 29,
            "rank": 30,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 30,
            "rank": 31,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 31,
            "rank": 32,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 32,
            "rank": 33,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 33,
            "rank": 34,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 34,
            "rank": 35,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 35,
            "rank": 36,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 36,
            "rank": 37,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 37,
            "rank": 38,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 38,
            "rank": 39,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 39,
            "rank": 40,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 40,
            "rank": 41,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 41,
            "rank": 42,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 42,
            "rank": 43,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 43,
            "rank": 44,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 44,
            "rank": 45,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 45,
            "rank": 46,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 46,
            "rank": 47,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 47,
            "rank": 48,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 48,
            "rank": 49,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 49,
            "rank": 50,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 50,
            "rank": 51,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 51,
            "rank": 52,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 52,
            "rank": 53,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 53,
            "rank": 54,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 54,
            "rank": 55,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 55,
            "rank": 56,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 56,
            "rank": 57,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 57,
            "rank": 58,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 58,
            "rank": 59,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 59,
            "rank": 60,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 60,
            "rank": 61,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 61,
            "rank": 62,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 62,
            "rank": 63,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 63,
            "rank": 64,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 64,
            "rank": 65,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 65,
            "rank": 66,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 66,
            "rank": 67,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 67,
            "rank": 68,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 68,
            "rank": 69,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 69,
            "rank": 70,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 70,
            "rank": 71,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 71,
            "rank": 72,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 72,
            "rank": 73,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 73,
            "rank": 74,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 74,
            "rank": 75,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 75,
            "rank": 76,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 76,
            "rank": 77,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 77,
            "rank": 78,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 78,
            "rank": 79,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 79,
            "rank": 80,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 80,
            "rank": 81,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 81,
            "rank": 82,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 82,
            "rank": 83,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 83,
            "rank": 84,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 84,
            "rank": 85,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 85,
            "rank": 86,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 86,
            "rank": 87,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 87,
            "rank": 88,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 88,
            "rank": 89,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 89,
            "rank": 90,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 90,
            "rank": 91,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 91,
            "rank": 92,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 92,
            "rank": 93,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 93,
            "rank": 94,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 94,
            "rank": 95,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 95,
            "rank": 96,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 96,
            "rank": 97,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 97,
            "rank": 98,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 98,
            "rank": 99,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 99,
            "rank": 100,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 100,
            "rank": 101,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 101,
            "rank": 102,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 102,
            "rank": 103,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 103,
            "rank": 104,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 104,
            "rank": 105,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 105,
            "rank": 106,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 106,
            "rank": 107,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 107,
            "rank": 108,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 108,
            "rank": 109,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 109,
            "rank": 110,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 110,
            "rank": 111,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 111,
            "rank": 112,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 112,
            "rank": 113,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 113,
            "rank": 114,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 114,
            "rank": 115,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 115,
            "rank": 116,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 116,
            "rank": 117,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 117,
            "rank": 118,
            "rider": "Nicolas Edet",
            "rider no.": 153,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 118,
            "rank": 119,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 119,
            "rank": 120,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 120,
            "rank": 121,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 121,
            "rank": 122,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 122,
            "rank": 123,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 123,
            "rank": 124,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 124,
            "rank": 125,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 125,
            "rank": 126,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 126,
            "rank": 127,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 127,
            "rank": 128,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 128,
            "rank": 129,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 129,
            "rank": 130,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 130,
            "rank": 131,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 131,
            "rank": 132,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 132,
            "rank": 133,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 133,
            "rank": 134,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 134,
            "rank": 135,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 135,
            "rank": 136,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 136,
            "rank": 137,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 137,
            "rank": 138,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 138,
            "rank": 139,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 139,
            "rank": 140,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 140,
            "rank": 141,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 141,
            "rank": 142,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 142,
            "rank": 143,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 143,
            "rank": 144,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 144,
            "rank": 145,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 145,
            "rank": 146,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 146,
            "rank": 147,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 147,
            "rank": 148,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 148,
            "rank": 149,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 149,
            "rank": 150,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 150,
            "rank": 151,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 151,
            "rank": 152,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 152,
            "rank": 153,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 153,
            "rank": 154,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 154,
            "rank": 155,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 155,
            "rank": 156,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 156,
            "rank": 157,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 157,
            "rank": 158,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 158,
            "rank": 159,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 159,
            "rank": 160,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 160,
            "rank": 161,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 161,
            "rank": 162,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 162,
            "rank": 163,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 163,
            "rank": 164,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 164,
            "rank": 165,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 165,
            "rank": 166,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 166,
            "rank": 167,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 167,
            "rank": 168,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 168,
            "rank": 169,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 169,
            "rank": 170,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "04h 22' 47''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 10.0,
            "times_seconds": 15767.0
        },
        {
            "index": 170,
            "rank": 171,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 25' 53''",
            "gap": "+ 00h 03' 16''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 196.0,
            "times_seconds": 15953.0
        },
        {
            "index": 171,
            "rank": 172,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "04h 26' 19''",
            "gap": "+ 00h 03' 42''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 222.0,
            "times_seconds": 15979.0
        },
        {
            "index": 172,
            "rank": 173,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "04h 26' 58''",
            "gap": "+ 00h 04' 21''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 261.0,
            "times_seconds": 16018.0
        },
        {
            "index": 173,
            "rank": 174,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 26' 58''",
            "gap": "+ 00h 04' 21''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 261.0,
            "times_seconds": 16018.0
        },
        {
            "index": 174,
            "rank": 175,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "04h 26' 58''",
            "gap": "+ 00h 04' 21''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 261.0,
            "times_seconds": 16018.0
        },
        {
            "index": 175,
            "rank": 176,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "04h 27' 23''",
            "gap": "+ 00h 04' 46''",
            "b": "-",
            "p": "-",
            "stage": 1,
            "gap_seconds": 286.0,
            "times_seconds": 16043.0
        },
        {
            "index": 176,
            "rank": 1,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "04h 51' 34''",
            "gap": "-",
            "b": "B : 10''",
            "p": "-",
            "stage": 2,
            "gap_seconds": 0.0,
            "times_seconds": 17494.0
        },
        {
            "index": 177,
            "rank": 2,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "04h 51' 44''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 10.0,
            "times_seconds": 17504.0
        },
        {
            "index": 178,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "04h 51' 44''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 10.0,
            "times_seconds": 17504.0
        },
        {
            "index": 179,
            "rank": 4,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "04h 51' 44''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 10.0,
            "times_seconds": 17504.0
        },
        {
            "index": 180,
            "rank": 5,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "04h 51' 44''",
            "gap": "+ 00h 00' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 10.0,
            "times_seconds": 17504.0
        },
        {
            "index": 181,
            "rank": 6,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "04h 52' 04''",
            "gap": "+ 00h 00' 30''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 30.0,
            "times_seconds": 17524.0
        },
        {
            "index": 182,
            "rank": 7,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "04h 52' 04''",
            "gap": "+ 00h 00' 30''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 30.0,
            "times_seconds": 17524.0
        },
        {
            "index": 183,
            "rank": 8,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "04h 52' 04''",
            "gap": "+ 00h 00' 30''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 30.0,
            "times_seconds": 17524.0
        },
        {
            "index": 184,
            "rank": 9,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "04h 52' 04''",
            "gap": "+ 00h 00' 30''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 30.0,
            "times_seconds": 17524.0
        },
        {
            "index": 185,
            "rank": 10,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 52' 05''",
            "gap": "+ 00h 00' 31''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 31.0,
            "times_seconds": 17525.0
        },
        {
            "index": 186,
            "rank": 11,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 52' 05''",
            "gap": "+ 00h 00' 31''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 31.0,
            "times_seconds": 17525.0
        },
        {
            "index": 187,
            "rank": 12,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 52' 05''",
            "gap": "+ 00h 00' 31''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 31.0,
            "times_seconds": 17525.0
        },
        {
            "index": 188,
            "rank": 13,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 52' 05''",
            "gap": "+ 00h 00' 31''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 31.0,
            "times_seconds": 17525.0
        },
        {
            "index": 189,
            "rank": 14,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 52' 07''",
            "gap": "+ 00h 00' 33''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 33.0,
            "times_seconds": 17527.0
        },
        {
            "index": 190,
            "rank": 15,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 191,
            "rank": 16,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 192,
            "rank": 17,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 193,
            "rank": 18,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 194,
            "rank": 19,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 195,
            "rank": 20,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 196,
            "rank": 21,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 197,
            "rank": 22,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 198,
            "rank": 23,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 10''",
            "gap": "+ 00h 00' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 36.0,
            "times_seconds": 17530.0
        },
        {
            "index": 199,
            "rank": 24,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "04h 52' 12''",
            "gap": "+ 00h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 38.0,
            "times_seconds": 17532.0
        },
        {
            "index": 200,
            "rank": 25,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "04h 52' 12''",
            "gap": "+ 00h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 38.0,
            "times_seconds": 17532.0
        },
        {
            "index": 201,
            "rank": 26,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "04h 52' 12''",
            "gap": "+ 00h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 38.0,
            "times_seconds": 17532.0
        },
        {
            "index": 202,
            "rank": 27,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "04h 52' 12''",
            "gap": "+ 00h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 38.0,
            "times_seconds": 17532.0
        },
        {
            "index": 203,
            "rank": 28,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "04h 52' 12''",
            "gap": "+ 00h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 38.0,
            "times_seconds": 17532.0
        },
        {
            "index": 204,
            "rank": 29,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "04h 52' 14''",
            "gap": "+ 00h 00' 40''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 40.0,
            "times_seconds": 17534.0
        },
        {
            "index": 205,
            "rank": 30,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "04h 52' 15''",
            "gap": "+ 00h 00' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 41.0,
            "times_seconds": 17535.0
        },
        {
            "index": 206,
            "rank": 31,
            "rider": "Patrick Bevin",
            "rider no.": 112,
            "team": "Ccc Team",
            "times": "04h 52' 15''",
            "gap": "+ 00h 00' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 41.0,
            "times_seconds": 17535.0
        },
        {
            "index": 207,
            "rank": 32,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "04h 52' 15''",
            "gap": "+ 00h 00' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 41.0,
            "times_seconds": 17535.0
        },
        {
            "index": 208,
            "rank": 33,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "04h 52' 15''",
            "gap": "+ 00h 00' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 41.0,
            "times_seconds": 17535.0
        },
        {
            "index": 209,
            "rank": 34,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "04h 52' 15''",
            "gap": "+ 00h 00' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 41.0,
            "times_seconds": 17535.0
        },
        {
            "index": 210,
            "rank": 35,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "04h 52' 16''",
            "gap": "+ 00h 00' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 42.0,
            "times_seconds": 17536.0
        },
        {
            "index": 211,
            "rank": 36,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "04h 52' 16''",
            "gap": "+ 00h 00' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 42.0,
            "times_seconds": 17536.0
        },
        {
            "index": 212,
            "rank": 37,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "04h 52' 16''",
            "gap": "+ 00h 00' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 42.0,
            "times_seconds": 17536.0
        },
        {
            "index": 213,
            "rank": 38,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "04h 52' 16''",
            "gap": "+ 00h 00' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 42.0,
            "times_seconds": 17536.0
        },
        {
            "index": 214,
            "rank": 39,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "04h 52' 16''",
            "gap": "+ 00h 00' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 42.0,
            "times_seconds": 17536.0
        },
        {
            "index": 215,
            "rank": 40,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "04h 52' 19''",
            "gap": "+ 00h 00' 45''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 45.0,
            "times_seconds": 17539.0
        },
        {
            "index": 216,
            "rank": 41,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 217,
            "rank": 42,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 218,
            "rank": 43,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 219,
            "rank": 44,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 220,
            "rank": 45,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 221,
            "rank": 46,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 222,
            "rank": 47,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "04h 52' 20''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 46.0,
            "times_seconds": 17540.0
        },
        {
            "index": 223,
            "rank": 48,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 24''",
            "gap": "+ 00h 00' 50''",
            "b": "B : 6''",
            "p": "-",
            "stage": 2,
            "gap_seconds": 50.0,
            "times_seconds": 17544.0
        },
        {
            "index": 224,
            "rank": 49,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 225,
            "rank": 50,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 226,
            "rank": 51,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 227,
            "rank": 52,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 228,
            "rank": 53,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 229,
            "rank": 54,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 230,
            "rank": 55,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 231,
            "rank": 56,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 232,
            "rank": 57,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 233,
            "rank": 58,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 234,
            "rank": 59,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "04h 52' 25''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 51.0,
            "times_seconds": 17545.0
        },
        {
            "index": 235,
            "rank": 60,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 30''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 56.0,
            "times_seconds": 17550.0
        },
        {
            "index": 236,
            "rank": 61,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 30''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 56.0,
            "times_seconds": 17550.0
        },
        {
            "index": 237,
            "rank": 62,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 30''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 56.0,
            "times_seconds": 17550.0
        },
        {
            "index": 238,
            "rank": 63,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 30''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 56.0,
            "times_seconds": 17550.0
        },
        {
            "index": 239,
            "rank": 64,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "04h 52' 33''",
            "gap": "+ 00h 00' 59''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 59.0,
            "times_seconds": 17553.0
        },
        {
            "index": 240,
            "rank": 65,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "04h 52' 34''",
            "gap": "+ 00h 01' 00''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 60.0,
            "times_seconds": 17554.0
        },
        {
            "index": 241,
            "rank": 66,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 242,
            "rank": 67,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 243,
            "rank": 68,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 244,
            "rank": 69,
            "rider": "Nicolas Edet",
            "rider no.": 153,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 245,
            "rank": 70,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 246,
            "rank": 71,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 247,
            "rank": 72,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "04h 52' 37''",
            "gap": "+ 00h 01' 03''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 63.0,
            "times_seconds": 17557.0
        },
        {
            "index": 248,
            "rank": 73,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "04h 52' 38''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 64.0,
            "times_seconds": 17558.0
        },
        {
            "index": 249,
            "rank": 74,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "04h 52' 38''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 64.0,
            "times_seconds": 17558.0
        },
        {
            "index": 250,
            "rank": 75,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "04h 52' 38''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 64.0,
            "times_seconds": 17558.0
        },
        {
            "index": 251,
            "rank": 76,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "04h 52' 38''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 64.0,
            "times_seconds": 17558.0
        },
        {
            "index": 252,
            "rank": 77,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "04h 52' 38''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 64.0,
            "times_seconds": 17558.0
        },
        {
            "index": 253,
            "rank": 78,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 52' 41''",
            "gap": "+ 00h 01' 07''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 67.0,
            "times_seconds": 17561.0
        },
        {
            "index": 254,
            "rank": 79,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "04h 52' 43''",
            "gap": "+ 00h 01' 09''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 69.0,
            "times_seconds": 17563.0
        },
        {
            "index": 255,
            "rank": 80,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "04h 52' 43''",
            "gap": "+ 00h 01' 09''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 69.0,
            "times_seconds": 17563.0
        },
        {
            "index": 256,
            "rank": 81,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "04h 52' 43''",
            "gap": "+ 00h 01' 09''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 69.0,
            "times_seconds": 17563.0
        },
        {
            "index": 257,
            "rank": 82,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "04h 52' 43''",
            "gap": "+ 00h 01' 09''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 69.0,
            "times_seconds": 17563.0
        },
        {
            "index": 258,
            "rank": 83,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "04h 52' 44''",
            "gap": "+ 00h 01' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 70.0,
            "times_seconds": 17564.0
        },
        {
            "index": 259,
            "rank": 84,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "04h 52' 46''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 72.0,
            "times_seconds": 17566.0
        },
        {
            "index": 260,
            "rank": 85,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "04h 52' 46''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 72.0,
            "times_seconds": 17566.0
        },
        {
            "index": 261,
            "rank": 86,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 262,
            "rank": 87,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 263,
            "rank": 88,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 264,
            "rank": 89,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 265,
            "rank": 90,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 266,
            "rank": 91,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 267,
            "rank": 92,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 268,
            "rank": 93,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "04h 52' 47''",
            "gap": "+ 00h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 73.0,
            "times_seconds": 17567.0
        },
        {
            "index": 269,
            "rank": 94,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "04h 52' 48''",
            "gap": "+ 00h 01' 14''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 74.0,
            "times_seconds": 17568.0
        },
        {
            "index": 270,
            "rank": 95,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 271,
            "rank": 96,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 272,
            "rank": 97,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 273,
            "rank": 98,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 274,
            "rank": 99,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 275,
            "rank": 100,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "04h 52' 49''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 75.0,
            "times_seconds": 17569.0
        },
        {
            "index": 276,
            "rank": 101,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "04h 52' 51''",
            "gap": "+ 00h 01' 17''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 77.0,
            "times_seconds": 17571.0
        },
        {
            "index": 277,
            "rank": 102,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 278,
            "rank": 103,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 279,
            "rank": 104,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 280,
            "rank": 105,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 281,
            "rank": 106,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 282,
            "rank": 107,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "04h 53' 02''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 88.0,
            "times_seconds": 17582.0
        },
        {
            "index": 283,
            "rank": 108,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 03''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 89.0,
            "times_seconds": 17583.0
        },
        {
            "index": 284,
            "rank": 109,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 03''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 89.0,
            "times_seconds": 17583.0
        },
        {
            "index": 285,
            "rank": 110,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 03''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 89.0,
            "times_seconds": 17583.0
        },
        {
            "index": 286,
            "rank": 111,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 03''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 89.0,
            "times_seconds": 17583.0
        },
        {
            "index": 287,
            "rank": 112,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 03''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 89.0,
            "times_seconds": 17583.0
        },
        {
            "index": 288,
            "rank": 113,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "04h 53' 06''",
            "gap": "+ 00h 01' 32''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 92.0,
            "times_seconds": 17586.0
        },
        {
            "index": 289,
            "rank": 114,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "04h 53' 06''",
            "gap": "+ 00h 01' 32''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 92.0,
            "times_seconds": 17586.0
        },
        {
            "index": 290,
            "rank": 115,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "04h 53' 08''",
            "gap": "+ 00h 01' 34''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 94.0,
            "times_seconds": 17588.0
        },
        {
            "index": 291,
            "rank": 116,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "04h 53' 13''",
            "gap": "+ 00h 01' 39''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 99.0,
            "times_seconds": 17593.0
        },
        {
            "index": 292,
            "rank": 117,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 53' 14''",
            "gap": "+ 00h 01' 40''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 100.0,
            "times_seconds": 17594.0
        },
        {
            "index": 293,
            "rank": 118,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 20''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 106.0,
            "times_seconds": 17600.0
        },
        {
            "index": 294,
            "rank": 119,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "04h 53' 26''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 112.0,
            "times_seconds": 17606.0
        },
        {
            "index": 295,
            "rank": 120,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "04h 53' 26''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 112.0,
            "times_seconds": 17606.0
        },
        {
            "index": 296,
            "rank": 121,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "04h 53' 26''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 112.0,
            "times_seconds": 17606.0
        },
        {
            "index": 297,
            "rank": 122,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "04h 53' 26''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 112.0,
            "times_seconds": 17606.0
        },
        {
            "index": 298,
            "rank": 123,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "04h 53' 26''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 112.0,
            "times_seconds": 17606.0
        },
        {
            "index": 299,
            "rank": 124,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "04h 53' 29''",
            "gap": "+ 00h 01' 55''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 115.0,
            "times_seconds": 17609.0
        },
        {
            "index": 300,
            "rank": 125,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "04h 53' 32''",
            "gap": "+ 00h 01' 58''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 118.0,
            "times_seconds": 17612.0
        },
        {
            "index": 301,
            "rank": 126,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "04h 53' 35''",
            "gap": "+ 00h 02' 01''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 121.0,
            "times_seconds": 17615.0
        },
        {
            "index": 302,
            "rank": 127,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "04h 53' 35''",
            "gap": "+ 00h 02' 01''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 121.0,
            "times_seconds": 17615.0
        },
        {
            "index": 303,
            "rank": 128,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "04h 53' 35''",
            "gap": "+ 00h 02' 01''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 121.0,
            "times_seconds": 17615.0
        },
        {
            "index": 304,
            "rank": 129,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "04h 53' 35''",
            "gap": "+ 00h 02' 01''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 121.0,
            "times_seconds": 17615.0
        },
        {
            "index": 305,
            "rank": 130,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "04h 53' 36''",
            "gap": "+ 00h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 122.0,
            "times_seconds": 17616.0
        },
        {
            "index": 306,
            "rank": 131,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 42''",
            "gap": "+ 00h 02' 08''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 128.0,
            "times_seconds": 17622.0
        },
        {
            "index": 307,
            "rank": 132,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 42''",
            "gap": "+ 00h 02' 08''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 128.0,
            "times_seconds": 17622.0
        },
        {
            "index": 308,
            "rank": 133,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 42''",
            "gap": "+ 00h 02' 08''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 128.0,
            "times_seconds": 17622.0
        },
        {
            "index": 309,
            "rank": 134,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 42''",
            "gap": "+ 00h 02' 08''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 128.0,
            "times_seconds": 17622.0
        },
        {
            "index": 310,
            "rank": 135,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "04h 53' 43''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 129.0,
            "times_seconds": 17623.0
        },
        {
            "index": 311,
            "rank": 136,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "04h 53' 44''",
            "gap": "+ 00h 02' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 130.0,
            "times_seconds": 17624.0
        },
        {
            "index": 312,
            "rank": 137,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 45''",
            "gap": "+ 00h 02' 11''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 131.0,
            "times_seconds": 17625.0
        },
        {
            "index": 313,
            "rank": 138,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "04h 53' 47''",
            "gap": "+ 00h 02' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 133.0,
            "times_seconds": 17627.0
        },
        {
            "index": 314,
            "rank": 139,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 49''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 135.0,
            "times_seconds": 17629.0
        },
        {
            "index": 315,
            "rank": 140,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "04h 53' 49''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 135.0,
            "times_seconds": 17629.0
        },
        {
            "index": 316,
            "rank": 141,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 53' 51''",
            "gap": "+ 00h 02' 17''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 137.0,
            "times_seconds": 17631.0
        },
        {
            "index": 317,
            "rank": 142,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "04h 53' 52''",
            "gap": "+ 00h 02' 18''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 138.0,
            "times_seconds": 17632.0
        },
        {
            "index": 318,
            "rank": 143,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 54' 02''",
            "gap": "+ 00h 02' 28''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 148.0,
            "times_seconds": 17642.0
        },
        {
            "index": 319,
            "rank": 144,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "04h 54' 03''",
            "gap": "+ 00h 02' 29''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 149.0,
            "times_seconds": 17643.0
        },
        {
            "index": 320,
            "rank": 145,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "04h 54' 08''",
            "gap": "+ 00h 02' 34''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 154.0,
            "times_seconds": 17648.0
        },
        {
            "index": 321,
            "rank": 146,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "04h 54' 16''",
            "gap": "+ 00h 02' 42''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 162.0,
            "times_seconds": 17656.0
        },
        {
            "index": 322,
            "rank": 147,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "04h 54' 18''",
            "gap": "+ 00h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 164.0,
            "times_seconds": 17658.0
        },
        {
            "index": 323,
            "rank": 148,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "04h 54' 23''",
            "gap": "+ 00h 02' 49''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 169.0,
            "times_seconds": 17663.0
        },
        {
            "index": 324,
            "rank": 149,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "04h 54' 24''",
            "gap": "+ 00h 02' 50''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 170.0,
            "times_seconds": 17664.0
        },
        {
            "index": 325,
            "rank": 150,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "04h 54' 28''",
            "gap": "+ 00h 02' 54''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 174.0,
            "times_seconds": 17668.0
        },
        {
            "index": 326,
            "rank": 151,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "04h 54' 29''",
            "gap": "+ 00h 02' 55''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 175.0,
            "times_seconds": 17669.0
        },
        {
            "index": 327,
            "rank": 152,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "04h 54' 29''",
            "gap": "+ 00h 02' 55''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 175.0,
            "times_seconds": 17669.0
        },
        {
            "index": 328,
            "rank": 153,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "04h 54' 30''",
            "gap": "+ 00h 02' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 176.0,
            "times_seconds": 17670.0
        },
        {
            "index": 329,
            "rank": 154,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "04h 54' 45''",
            "gap": "+ 00h 03' 11''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 191.0,
            "times_seconds": 17685.0
        },
        {
            "index": 330,
            "rank": 155,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "04h 54' 47''",
            "gap": "+ 00h 03' 13''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 193.0,
            "times_seconds": 17687.0
        },
        {
            "index": 331,
            "rank": 156,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "04h 54' 49''",
            "gap": "+ 00h 03' 15''",
            "b": "B : 4''",
            "p": "-",
            "stage": 2,
            "gap_seconds": 195.0,
            "times_seconds": 17689.0
        },
        {
            "index": 332,
            "rank": 157,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "04h 54' 51''",
            "gap": "+ 00h 03' 17''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 197.0,
            "times_seconds": 17691.0
        },
        {
            "index": 333,
            "rank": 158,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "04h 54' 54''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 200.0,
            "times_seconds": 17694.0
        },
        {
            "index": 334,
            "rank": 159,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "04h 54' 59''",
            "gap": "+ 00h 03' 25''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 205.0,
            "times_seconds": 17699.0
        },
        {
            "index": 335,
            "rank": 160,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 55' 10''",
            "gap": "+ 00h 03' 36''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 216.0,
            "times_seconds": 17710.0
        },
        {
            "index": 336,
            "rank": 161,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "04h 55' 30''",
            "gap": "+ 00h 03' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 236.0,
            "times_seconds": 17730.0
        },
        {
            "index": 337,
            "rank": 162,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "04h 55' 30''",
            "gap": "+ 00h 03' 56''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 236.0,
            "times_seconds": 17730.0
        },
        {
            "index": 338,
            "rank": 163,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "04h 55' 31''",
            "gap": "+ 00h 03' 57''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 237.0,
            "times_seconds": 17731.0
        },
        {
            "index": 339,
            "rank": 164,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "04h 56' 06''",
            "gap": "+ 00h 04' 32''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 272.0,
            "times_seconds": 17766.0
        },
        {
            "index": 340,
            "rank": 165,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 56' 07''",
            "gap": "+ 00h 04' 33''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 273.0,
            "times_seconds": 17767.0
        },
        {
            "index": 341,
            "rank": 166,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "04h 56' 15''",
            "gap": "+ 00h 04' 41''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 281.0,
            "times_seconds": 17775.0
        },
        {
            "index": 342,
            "rank": 167,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "04h 56' 23''",
            "gap": "+ 00h 04' 49''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 289.0,
            "times_seconds": 17783.0
        },
        {
            "index": 343,
            "rank": 168,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "04h 56' 31''",
            "gap": "+ 00h 04' 57''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 297.0,
            "times_seconds": 17791.0
        },
        {
            "index": 344,
            "rank": 169,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "04h 56' 44''",
            "gap": "+ 00h 05' 10''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 310.0,
            "times_seconds": 17804.0
        },
        {
            "index": 345,
            "rank": 170,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "04h 56' 51''",
            "gap": "+ 00h 05' 17''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 317.0,
            "times_seconds": 17811.0
        },
        {
            "index": 346,
            "rank": 171,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "04h 57' 01''",
            "gap": "+ 00h 05' 27''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 327.0,
            "times_seconds": 17821.0
        },
        {
            "index": 347,
            "rank": 172,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "04h 57' 05''",
            "gap": "+ 00h 05' 31''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 331.0,
            "times_seconds": 17825.0
        },
        {
            "index": 348,
            "rank": 173,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "04h 57' 35''",
            "gap": "+ 00h 06' 01''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 361.0,
            "times_seconds": 17855.0
        },
        {
            "index": 349,
            "rank": 174,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "04h 58' 13''",
            "gap": "+ 00h 06' 39''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 399.0,
            "times_seconds": 17893.0
        },
        {
            "index": 350,
            "rank": 175,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "04h 58' 56''",
            "gap": "+ 00h 07' 22''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 442.0,
            "times_seconds": 17936.0
        },
        {
            "index": 351,
            "rank": 176,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "04h 59' 20''",
            "gap": "+ 00h 07' 46''",
            "b": "-",
            "p": "-",
            "stage": 2,
            "gap_seconds": 466.0,
            "times_seconds": 17960.0
        },
        {
            "index": 352,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 32' 19''",
            "gap": "-",
            "b": "B : 15''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 0.0,
            "times_seconds": 34339.0
        },
        {
            "index": 353,
            "rank": 2,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "09h 32' 39''",
            "gap": "+ 00h 00' 20''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 20.0,
            "times_seconds": 34359.0
        },
        {
            "index": 354,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "09h 32' 44''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 25.0,
            "times_seconds": 34364.0
        },
        {
            "index": 355,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "09h 32' 44''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 25.0,
            "times_seconds": 34364.0
        },
        {
            "index": 356,
            "rank": 5,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "09h 32' 59''",
            "gap": "+ 00h 00' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 40.0,
            "times_seconds": 34379.0
        },
        {
            "index": 357,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "09h 32' 59''",
            "gap": "+ 00h 00' 40''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 40.0,
            "times_seconds": 34379.0
        },
        {
            "index": 358,
            "rank": 7,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "09h 33' 04''",
            "gap": "+ 00h 00' 45''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 45.0,
            "times_seconds": 34384.0
        },
        {
            "index": 359,
            "rank": 8,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 33' 05''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 46.0,
            "times_seconds": 34385.0
        },
        {
            "index": 360,
            "rank": 9,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "09h 33' 10''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 51.0,
            "times_seconds": 34390.0
        },
        {
            "index": 361,
            "rank": 10,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "09h 33' 10''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 51.0,
            "times_seconds": 34390.0
        },
        {
            "index": 362,
            "rank": 11,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "09h 33' 10''",
            "gap": "+ 00h 00' 51''",
            "b": "B : 2''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 51.0,
            "times_seconds": 34390.0
        },
        {
            "index": 363,
            "rank": 12,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "09h 33' 11''",
            "gap": "+ 00h 00' 52''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 52.0,
            "times_seconds": 34391.0
        },
        {
            "index": 364,
            "rank": 13,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "09h 33' 12''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 53.0,
            "times_seconds": 34392.0
        },
        {
            "index": 365,
            "rank": 14,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "09h 33' 12''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 53.0,
            "times_seconds": 34392.0
        },
        {
            "index": 366,
            "rank": 15,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "09h 33' 15''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 56.0,
            "times_seconds": 34395.0
        },
        {
            "index": 367,
            "rank": 16,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "09h 33' 16''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 57.0,
            "times_seconds": 34396.0
        },
        {
            "index": 368,
            "rank": 17,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "09h 33' 16''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 57.0,
            "times_seconds": 34396.0
        },
        {
            "index": 369,
            "rank": 18,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "09h 33' 19''",
            "gap": "+ 00h 01' 00''",
            "b": "B : 6''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 60.0,
            "times_seconds": 34399.0
        },
        {
            "index": 370,
            "rank": 19,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "09h 33' 19''",
            "gap": "+ 00h 01' 00''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 60.0,
            "times_seconds": 34399.0
        },
        {
            "index": 371,
            "rank": 20,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "09h 33' 20''",
            "gap": "+ 00h 01' 01''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 61.0,
            "times_seconds": 34400.0
        },
        {
            "index": 372,
            "rank": 21,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "09h 33' 20''",
            "gap": "+ 00h 01' 01''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 61.0,
            "times_seconds": 34400.0
        },
        {
            "index": 373,
            "rank": 22,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 374,
            "rank": 23,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 375,
            "rank": 24,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 376,
            "rank": 25,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 377,
            "rank": 26,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 378,
            "rank": 27,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "09h 33' 25''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 66.0,
            "times_seconds": 34405.0
        },
        {
            "index": 379,
            "rank": 28,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "09h 33' 30''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 71.0,
            "times_seconds": 34410.0
        },
        {
            "index": 380,
            "rank": 29,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "09h 33' 30''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 71.0,
            "times_seconds": 34410.0
        },
        {
            "index": 381,
            "rank": 30,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "09h 33' 30''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 71.0,
            "times_seconds": 34410.0
        },
        {
            "index": 382,
            "rank": 31,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "09h 33' 30''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 71.0,
            "times_seconds": 34410.0
        },
        {
            "index": 383,
            "rank": 32,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "09h 33' 30''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 71.0,
            "times_seconds": 34410.0
        },
        {
            "index": 384,
            "rank": 33,
            "rider": "Nicolas Edet",
            "rider no.": 153,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 33' 37''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 78.0,
            "times_seconds": 34417.0
        },
        {
            "index": 385,
            "rank": 34,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 33' 37''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 78.0,
            "times_seconds": 34417.0
        },
        {
            "index": 386,
            "rank": 35,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "09h 33' 38''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 79.0,
            "times_seconds": 34418.0
        },
        {
            "index": 387,
            "rank": 36,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "09h 33' 38''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 79.0,
            "times_seconds": 34418.0
        },
        {
            "index": 388,
            "rank": 37,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "09h 33' 38''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 79.0,
            "times_seconds": 34418.0
        },
        {
            "index": 389,
            "rank": 38,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "09h 33' 47''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 88.0,
            "times_seconds": 34427.0
        },
        {
            "index": 390,
            "rank": 39,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "09h 33' 47''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 88.0,
            "times_seconds": 34427.0
        },
        {
            "index": 391,
            "rank": 40,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "09h 33' 48''",
            "gap": "+ 00h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 89.0,
            "times_seconds": 34428.0
        },
        {
            "index": 392,
            "rank": 41,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "09h 33' 49''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 90.0,
            "times_seconds": 34429.0
        },
        {
            "index": 393,
            "rank": 42,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "09h 33' 49''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 90.0,
            "times_seconds": 34429.0
        },
        {
            "index": 394,
            "rank": 43,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "09h 33' 49''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 90.0,
            "times_seconds": 34429.0
        },
        {
            "index": 395,
            "rank": 44,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "09h 33' 49''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 90.0,
            "times_seconds": 34429.0
        },
        {
            "index": 396,
            "rank": 45,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "09h 33' 50''",
            "gap": "+ 00h 01' 31''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 91.0,
            "times_seconds": 34430.0
        },
        {
            "index": 397,
            "rank": 46,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "09h 33' 53''",
            "gap": "+ 00h 01' 34''",
            "b": "B : 4''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 94.0,
            "times_seconds": 34433.0
        },
        {
            "index": 398,
            "rank": 47,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "09h 34' 02''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 103.0,
            "times_seconds": 34442.0
        },
        {
            "index": 399,
            "rank": 48,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "09h 34' 02''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 103.0,
            "times_seconds": 34442.0
        },
        {
            "index": 400,
            "rank": 49,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "09h 34' 02''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 103.0,
            "times_seconds": 34442.0
        },
        {
            "index": 401,
            "rank": 50,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "09h 34' 02''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 103.0,
            "times_seconds": 34442.0
        },
        {
            "index": 402,
            "rank": 51,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "09h 34' 03''",
            "gap": "+ 00h 01' 44''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 104.0,
            "times_seconds": 34443.0
        },
        {
            "index": 403,
            "rank": 52,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "09h 34' 07''",
            "gap": "+ 00h 01' 48''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 108.0,
            "times_seconds": 34447.0
        },
        {
            "index": 404,
            "rank": 53,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "09h 34' 19''",
            "gap": "+ 00h 02' 00''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 120.0,
            "times_seconds": 34459.0
        },
        {
            "index": 405,
            "rank": 54,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "09h 34' 19''",
            "gap": "+ 00h 02' 00''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 120.0,
            "times_seconds": 34459.0
        },
        {
            "index": 406,
            "rank": 55,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "09h 34' 26''",
            "gap": "+ 00h 02' 07''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 127.0,
            "times_seconds": 34466.0
        },
        {
            "index": 407,
            "rank": 56,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "09h 34' 35''",
            "gap": "+ 00h 02' 16''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 136.0,
            "times_seconds": 34475.0
        },
        {
            "index": 408,
            "rank": 57,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 34' 37''",
            "gap": "+ 00h 02' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 138.0,
            "times_seconds": 34477.0
        },
        {
            "index": 409,
            "rank": 58,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "09h 34' 38''",
            "gap": "+ 00h 02' 19''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 139.0,
            "times_seconds": 34478.0
        },
        {
            "index": 410,
            "rank": 59,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 34' 42''",
            "gap": "+ 00h 02' 23''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 143.0,
            "times_seconds": 34482.0
        },
        {
            "index": 411,
            "rank": 60,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "09h 34' 45''",
            "gap": "+ 00h 02' 26''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 146.0,
            "times_seconds": 34485.0
        },
        {
            "index": 412,
            "rank": 61,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "09h 34' 46''",
            "gap": "+ 00h 02' 27''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 147.0,
            "times_seconds": 34486.0
        },
        {
            "index": 413,
            "rank": 62,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "09h 34' 49''",
            "gap": "+ 00h 02' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 150.0,
            "times_seconds": 34489.0
        },
        {
            "index": 414,
            "rank": 63,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "09h 34' 52''",
            "gap": "+ 00h 02' 33''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 153.0,
            "times_seconds": 34492.0
        },
        {
            "index": 415,
            "rank": 64,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "09h 35' 03''",
            "gap": "+ 00h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 164.0,
            "times_seconds": 34503.0
        },
        {
            "index": 416,
            "rank": 65,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "09h 35' 04''",
            "gap": "+ 00h 02' 45''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 165.0,
            "times_seconds": 34504.0
        },
        {
            "index": 417,
            "rank": 66,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "09h 36' 02''",
            "gap": "+ 00h 03' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 223.0,
            "times_seconds": 34562.0
        },
        {
            "index": 418,
            "rank": 67,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "09h 36' 26''",
            "gap": "+ 00h 04' 07''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 247.0,
            "times_seconds": 34586.0
        },
        {
            "index": 419,
            "rank": 68,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "09h 36' 30''",
            "gap": "+ 00h 04' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 251.0,
            "times_seconds": 34590.0
        },
        {
            "index": 420,
            "rank": 69,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "09h 36' 30''",
            "gap": "+ 00h 04' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 251.0,
            "times_seconds": 34590.0
        },
        {
            "index": 421,
            "rank": 70,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "09h 36' 32''",
            "gap": "+ 00h 04' 13''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 253.0,
            "times_seconds": 34592.0
        },
        {
            "index": 422,
            "rank": 71,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "09h 36' 40''",
            "gap": "+ 00h 04' 21''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 261.0,
            "times_seconds": 34600.0
        },
        {
            "index": 423,
            "rank": 72,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "09h 36' 57''",
            "gap": "+ 00h 04' 38''",
            "b": "B : 10''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 278.0,
            "times_seconds": 34617.0
        },
        {
            "index": 424,
            "rank": 73,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "09h 37' 22''",
            "gap": "+ 00h 05' 03''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 303.0,
            "times_seconds": 34642.0
        },
        {
            "index": 425,
            "rank": 74,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "09h 37' 23''",
            "gap": "+ 00h 05' 04''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 304.0,
            "times_seconds": 34643.0
        },
        {
            "index": 426,
            "rank": 75,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "09h 37' 33''",
            "gap": "+ 00h 05' 14''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 314.0,
            "times_seconds": 34653.0
        },
        {
            "index": 427,
            "rank": 76,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 37' 34''",
            "gap": "+ 00h 05' 15''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 315.0,
            "times_seconds": 34654.0
        },
        {
            "index": 428,
            "rank": 77,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 38' 00''",
            "gap": "+ 00h 05' 41''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 341.0,
            "times_seconds": 34680.0
        },
        {
            "index": 429,
            "rank": 78,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 38' 02''",
            "gap": "+ 00h 05' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 343.0,
            "times_seconds": 34682.0
        },
        {
            "index": 430,
            "rank": 79,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "09h 38' 07''",
            "gap": "+ 00h 05' 48''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 348.0,
            "times_seconds": 34687.0
        },
        {
            "index": 431,
            "rank": 80,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "09h 40' 16''",
            "gap": "+ 00h 07' 57''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 477.0,
            "times_seconds": 34816.0
        },
        {
            "index": 432,
            "rank": 81,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "09h 41' 20''",
            "gap": "+ 00h 09' 01''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 541.0,
            "times_seconds": 34880.0
        },
        {
            "index": 433,
            "rank": 82,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "09h 41' 22''",
            "gap": "+ 00h 09' 03''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 543.0,
            "times_seconds": 34882.0
        },
        {
            "index": 434,
            "rank": 83,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "09h 41' 22''",
            "gap": "+ 00h 09' 03''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 543.0,
            "times_seconds": 34882.0
        },
        {
            "index": 435,
            "rank": 84,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "09h 41' 24''",
            "gap": "+ 00h 09' 05''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 545.0,
            "times_seconds": 34884.0
        },
        {
            "index": 436,
            "rank": 85,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "09h 41' 29''",
            "gap": "+ 00h 09' 10''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 550.0,
            "times_seconds": 34889.0
        },
        {
            "index": 437,
            "rank": 86,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "09h 41' 32''",
            "gap": "+ 00h 09' 13''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 553.0,
            "times_seconds": 34892.0
        },
        {
            "index": 438,
            "rank": 87,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "09h 41' 58''",
            "gap": "+ 00h 09' 39''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 579.0,
            "times_seconds": 34918.0
        },
        {
            "index": 439,
            "rank": 88,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "09h 42' 05''",
            "gap": "+ 00h 09' 46''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 586.0,
            "times_seconds": 34925.0
        },
        {
            "index": 440,
            "rank": 89,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "09h 42' 07''",
            "gap": "+ 00h 09' 48''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 588.0,
            "times_seconds": 34927.0
        },
        {
            "index": 441,
            "rank": 90,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 42' 14''",
            "gap": "+ 00h 09' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 595.0,
            "times_seconds": 34934.0
        },
        {
            "index": 442,
            "rank": 91,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "09h 42' 22''",
            "gap": "+ 00h 10' 03''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 603.0,
            "times_seconds": 34942.0
        },
        {
            "index": 443,
            "rank": 92,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "09h 42' 35''",
            "gap": "+ 00h 10' 16''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 616.0,
            "times_seconds": 34955.0
        },
        {
            "index": 444,
            "rank": 93,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "09h 42' 36''",
            "gap": "+ 00h 10' 17''",
            "b": "B : 8''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 617.0,
            "times_seconds": 34956.0
        },
        {
            "index": 445,
            "rank": 94,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 42' 38''",
            "gap": "+ 00h 10' 19''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 619.0,
            "times_seconds": 34958.0
        },
        {
            "index": 446,
            "rank": 95,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "09h 42' 39''",
            "gap": "+ 00h 10' 20''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 620.0,
            "times_seconds": 34959.0
        },
        {
            "index": 447,
            "rank": 96,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "09h 42' 41''",
            "gap": "+ 00h 10' 22''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 622.0,
            "times_seconds": 34961.0
        },
        {
            "index": 448,
            "rank": 97,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 42' 42''",
            "gap": "+ 00h 10' 23''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 623.0,
            "times_seconds": 34962.0
        },
        {
            "index": 449,
            "rank": 98,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "09h 42' 44''",
            "gap": "+ 00h 10' 25''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 625.0,
            "times_seconds": 34964.0
        },
        {
            "index": 450,
            "rank": 99,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 42' 49''",
            "gap": "+ 00h 10' 30''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 630.0,
            "times_seconds": 34969.0
        },
        {
            "index": 451,
            "rank": 100,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "09h 42' 51''",
            "gap": "+ 00h 10' 32''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 632.0,
            "times_seconds": 34971.0
        },
        {
            "index": 452,
            "rank": 101,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 42' 55''",
            "gap": "+ 00h 10' 36''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 636.0,
            "times_seconds": 34975.0
        },
        {
            "index": 453,
            "rank": 102,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "09h 43' 01''",
            "gap": "+ 00h 10' 42''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 642.0,
            "times_seconds": 34981.0
        },
        {
            "index": 454,
            "rank": 103,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "09h 43' 14''",
            "gap": "+ 00h 10' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 655.0,
            "times_seconds": 34994.0
        },
        {
            "index": 455,
            "rank": 104,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "09h 43' 21''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 662.0,
            "times_seconds": 35001.0
        },
        {
            "index": 456,
            "rank": 105,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "09h 43' 21''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 662.0,
            "times_seconds": 35001.0
        },
        {
            "index": 457,
            "rank": 106,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "09h 43' 27''",
            "gap": "+ 00h 11' 08''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 668.0,
            "times_seconds": 35007.0
        },
        {
            "index": 458,
            "rank": 107,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "09h 43' 30''",
            "gap": "+ 00h 11' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 671.0,
            "times_seconds": 35010.0
        },
        {
            "index": 459,
            "rank": 108,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 43' 37''",
            "gap": "+ 00h 11' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 678.0,
            "times_seconds": 35017.0
        },
        {
            "index": 460,
            "rank": 109,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "09h 44' 42''",
            "gap": "+ 00h 12' 23''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 743.0,
            "times_seconds": 35082.0
        },
        {
            "index": 461,
            "rank": 110,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "09h 44' 46''",
            "gap": "+ 00h 12' 27''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 747.0,
            "times_seconds": 35086.0
        },
        {
            "index": 462,
            "rank": 111,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "09h 44' 50''",
            "gap": "+ 00h 12' 31''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 751.0,
            "times_seconds": 35090.0
        },
        {
            "index": 463,
            "rank": 112,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "09h 45' 32''",
            "gap": "+ 00h 13' 13''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 793.0,
            "times_seconds": 35132.0
        },
        {
            "index": 464,
            "rank": 113,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 46' 02''",
            "gap": "+ 00h 13' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 823.0,
            "times_seconds": 35162.0
        },
        {
            "index": 465,
            "rank": 114,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "09h 46' 11''",
            "gap": "+ 00h 13' 52''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 832.0,
            "times_seconds": 35171.0
        },
        {
            "index": 466,
            "rank": 115,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "09h 46' 31''",
            "gap": "+ 00h 14' 12''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 852.0,
            "times_seconds": 35191.0
        },
        {
            "index": 467,
            "rank": 116,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "09h 46' 37''",
            "gap": "+ 00h 14' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 858.0,
            "times_seconds": 35197.0
        },
        {
            "index": 468,
            "rank": 117,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "09h 46' 37''",
            "gap": "+ 00h 14' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 858.0,
            "times_seconds": 35197.0
        },
        {
            "index": 469,
            "rank": 118,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "09h 46' 39''",
            "gap": "+ 00h 14' 20''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 860.0,
            "times_seconds": 35199.0
        },
        {
            "index": 470,
            "rank": 119,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "09h 46' 41''",
            "gap": "+ 00h 14' 22''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 862.0,
            "times_seconds": 35201.0
        },
        {
            "index": 471,
            "rank": 120,
            "rider": "Patrick Bevin",
            "rider no.": 112,
            "team": "Ccc Team",
            "times": "09h 46' 42''",
            "gap": "+ 00h 14' 23''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 863.0,
            "times_seconds": 35202.0
        },
        {
            "index": 472,
            "rank": 121,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "09h 46' 42''",
            "gap": "+ 00h 14' 23''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 863.0,
            "times_seconds": 35202.0
        },
        {
            "index": 473,
            "rank": 122,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "09h 46' 47''",
            "gap": "+ 00h 14' 28''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 868.0,
            "times_seconds": 35207.0
        },
        {
            "index": 474,
            "rank": 123,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "09h 46' 52''",
            "gap": "+ 00h 14' 33''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 873.0,
            "times_seconds": 35212.0
        },
        {
            "index": 475,
            "rank": 124,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "09h 46' 52''",
            "gap": "+ 00h 14' 33''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 873.0,
            "times_seconds": 35212.0
        },
        {
            "index": 476,
            "rank": 125,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "09h 47' 05''",
            "gap": "+ 00h 14' 46''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 886.0,
            "times_seconds": 35225.0
        },
        {
            "index": 477,
            "rank": 126,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "09h 47' 05''",
            "gap": "+ 00h 14' 46''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 886.0,
            "times_seconds": 35225.0
        },
        {
            "index": 478,
            "rank": 127,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "09h 47' 05''",
            "gap": "+ 00h 14' 46''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 886.0,
            "times_seconds": 35225.0
        },
        {
            "index": 479,
            "rank": 128,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "09h 47' 10''",
            "gap": "+ 00h 14' 51''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 891.0,
            "times_seconds": 35230.0
        },
        {
            "index": 480,
            "rank": 129,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "09h 47' 10''",
            "gap": "+ 00h 14' 51''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 891.0,
            "times_seconds": 35230.0
        },
        {
            "index": 481,
            "rank": 130,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "09h 47' 14''",
            "gap": "+ 00h 14' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 895.0,
            "times_seconds": 35234.0
        },
        {
            "index": 482,
            "rank": 131,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "09h 47' 14''",
            "gap": "+ 00h 14' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 895.0,
            "times_seconds": 35234.0
        },
        {
            "index": 483,
            "rank": 132,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "09h 47' 14''",
            "gap": "+ 00h 14' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 895.0,
            "times_seconds": 35234.0
        },
        {
            "index": 484,
            "rank": 133,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "09h 47' 30''",
            "gap": "+ 00h 15' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 911.0,
            "times_seconds": 35250.0
        },
        {
            "index": 485,
            "rank": 134,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "09h 47' 30''",
            "gap": "+ 00h 15' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 911.0,
            "times_seconds": 35250.0
        },
        {
            "index": 486,
            "rank": 135,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "09h 47' 33''",
            "gap": "+ 00h 15' 14''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 914.0,
            "times_seconds": 35253.0
        },
        {
            "index": 487,
            "rank": 136,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "09h 47' 35''",
            "gap": "+ 00h 15' 16''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 916.0,
            "times_seconds": 35255.0
        },
        {
            "index": 488,
            "rank": 137,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "09h 47' 47''",
            "gap": "+ 00h 15' 28''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 928.0,
            "times_seconds": 35267.0
        },
        {
            "index": 489,
            "rank": 138,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "09h 47' 53''",
            "gap": "+ 00h 15' 34''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 934.0,
            "times_seconds": 35273.0
        },
        {
            "index": 490,
            "rank": 139,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "09h 47' 53''",
            "gap": "+ 00h 15' 34''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 934.0,
            "times_seconds": 35273.0
        },
        {
            "index": 491,
            "rank": 140,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "09h 47' 59''",
            "gap": "+ 00h 15' 40''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 940.0,
            "times_seconds": 35279.0
        },
        {
            "index": 492,
            "rank": 141,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "09h 48' 00''",
            "gap": "+ 00h 15' 41''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 941.0,
            "times_seconds": 35280.0
        },
        {
            "index": 493,
            "rank": 142,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "09h 48' 02''",
            "gap": "+ 00h 15' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 943.0,
            "times_seconds": 35282.0
        },
        {
            "index": 494,
            "rank": 143,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "09h 48' 02''",
            "gap": "+ 00h 15' 43''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 943.0,
            "times_seconds": 35282.0
        },
        {
            "index": 495,
            "rank": 144,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "09h 48' 10''",
            "gap": "+ 00h 15' 51''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 951.0,
            "times_seconds": 35290.0
        },
        {
            "index": 496,
            "rank": 145,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "09h 48' 11''",
            "gap": "+ 00h 15' 52''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 952.0,
            "times_seconds": 35291.0
        },
        {
            "index": 497,
            "rank": 146,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 48' 12''",
            "gap": "+ 00h 15' 53''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 953.0,
            "times_seconds": 35292.0
        },
        {
            "index": 498,
            "rank": 147,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 48' 18''",
            "gap": "+ 00h 15' 59''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 959.0,
            "times_seconds": 35298.0
        },
        {
            "index": 499,
            "rank": 148,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "09h 48' 25''",
            "gap": "+ 00h 16' 06''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 966.0,
            "times_seconds": 35305.0
        },
        {
            "index": 500,
            "rank": 149,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 48' 29''",
            "gap": "+ 00h 16' 10''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 970.0,
            "times_seconds": 35309.0
        },
        {
            "index": 501,
            "rank": 150,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "09h 48' 30''",
            "gap": "+ 00h 16' 11''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 971.0,
            "times_seconds": 35310.0
        },
        {
            "index": 502,
            "rank": 151,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "09h 48' 35''",
            "gap": "+ 00h 16' 16''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 976.0,
            "times_seconds": 35315.0
        },
        {
            "index": 503,
            "rank": 152,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "09h 48' 43''",
            "gap": "+ 00h 16' 24''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 984.0,
            "times_seconds": 35323.0
        },
        {
            "index": 504,
            "rank": 153,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "09h 48' 45''",
            "gap": "+ 00h 16' 26''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 986.0,
            "times_seconds": 35325.0
        },
        {
            "index": 505,
            "rank": 154,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "09h 48' 50''",
            "gap": "+ 00h 16' 31''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 991.0,
            "times_seconds": 35330.0
        },
        {
            "index": 506,
            "rank": 155,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "09h 48' 51''",
            "gap": "+ 00h 16' 32''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 992.0,
            "times_seconds": 35331.0
        },
        {
            "index": 507,
            "rank": 156,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "09h 48' 55''",
            "gap": "+ 00h 16' 36''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 996.0,
            "times_seconds": 35335.0
        },
        {
            "index": 508,
            "rank": 157,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "09h 48' 56''",
            "gap": "+ 00h 16' 37''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 997.0,
            "times_seconds": 35336.0
        },
        {
            "index": 509,
            "rank": 158,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "09h 48' 56''",
            "gap": "+ 00h 16' 37''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 997.0,
            "times_seconds": 35336.0
        },
        {
            "index": 510,
            "rank": 159,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "09h 48' 57''",
            "gap": "+ 00h 16' 38''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 998.0,
            "times_seconds": 35337.0
        },
        {
            "index": 511,
            "rank": 160,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "09h 49' 12''",
            "gap": "+ 00h 16' 53''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1013.0,
            "times_seconds": 35352.0
        },
        {
            "index": 512,
            "rank": 161,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "09h 49' 14''",
            "gap": "+ 00h 16' 55''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1015.0,
            "times_seconds": 35354.0
        },
        {
            "index": 513,
            "rank": 162,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "09h 49' 16''",
            "gap": "+ 00h 16' 57''",
            "b": "B : 4''",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1017.0,
            "times_seconds": 35356.0
        },
        {
            "index": 514,
            "rank": 163,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "09h 49' 21''",
            "gap": "+ 00h 17' 02''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1022.0,
            "times_seconds": 35361.0
        },
        {
            "index": 515,
            "rank": 164,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "09h 49' 26''",
            "gap": "+ 00h 17' 07''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1027.0,
            "times_seconds": 35366.0
        },
        {
            "index": 516,
            "rank": 165,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "09h 49' 32''",
            "gap": "+ 00h 17' 13''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1033.0,
            "times_seconds": 35372.0
        },
        {
            "index": 517,
            "rank": 166,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 49' 37''",
            "gap": "+ 00h 17' 18''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1038.0,
            "times_seconds": 35377.0
        },
        {
            "index": 518,
            "rank": 167,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "09h 49' 57''",
            "gap": "+ 00h 17' 38''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1058.0,
            "times_seconds": 35397.0
        },
        {
            "index": 519,
            "rank": 168,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "09h 50' 33''",
            "gap": "+ 00h 18' 14''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1094.0,
            "times_seconds": 35433.0
        },
        {
            "index": 520,
            "rank": 169,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 50' 34''",
            "gap": "+ 00h 18' 15''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1095.0,
            "times_seconds": 35434.0
        },
        {
            "index": 521,
            "rank": 170,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "09h 50' 50''",
            "gap": "+ 00h 18' 31''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1111.0,
            "times_seconds": 35450.0
        },
        {
            "index": 522,
            "rank": 171,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "09h 50' 58''",
            "gap": "+ 00h 18' 39''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1119.0,
            "times_seconds": 35458.0
        },
        {
            "index": 523,
            "rank": 172,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "09h 51' 11''",
            "gap": "+ 00h 18' 52''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1132.0,
            "times_seconds": 35471.0
        },
        {
            "index": 524,
            "rank": 173,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "09h 51' 18''",
            "gap": "+ 00h 18' 59''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1139.0,
            "times_seconds": 35478.0
        },
        {
            "index": 525,
            "rank": 174,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "09h 51' 28''",
            "gap": "+ 00h 19' 09''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1149.0,
            "times_seconds": 35488.0
        },
        {
            "index": 526,
            "rank": 175,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "09h 52' 40''",
            "gap": "+ 00h 20' 21''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1221.0,
            "times_seconds": 35560.0
        },
        {
            "index": 527,
            "rank": 176,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "09h 53' 00''",
            "gap": "+ 00h 20' 41''",
            "b": "-",
            "p": "-",
            "stage": 3,
            "gap_seconds": 1241.0,
            "times_seconds": 35580.0
        },
        {
            "index": 528,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 41' 39''",
            "gap": "-",
            "b": "B : 15''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 0.0,
            "times_seconds": 52899.0
        },
        {
            "index": 529,
            "rank": 2,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "14h 41' 59''",
            "gap": "+ 00h 00' 20''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 20.0,
            "times_seconds": 52919.0
        },
        {
            "index": 530,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "14h 42' 04''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 25.0,
            "times_seconds": 52924.0
        },
        {
            "index": 531,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "14h 42' 04''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 25.0,
            "times_seconds": 52924.0
        },
        {
            "index": 532,
            "rank": 5,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "14h 42' 19''",
            "gap": "+ 00h 00' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 40.0,
            "times_seconds": 52939.0
        },
        {
            "index": 533,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "14h 42' 19''",
            "gap": "+ 00h 00' 40''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 40.0,
            "times_seconds": 52939.0
        },
        {
            "index": 534,
            "rank": 7,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "14h 42' 24''",
            "gap": "+ 00h 00' 45''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 45.0,
            "times_seconds": 52944.0
        },
        {
            "index": 535,
            "rank": 8,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 42' 25''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 46.0,
            "times_seconds": 52945.0
        },
        {
            "index": 536,
            "rank": 9,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "14h 42' 30''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 51.0,
            "times_seconds": 52950.0
        },
        {
            "index": 537,
            "rank": 10,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "14h 42' 30''",
            "gap": "+ 00h 00' 51''",
            "b": "B : 2''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 51.0,
            "times_seconds": 52950.0
        },
        {
            "index": 538,
            "rank": 11,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "14h 42' 30''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 51.0,
            "times_seconds": 52950.0
        },
        {
            "index": 539,
            "rank": 12,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "14h 42' 31''",
            "gap": "+ 00h 00' 52''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 52.0,
            "times_seconds": 52951.0
        },
        {
            "index": 540,
            "rank": 13,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "14h 42' 32''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 53.0,
            "times_seconds": 52952.0
        },
        {
            "index": 541,
            "rank": 14,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "14h 42' 32''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 53.0,
            "times_seconds": 52952.0
        },
        {
            "index": 542,
            "rank": 15,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "14h 42' 35''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 56.0,
            "times_seconds": 52955.0
        },
        {
            "index": 543,
            "rank": 16,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "14h 42' 36''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 57.0,
            "times_seconds": 52956.0
        },
        {
            "index": 544,
            "rank": 17,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "14h 42' 36''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 57.0,
            "times_seconds": 52956.0
        },
        {
            "index": 545,
            "rank": 18,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "14h 42' 39''",
            "gap": "+ 00h 01' 00''",
            "b": "B : 6''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 60.0,
            "times_seconds": 52959.0
        },
        {
            "index": 546,
            "rank": 19,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "14h 42' 39''",
            "gap": "+ 00h 01' 00''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 60.0,
            "times_seconds": 52959.0
        },
        {
            "index": 547,
            "rank": 20,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "14h 42' 40''",
            "gap": "+ 00h 01' 01''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 61.0,
            "times_seconds": 52960.0
        },
        {
            "index": 548,
            "rank": 21,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "14h 42' 40''",
            "gap": "+ 00h 01' 01''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 61.0,
            "times_seconds": 52960.0
        },
        {
            "index": 549,
            "rank": 22,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 550,
            "rank": 23,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 551,
            "rank": 24,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 552,
            "rank": 25,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 553,
            "rank": 26,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 554,
            "rank": 27,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "14h 42' 45''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 66.0,
            "times_seconds": 52965.0
        },
        {
            "index": 555,
            "rank": 28,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "14h 42' 50''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 71.0,
            "times_seconds": 52970.0
        },
        {
            "index": 556,
            "rank": 29,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "14h 42' 50''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 71.0,
            "times_seconds": 52970.0
        },
        {
            "index": 557,
            "rank": 30,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "14h 42' 50''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 71.0,
            "times_seconds": 52970.0
        },
        {
            "index": 558,
            "rank": 31,
            "rider": "Nicolas Edet",
            "rider no.": 153,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 42' 57''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 78.0,
            "times_seconds": 52977.0
        },
        {
            "index": 559,
            "rank": 32,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 42' 57''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 78.0,
            "times_seconds": 52977.0
        },
        {
            "index": 560,
            "rank": 33,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "14h 42' 58''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 79.0,
            "times_seconds": 52978.0
        },
        {
            "index": 561,
            "rank": 34,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "14h 42' 58''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 79.0,
            "times_seconds": 52978.0
        },
        {
            "index": 562,
            "rank": 35,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "14h 42' 58''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 79.0,
            "times_seconds": 52978.0
        },
        {
            "index": 563,
            "rank": 36,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "14h 43' 07''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 88.0,
            "times_seconds": 52987.0
        },
        {
            "index": 564,
            "rank": 37,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "14h 43' 07''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 88.0,
            "times_seconds": 52987.0
        },
        {
            "index": 565,
            "rank": 38,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "14h 43' 09''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 90.0,
            "times_seconds": 52989.0
        },
        {
            "index": 566,
            "rank": 39,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "14h 43' 09''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 90.0,
            "times_seconds": 52989.0
        },
        {
            "index": 567,
            "rank": 40,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "14h 43' 09''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 90.0,
            "times_seconds": 52989.0
        },
        {
            "index": 568,
            "rank": 41,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "14h 43' 09''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 90.0,
            "times_seconds": 52989.0
        },
        {
            "index": 569,
            "rank": 42,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "14h 43' 13''",
            "gap": "+ 00h 01' 34''",
            "b": "B : 4''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 94.0,
            "times_seconds": 52993.0
        },
        {
            "index": 570,
            "rank": 43,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "14h 43' 22''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 103.0,
            "times_seconds": 53002.0
        },
        {
            "index": 571,
            "rank": 44,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "14h 43' 22''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 103.0,
            "times_seconds": 53002.0
        },
        {
            "index": 572,
            "rank": 45,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "14h 43' 22''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 103.0,
            "times_seconds": 53002.0
        },
        {
            "index": 573,
            "rank": 46,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "14h 43' 22''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 103.0,
            "times_seconds": 53002.0
        },
        {
            "index": 574,
            "rank": 47,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "14h 43' 23''",
            "gap": "+ 00h 01' 44''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 104.0,
            "times_seconds": 53003.0
        },
        {
            "index": 575,
            "rank": 48,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "14h 43' 27''",
            "gap": "+ 00h 01' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 108.0,
            "times_seconds": 53007.0
        },
        {
            "index": 576,
            "rank": 49,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "14h 43' 39''",
            "gap": "+ 00h 02' 00''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 120.0,
            "times_seconds": 53019.0
        },
        {
            "index": 577,
            "rank": 50,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "14h 43' 46''",
            "gap": "+ 00h 02' 07''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 127.0,
            "times_seconds": 53026.0
        },
        {
            "index": 578,
            "rank": 51,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "14h 43' 54''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 135.0,
            "times_seconds": 53034.0
        },
        {
            "index": 579,
            "rank": 52,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "14h 43' 55''",
            "gap": "+ 00h 02' 16''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 136.0,
            "times_seconds": 53035.0
        },
        {
            "index": 580,
            "rank": 53,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 43' 57''",
            "gap": "+ 00h 02' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 138.0,
            "times_seconds": 53037.0
        },
        {
            "index": 581,
            "rank": 54,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "14h 43' 58''",
            "gap": "+ 00h 02' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 139.0,
            "times_seconds": 53038.0
        },
        {
            "index": 582,
            "rank": 55,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 44' 02''",
            "gap": "+ 00h 02' 23''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 143.0,
            "times_seconds": 53042.0
        },
        {
            "index": 583,
            "rank": 56,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "14h 44' 06''",
            "gap": "+ 00h 02' 27''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 147.0,
            "times_seconds": 53046.0
        },
        {
            "index": 584,
            "rank": 57,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "14h 44' 12''",
            "gap": "+ 00h 02' 33''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 153.0,
            "times_seconds": 53052.0
        },
        {
            "index": 585,
            "rank": 58,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "14h 44' 23''",
            "gap": "+ 00h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 164.0,
            "times_seconds": 53063.0
        },
        {
            "index": 586,
            "rank": 59,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "14h 44' 35''",
            "gap": "+ 00h 02' 56''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 176.0,
            "times_seconds": 53075.0
        },
        {
            "index": 587,
            "rank": 60,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "14h 44' 42''",
            "gap": "+ 00h 03' 03''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 183.0,
            "times_seconds": 53082.0
        },
        {
            "index": 588,
            "rank": 61,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "14h 44' 51''",
            "gap": "+ 00h 03' 12''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 192.0,
            "times_seconds": 53091.0
        },
        {
            "index": 589,
            "rank": 62,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "14h 44' 55''",
            "gap": "+ 00h 03' 16''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 196.0,
            "times_seconds": 53095.0
        },
        {
            "index": 590,
            "rank": 63,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "14h 45' 10''",
            "gap": "+ 00h 03' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 211.0,
            "times_seconds": 53110.0
        },
        {
            "index": 591,
            "rank": 64,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "14h 45' 22''",
            "gap": "+ 00h 03' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 223.0,
            "times_seconds": 53122.0
        },
        {
            "index": 592,
            "rank": 65,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "14h 45' 50''",
            "gap": "+ 00h 04' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 251.0,
            "times_seconds": 53150.0
        },
        {
            "index": 593,
            "rank": 66,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "14h 45' 52''",
            "gap": "+ 00h 04' 13''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 253.0,
            "times_seconds": 53152.0
        },
        {
            "index": 594,
            "rank": 67,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "14h 46' 00''",
            "gap": "+ 00h 04' 21''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 261.0,
            "times_seconds": 53160.0
        },
        {
            "index": 595,
            "rank": 68,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "14h 46' 10''",
            "gap": "+ 00h 04' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 271.0,
            "times_seconds": 53170.0
        },
        {
            "index": 596,
            "rank": 69,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "14h 46' 17''",
            "gap": "+ 00h 04' 38''",
            "b": "B : 10''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 278.0,
            "times_seconds": 53177.0
        },
        {
            "index": 597,
            "rank": 70,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "14h 46' 19''",
            "gap": "+ 00h 04' 40''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 280.0,
            "times_seconds": 53179.0
        },
        {
            "index": 598,
            "rank": 71,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "14h 46' 36''",
            "gap": "+ 00h 04' 57''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 297.0,
            "times_seconds": 53196.0
        },
        {
            "index": 599,
            "rank": 72,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "14h 46' 42''",
            "gap": "+ 00h 05' 03''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 303.0,
            "times_seconds": 53202.0
        },
        {
            "index": 600,
            "rank": 73,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "14h 46' 43''",
            "gap": "+ 00h 05' 04''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 304.0,
            "times_seconds": 53203.0
        },
        {
            "index": 601,
            "rank": 74,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 47' 20''",
            "gap": "+ 00h 05' 41''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 341.0,
            "times_seconds": 53240.0
        },
        {
            "index": 602,
            "rank": 75,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 47' 22''",
            "gap": "+ 00h 05' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 343.0,
            "times_seconds": 53242.0
        },
        {
            "index": 603,
            "rank": 76,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "14h 47' 27''",
            "gap": "+ 00h 05' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 348.0,
            "times_seconds": 53247.0
        },
        {
            "index": 604,
            "rank": 77,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "14h 47' 31''",
            "gap": "+ 00h 05' 52''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 352.0,
            "times_seconds": 53251.0
        },
        {
            "index": 605,
            "rank": 78,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "14h 48' 38''",
            "gap": "+ 00h 06' 59''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 419.0,
            "times_seconds": 53318.0
        },
        {
            "index": 606,
            "rank": 79,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 48' 39''",
            "gap": "+ 00h 07' 00''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 420.0,
            "times_seconds": 53319.0
        },
        {
            "index": 607,
            "rank": 80,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "14h 50' 22''",
            "gap": "+ 00h 08' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 523.0,
            "times_seconds": 53422.0
        },
        {
            "index": 608,
            "rank": 81,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "14h 50' 40''",
            "gap": "+ 00h 09' 01''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 541.0,
            "times_seconds": 53440.0
        },
        {
            "index": 609,
            "rank": 82,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "14h 50' 52''",
            "gap": "+ 00h 09' 13''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 553.0,
            "times_seconds": 53452.0
        },
        {
            "index": 610,
            "rank": 83,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "14h 51' 18''",
            "gap": "+ 00h 09' 39''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 579.0,
            "times_seconds": 53478.0
        },
        {
            "index": 611,
            "rank": 84,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "14h 51' 35''",
            "gap": "+ 00h 09' 56''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 596.0,
            "times_seconds": 53495.0
        },
        {
            "index": 612,
            "rank": 85,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 51' 58''",
            "gap": "+ 00h 10' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 619.0,
            "times_seconds": 53518.0
        },
        {
            "index": 613,
            "rank": 86,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "14h 51' 59''",
            "gap": "+ 00h 10' 20''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 620.0,
            "times_seconds": 53519.0
        },
        {
            "index": 614,
            "rank": 87,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "14h 52' 01''",
            "gap": "+ 00h 10' 22''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 622.0,
            "times_seconds": 53521.0
        },
        {
            "index": 615,
            "rank": 88,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "14h 52' 04''",
            "gap": "+ 00h 10' 25''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 625.0,
            "times_seconds": 53524.0
        },
        {
            "index": 616,
            "rank": 89,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 52' 05''",
            "gap": "+ 00h 10' 26''",
            "b": "B : 10''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 626.0,
            "times_seconds": 53525.0
        },
        {
            "index": 617,
            "rank": 90,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 52' 09''",
            "gap": "+ 00h 10' 30''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 630.0,
            "times_seconds": 53529.0
        },
        {
            "index": 618,
            "rank": 91,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "14h 52' 27''",
            "gap": "+ 00h 10' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 648.0,
            "times_seconds": 53547.0
        },
        {
            "index": 619,
            "rank": 92,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "14h 52' 27''",
            "gap": "+ 00h 10' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 648.0,
            "times_seconds": 53547.0
        },
        {
            "index": 620,
            "rank": 93,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "14h 52' 29''",
            "gap": "+ 00h 10' 50''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 650.0,
            "times_seconds": 53549.0
        },
        {
            "index": 621,
            "rank": 94,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "14h 52' 41''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 662.0,
            "times_seconds": 53561.0
        },
        {
            "index": 622,
            "rank": 95,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "14h 52' 41''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 662.0,
            "times_seconds": 53561.0
        },
        {
            "index": 623,
            "rank": 96,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "14h 52' 48''",
            "gap": "+ 00h 11' 09''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 669.0,
            "times_seconds": 53568.0
        },
        {
            "index": 624,
            "rank": 97,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "14h 52' 50''",
            "gap": "+ 00h 11' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 671.0,
            "times_seconds": 53570.0
        },
        {
            "index": 625,
            "rank": 98,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "14h 52' 53''",
            "gap": "+ 00h 11' 14''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 674.0,
            "times_seconds": 53573.0
        },
        {
            "index": 626,
            "rank": 99,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 52' 57''",
            "gap": "+ 00h 11' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 678.0,
            "times_seconds": 53577.0
        },
        {
            "index": 627,
            "rank": 100,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "14h 53' 07''",
            "gap": "+ 00h 11' 28''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 688.0,
            "times_seconds": 53587.0
        },
        {
            "index": 628,
            "rank": 101,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "14h 53' 20''",
            "gap": "+ 00h 11' 41''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 701.0,
            "times_seconds": 53600.0
        },
        {
            "index": 629,
            "rank": 102,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "14h 53' 27''",
            "gap": "+ 00h 11' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 708.0,
            "times_seconds": 53607.0
        },
        {
            "index": 630,
            "rank": 103,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "14h 53' 33''",
            "gap": "+ 00h 11' 54''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 714.0,
            "times_seconds": 53613.0
        },
        {
            "index": 631,
            "rank": 104,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "14h 54' 02''",
            "gap": "+ 00h 12' 23''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 743.0,
            "times_seconds": 53642.0
        },
        {
            "index": 632,
            "rank": 105,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "14h 54' 10''",
            "gap": "+ 00h 12' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 751.0,
            "times_seconds": 53650.0
        },
        {
            "index": 633,
            "rank": 106,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "14h 54' 21''",
            "gap": "+ 00h 12' 42''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 762.0,
            "times_seconds": 53661.0
        },
        {
            "index": 634,
            "rank": 107,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "14h 54' 49''",
            "gap": "+ 00h 13' 10''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 790.0,
            "times_seconds": 53689.0
        },
        {
            "index": 635,
            "rank": 108,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "14h 55' 34''",
            "gap": "+ 00h 13' 55''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 835.0,
            "times_seconds": 53734.0
        },
        {
            "index": 636,
            "rank": 109,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "14h 55' 38''",
            "gap": "+ 00h 13' 59''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 839.0,
            "times_seconds": 53738.0
        },
        {
            "index": 637,
            "rank": 110,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "14h 55' 57''",
            "gap": "+ 00h 14' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 858.0,
            "times_seconds": 53757.0
        },
        {
            "index": 638,
            "rank": 111,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "14h 55' 59''",
            "gap": "+ 00h 14' 20''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 860.0,
            "times_seconds": 53759.0
        },
        {
            "index": 639,
            "rank": 112,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "14h 56' 01''",
            "gap": "+ 00h 14' 22''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 862.0,
            "times_seconds": 53761.0
        },
        {
            "index": 640,
            "rank": 113,
            "rider": "Patrick Bevin",
            "rider no.": 112,
            "team": "Ccc Team",
            "times": "14h 56' 02''",
            "gap": "+ 00h 14' 23''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 863.0,
            "times_seconds": 53762.0
        },
        {
            "index": 641,
            "rank": 114,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "14h 56' 12''",
            "gap": "+ 00h 14' 33''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 873.0,
            "times_seconds": 53772.0
        },
        {
            "index": 642,
            "rank": 115,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "14h 56' 25''",
            "gap": "+ 00h 14' 46''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 886.0,
            "times_seconds": 53785.0
        },
        {
            "index": 643,
            "rank": 116,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "14h 56' 28''",
            "gap": "+ 00h 14' 49''",
            "b": "B : 6''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 889.0,
            "times_seconds": 53788.0
        },
        {
            "index": 644,
            "rank": 117,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "14h 56' 30''",
            "gap": "+ 00h 14' 51''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 891.0,
            "times_seconds": 53790.0
        },
        {
            "index": 645,
            "rank": 118,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "14h 56' 30''",
            "gap": "+ 00h 14' 51''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 891.0,
            "times_seconds": 53790.0
        },
        {
            "index": 646,
            "rank": 119,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 56' 39''",
            "gap": "+ 00h 15' 00''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 900.0,
            "times_seconds": 53799.0
        },
        {
            "index": 647,
            "rank": 120,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "14h 56' 58''",
            "gap": "+ 00h 15' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 919.0,
            "times_seconds": 53818.0
        },
        {
            "index": 648,
            "rank": 121,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "14h 57' 07''",
            "gap": "+ 00h 15' 28''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 928.0,
            "times_seconds": 53827.0
        },
        {
            "index": 649,
            "rank": 122,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "14h 57' 08''",
            "gap": "+ 00h 15' 29''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 929.0,
            "times_seconds": 53828.0
        },
        {
            "index": 650,
            "rank": 123,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "14h 57' 13''",
            "gap": "+ 00h 15' 34''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 934.0,
            "times_seconds": 53833.0
        },
        {
            "index": 651,
            "rank": 124,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "14h 57' 19''",
            "gap": "+ 00h 15' 40''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 940.0,
            "times_seconds": 53839.0
        },
        {
            "index": 652,
            "rank": 125,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "14h 57' 22''",
            "gap": "+ 00h 15' 43''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 943.0,
            "times_seconds": 53842.0
        },
        {
            "index": 653,
            "rank": 126,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "14h 57' 30''",
            "gap": "+ 00h 15' 51''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 951.0,
            "times_seconds": 53850.0
        },
        {
            "index": 654,
            "rank": 127,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "14h 57' 44''",
            "gap": "+ 00h 16' 05''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 965.0,
            "times_seconds": 53864.0
        },
        {
            "index": 655,
            "rank": 128,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "14h 57' 47''",
            "gap": "+ 00h 16' 08''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 968.0,
            "times_seconds": 53867.0
        },
        {
            "index": 656,
            "rank": 129,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "14h 57' 50''",
            "gap": "+ 00h 16' 11''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 971.0,
            "times_seconds": 53870.0
        },
        {
            "index": 657,
            "rank": 130,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 57' 51''",
            "gap": "+ 00h 16' 12''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 972.0,
            "times_seconds": 53871.0
        },
        {
            "index": 658,
            "rank": 131,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "14h 57' 52''",
            "gap": "+ 00h 16' 13''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 973.0,
            "times_seconds": 53872.0
        },
        {
            "index": 659,
            "rank": 132,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "14h 57' 55''",
            "gap": "+ 00h 16' 16''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 976.0,
            "times_seconds": 53875.0
        },
        {
            "index": 660,
            "rank": 133,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "14h 57' 57''",
            "gap": "+ 00h 16' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 978.0,
            "times_seconds": 53877.0
        },
        {
            "index": 661,
            "rank": 134,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "14h 57' 58''",
            "gap": "+ 00h 16' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 979.0,
            "times_seconds": 53878.0
        },
        {
            "index": 662,
            "rank": 135,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "14h 57' 58''",
            "gap": "+ 00h 16' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 979.0,
            "times_seconds": 53878.0
        },
        {
            "index": 663,
            "rank": 136,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "14h 58' 03''",
            "gap": "+ 00h 16' 24''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 984.0,
            "times_seconds": 53883.0
        },
        {
            "index": 664,
            "rank": 137,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "14h 58' 05''",
            "gap": "+ 00h 16' 26''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 986.0,
            "times_seconds": 53885.0
        },
        {
            "index": 665,
            "rank": 138,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "14h 58' 07''",
            "gap": "+ 00h 16' 28''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 988.0,
            "times_seconds": 53887.0
        },
        {
            "index": 666,
            "rank": 139,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "14h 58' 08''",
            "gap": "+ 00h 16' 29''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 989.0,
            "times_seconds": 53888.0
        },
        {
            "index": 667,
            "rank": 140,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 58' 10''",
            "gap": "+ 00h 16' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 991.0,
            "times_seconds": 53890.0
        },
        {
            "index": 668,
            "rank": 141,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "14h 58' 10''",
            "gap": "+ 00h 16' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 991.0,
            "times_seconds": 53890.0
        },
        {
            "index": 669,
            "rank": 142,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "14h 58' 11''",
            "gap": "+ 00h 16' 32''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 992.0,
            "times_seconds": 53891.0
        },
        {
            "index": 670,
            "rank": 143,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "14h 58' 13''",
            "gap": "+ 00h 16' 34''",
            "b": "B : 8''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 994.0,
            "times_seconds": 53893.0
        },
        {
            "index": 671,
            "rank": 144,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "14h 58' 16''",
            "gap": "+ 00h 16' 37''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 997.0,
            "times_seconds": 53896.0
        },
        {
            "index": 672,
            "rank": 145,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "14h 58' 16''",
            "gap": "+ 00h 16' 37''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 997.0,
            "times_seconds": 53896.0
        },
        {
            "index": 673,
            "rank": 146,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "14h 58' 27''",
            "gap": "+ 00h 16' 48''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1008.0,
            "times_seconds": 53907.0
        },
        {
            "index": 674,
            "rank": 147,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "14h 58' 32''",
            "gap": "+ 00h 16' 53''",
            "b": "B : 8''",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1013.0,
            "times_seconds": 53912.0
        },
        {
            "index": 675,
            "rank": 148,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "14h 58' 32''",
            "gap": "+ 00h 16' 53''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1013.0,
            "times_seconds": 53912.0
        },
        {
            "index": 676,
            "rank": 149,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "14h 58' 35''",
            "gap": "+ 00h 16' 56''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1016.0,
            "times_seconds": 53915.0
        },
        {
            "index": 677,
            "rank": 150,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "14h 58' 35''",
            "gap": "+ 00h 16' 56''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1016.0,
            "times_seconds": 53915.0
        },
        {
            "index": 678,
            "rank": 151,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "14h 58' 36''",
            "gap": "+ 00h 16' 57''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1017.0,
            "times_seconds": 53916.0
        },
        {
            "index": 679,
            "rank": 152,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "14h 58' 41''",
            "gap": "+ 00h 17' 02''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1022.0,
            "times_seconds": 53921.0
        },
        {
            "index": 680,
            "rank": 153,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "14h 58' 51''",
            "gap": "+ 00h 17' 12''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1032.0,
            "times_seconds": 53931.0
        },
        {
            "index": 681,
            "rank": 154,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "14h 58' 52''",
            "gap": "+ 00h 17' 13''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1033.0,
            "times_seconds": 53932.0
        },
        {
            "index": 682,
            "rank": 155,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 58' 57''",
            "gap": "+ 00h 17' 18''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1038.0,
            "times_seconds": 53937.0
        },
        {
            "index": 683,
            "rank": 156,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "14h 58' 58''",
            "gap": "+ 00h 17' 19''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1039.0,
            "times_seconds": 53938.0
        },
        {
            "index": 684,
            "rank": 157,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "14h 59' 53''",
            "gap": "+ 00h 18' 14''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1094.0,
            "times_seconds": 53993.0
        },
        {
            "index": 685,
            "rank": 158,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "14h 59' 54''",
            "gap": "+ 00h 18' 15''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1095.0,
            "times_seconds": 53994.0
        },
        {
            "index": 686,
            "rank": 159,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "15h 00' 03''",
            "gap": "+ 00h 18' 24''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1104.0,
            "times_seconds": 54003.0
        },
        {
            "index": 687,
            "rank": 160,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "15h 00' 10''",
            "gap": "+ 00h 18' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1111.0,
            "times_seconds": 54010.0
        },
        {
            "index": 688,
            "rank": 161,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "15h 00' 18''",
            "gap": "+ 00h 18' 39''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1119.0,
            "times_seconds": 54018.0
        },
        {
            "index": 689,
            "rank": 162,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "15h 00' 31''",
            "gap": "+ 00h 18' 52''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1132.0,
            "times_seconds": 54031.0
        },
        {
            "index": 690,
            "rank": 163,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "15h 00' 56''",
            "gap": "+ 00h 19' 17''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1157.0,
            "times_seconds": 54056.0
        },
        {
            "index": 691,
            "rank": 164,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "15h 01' 21''",
            "gap": "+ 00h 19' 42''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1182.0,
            "times_seconds": 54081.0
        },
        {
            "index": 692,
            "rank": 165,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "15h 01' 26''",
            "gap": "+ 00h 19' 47''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1187.0,
            "times_seconds": 54086.0
        },
        {
            "index": 693,
            "rank": 166,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "15h 01' 55''",
            "gap": "+ 00h 20' 16''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1216.0,
            "times_seconds": 54115.0
        },
        {
            "index": 694,
            "rank": 167,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "15h 02' 36''",
            "gap": "+ 00h 20' 57''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1257.0,
            "times_seconds": 54156.0
        },
        {
            "index": 695,
            "rank": 168,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "15h 03' 10''",
            "gap": "+ 00h 21' 31''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1291.0,
            "times_seconds": 54190.0
        },
        {
            "index": 696,
            "rank": 169,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "15h 03' 48''",
            "gap": "+ 00h 22' 09''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1329.0,
            "times_seconds": 54228.0
        },
        {
            "index": 697,
            "rank": 170,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "15h 04' 02''",
            "gap": "+ 00h 22' 23''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1343.0,
            "times_seconds": 54242.0
        },
        {
            "index": 698,
            "rank": 171,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "15h 04' 05''",
            "gap": "+ 00h 22' 26''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1346.0,
            "times_seconds": 54245.0
        },
        {
            "index": 699,
            "rank": 172,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "15h 04' 21''",
            "gap": "+ 00h 22' 42''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1362.0,
            "times_seconds": 54261.0
        },
        {
            "index": 700,
            "rank": 173,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "15h 04' 32''",
            "gap": "+ 00h 22' 53''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1373.0,
            "times_seconds": 54272.0
        },
        {
            "index": 701,
            "rank": 174,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "15h 04' 34''",
            "gap": "+ 00h 22' 55''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1375.0,
            "times_seconds": 54274.0
        },
        {
            "index": 702,
            "rank": 175,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "15h 06' 28''",
            "gap": "+ 00h 24' 49''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1489.0,
            "times_seconds": 54388.0
        },
        {
            "index": 703,
            "rank": 176,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "15h 06' 28''",
            "gap": "+ 00h 24' 49''",
            "b": "-",
            "p": "-",
            "stage": 4,
            "gap_seconds": 1489.0,
            "times_seconds": 54388.0
        },
        {
            "index": 704,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "18h 44' 12''",
            "gap": "-",
            "b": "B : 15''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 0.0,
            "times_seconds": 67452.0
        },
        {
            "index": 705,
            "rank": 2,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "18h 44' 26''",
            "gap": "+ 00h 00' 14''",
            "b": "B : 6''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 14.0,
            "times_seconds": 67466.0
        },
        {
            "index": 706,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "18h 44' 37''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 25.0,
            "times_seconds": 67477.0
        },
        {
            "index": 707,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "18h 44' 37''",
            "gap": "+ 00h 00' 25''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 25.0,
            "times_seconds": 67477.0
        },
        {
            "index": 708,
            "rank": 5,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "18h 44' 52''",
            "gap": "+ 00h 00' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 40.0,
            "times_seconds": 67492.0
        },
        {
            "index": 709,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "18h 44' 52''",
            "gap": "+ 00h 00' 40''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 40.0,
            "times_seconds": 67492.0
        },
        {
            "index": 710,
            "rank": 7,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "18h 44' 57''",
            "gap": "+ 00h 00' 45''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 45.0,
            "times_seconds": 67497.0
        },
        {
            "index": 711,
            "rank": 8,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "18h 44' 58''",
            "gap": "+ 00h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 46.0,
            "times_seconds": 67498.0
        },
        {
            "index": 712,
            "rank": 9,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "18h 45' 02''",
            "gap": "+ 00h 00' 50''",
            "b": "B : 16''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 50.0,
            "times_seconds": 67502.0
        },
        {
            "index": 713,
            "rank": 10,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "18h 45' 03''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 51.0,
            "times_seconds": 67503.0
        },
        {
            "index": 714,
            "rank": 11,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "18h 45' 03''",
            "gap": "+ 00h 00' 51''",
            "b": "B : 2''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 51.0,
            "times_seconds": 67503.0
        },
        {
            "index": 715,
            "rank": 12,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "18h 45' 03''",
            "gap": "+ 00h 00' 51''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 51.0,
            "times_seconds": 67503.0
        },
        {
            "index": 716,
            "rank": 13,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "18h 45' 04''",
            "gap": "+ 00h 00' 52''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 52.0,
            "times_seconds": 67504.0
        },
        {
            "index": 717,
            "rank": 14,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "18h 45' 05''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 53.0,
            "times_seconds": 67505.0
        },
        {
            "index": 718,
            "rank": 15,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "18h 45' 05''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 53.0,
            "times_seconds": 67505.0
        },
        {
            "index": 719,
            "rank": 16,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "18h 45' 08''",
            "gap": "+ 00h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 56.0,
            "times_seconds": 67508.0
        },
        {
            "index": 720,
            "rank": 17,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "18h 45' 09''",
            "gap": "+ 00h 00' 57''",
            "b": "B : 4''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 57.0,
            "times_seconds": 67509.0
        },
        {
            "index": 721,
            "rank": 18,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "18h 45' 09''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 57.0,
            "times_seconds": 67509.0
        },
        {
            "index": 722,
            "rank": 19,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "18h 45' 09''",
            "gap": "+ 00h 00' 57''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 57.0,
            "times_seconds": 67509.0
        },
        {
            "index": 723,
            "rank": 20,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "18h 45' 12''",
            "gap": "+ 00h 01' 00''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 60.0,
            "times_seconds": 67512.0
        },
        {
            "index": 724,
            "rank": 21,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "18h 45' 13''",
            "gap": "+ 00h 01' 01''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 61.0,
            "times_seconds": 67513.0
        },
        {
            "index": 725,
            "rank": 22,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 726,
            "rank": 23,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 727,
            "rank": 24,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 728,
            "rank": 25,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 729,
            "rank": 26,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 730,
            "rank": 27,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "18h 45' 18''",
            "gap": "+ 00h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 66.0,
            "times_seconds": 67518.0
        },
        {
            "index": 731,
            "rank": 28,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "18h 45' 23''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 71.0,
            "times_seconds": 67523.0
        },
        {
            "index": 732,
            "rank": 29,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "18h 45' 23''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 71.0,
            "times_seconds": 67523.0
        },
        {
            "index": 733,
            "rank": 30,
            "rider": "Nicolas Edet",
            "rider no.": 153,
            "team": "Cofidis, Solutions Credits",
            "times": "18h 45' 30''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 78.0,
            "times_seconds": 67530.0
        },
        {
            "index": 734,
            "rank": 31,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "18h 45' 30''",
            "gap": "+ 00h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 78.0,
            "times_seconds": 67530.0
        },
        {
            "index": 735,
            "rank": 32,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "18h 45' 31''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 79.0,
            "times_seconds": 67531.0
        },
        {
            "index": 736,
            "rank": 33,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "18h 45' 31''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 79.0,
            "times_seconds": 67531.0
        },
        {
            "index": 737,
            "rank": 34,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "18h 45' 31''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 79.0,
            "times_seconds": 67531.0
        },
        {
            "index": 738,
            "rank": 35,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "18h 45' 40''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 88.0,
            "times_seconds": 67540.0
        },
        {
            "index": 739,
            "rank": 36,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "18h 45' 40''",
            "gap": "+ 00h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 88.0,
            "times_seconds": 67540.0
        },
        {
            "index": 740,
            "rank": 37,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "18h 45' 42''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 90.0,
            "times_seconds": 67542.0
        },
        {
            "index": 741,
            "rank": 38,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "18h 45' 42''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 90.0,
            "times_seconds": 67542.0
        },
        {
            "index": 742,
            "rank": 39,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "18h 45' 42''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 90.0,
            "times_seconds": 67542.0
        },
        {
            "index": 743,
            "rank": 40,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "18h 45' 42''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 90.0,
            "times_seconds": 67542.0
        },
        {
            "index": 744,
            "rank": 41,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "18h 45' 46''",
            "gap": "+ 00h 01' 34''",
            "b": "B : 4''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 94.0,
            "times_seconds": 67546.0
        },
        {
            "index": 745,
            "rank": 42,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "18h 45' 55''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 103.0,
            "times_seconds": 67555.0
        },
        {
            "index": 746,
            "rank": 43,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "18h 45' 55''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 103.0,
            "times_seconds": 67555.0
        },
        {
            "index": 747,
            "rank": 44,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "18h 45' 55''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 103.0,
            "times_seconds": 67555.0
        },
        {
            "index": 748,
            "rank": 45,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "18h 45' 55''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 103.0,
            "times_seconds": 67555.0
        },
        {
            "index": 749,
            "rank": 46,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "18h 45' 56''",
            "gap": "+ 00h 01' 44''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 104.0,
            "times_seconds": 67556.0
        },
        {
            "index": 750,
            "rank": 47,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "18h 46' 00''",
            "gap": "+ 00h 01' 48''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 108.0,
            "times_seconds": 67560.0
        },
        {
            "index": 751,
            "rank": 48,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "18h 46' 12''",
            "gap": "+ 00h 02' 00''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 120.0,
            "times_seconds": 67572.0
        },
        {
            "index": 752,
            "rank": 49,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "18h 46' 19''",
            "gap": "+ 00h 02' 07''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 127.0,
            "times_seconds": 67579.0
        },
        {
            "index": 753,
            "rank": 50,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "18h 46' 27''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 135.0,
            "times_seconds": 67587.0
        },
        {
            "index": 754,
            "rank": 51,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "18h 46' 28''",
            "gap": "+ 00h 02' 16''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 136.0,
            "times_seconds": 67588.0
        },
        {
            "index": 755,
            "rank": 52,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "18h 46' 30''",
            "gap": "+ 00h 02' 18''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 138.0,
            "times_seconds": 67590.0
        },
        {
            "index": 756,
            "rank": 53,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "18h 46' 31''",
            "gap": "+ 00h 02' 19''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 139.0,
            "times_seconds": 67591.0
        },
        {
            "index": 757,
            "rank": 54,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "18h 46' 35''",
            "gap": "+ 00h 02' 23''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 143.0,
            "times_seconds": 67595.0
        },
        {
            "index": 758,
            "rank": 55,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "18h 46' 39''",
            "gap": "+ 00h 02' 27''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 147.0,
            "times_seconds": 67599.0
        },
        {
            "index": 759,
            "rank": 56,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "18h 46' 45''",
            "gap": "+ 00h 02' 33''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 153.0,
            "times_seconds": 67605.0
        },
        {
            "index": 760,
            "rank": 57,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "18h 46' 56''",
            "gap": "+ 00h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 164.0,
            "times_seconds": 67616.0
        },
        {
            "index": 761,
            "rank": 58,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "18h 47' 07''",
            "gap": "+ 00h 02' 55''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 175.0,
            "times_seconds": 67627.0
        },
        {
            "index": 762,
            "rank": 59,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "18h 47' 08''",
            "gap": "+ 00h 02' 56''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 176.0,
            "times_seconds": 67628.0
        },
        {
            "index": 763,
            "rank": 60,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "18h 47' 15''",
            "gap": "+ 00h 03' 03''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 183.0,
            "times_seconds": 67635.0
        },
        {
            "index": 764,
            "rank": 61,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "18h 47' 24''",
            "gap": "+ 00h 03' 12''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 192.0,
            "times_seconds": 67644.0
        },
        {
            "index": 765,
            "rank": 62,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "18h 47' 28''",
            "gap": "+ 00h 03' 16''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 196.0,
            "times_seconds": 67648.0
        },
        {
            "index": 766,
            "rank": 63,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "18h 47' 43''",
            "gap": "+ 00h 03' 31''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 211.0,
            "times_seconds": 67663.0
        },
        {
            "index": 767,
            "rank": 64,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "18h 47' 55''",
            "gap": "+ 00h 03' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 223.0,
            "times_seconds": 67675.0
        },
        {
            "index": 768,
            "rank": 65,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "18h 48' 23''",
            "gap": "+ 00h 04' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 251.0,
            "times_seconds": 67703.0
        },
        {
            "index": 769,
            "rank": 66,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "18h 48' 25''",
            "gap": "+ 00h 04' 13''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 253.0,
            "times_seconds": 67705.0
        },
        {
            "index": 770,
            "rank": 67,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "18h 48' 43''",
            "gap": "+ 00h 04' 31''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 271.0,
            "times_seconds": 67723.0
        },
        {
            "index": 771,
            "rank": 68,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "18h 48' 52''",
            "gap": "+ 00h 04' 40''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 280.0,
            "times_seconds": 67732.0
        },
        {
            "index": 772,
            "rank": 69,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "18h 49' 15''",
            "gap": "+ 00h 05' 03''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 303.0,
            "times_seconds": 67755.0
        },
        {
            "index": 773,
            "rank": 70,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "18h 49' 53''",
            "gap": "+ 00h 05' 41''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 341.0,
            "times_seconds": 67793.0
        },
        {
            "index": 774,
            "rank": 71,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "18h 50' 00''",
            "gap": "+ 00h 05' 48''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 348.0,
            "times_seconds": 67800.0
        },
        {
            "index": 775,
            "rank": 72,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "18h 50' 04''",
            "gap": "+ 00h 05' 52''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 352.0,
            "times_seconds": 67804.0
        },
        {
            "index": 776,
            "rank": 73,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "18h 53' 17''",
            "gap": "+ 00h 09' 05''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 545.0,
            "times_seconds": 67997.0
        },
        {
            "index": 777,
            "rank": 74,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "18h 53' 42''",
            "gap": "+ 00h 09' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 570.0,
            "times_seconds": 68022.0
        },
        {
            "index": 778,
            "rank": 75,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "18h 53' 46''",
            "gap": "+ 00h 09' 34''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 574.0,
            "times_seconds": 68026.0
        },
        {
            "index": 779,
            "rank": 76,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "18h 53' 51''",
            "gap": "+ 00h 09' 39''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 579.0,
            "times_seconds": 68031.0
        },
        {
            "index": 780,
            "rank": 77,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "18h 55' 00''",
            "gap": "+ 00h 10' 48''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 648.0,
            "times_seconds": 68100.0
        },
        {
            "index": 781,
            "rank": 78,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "18h 55' 14''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 662.0,
            "times_seconds": 68114.0
        },
        {
            "index": 782,
            "rank": 79,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "18h 55' 14''",
            "gap": "+ 00h 11' 02''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 662.0,
            "times_seconds": 68114.0
        },
        {
            "index": 783,
            "rank": 80,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "18h 56' 49''",
            "gap": "+ 00h 12' 37''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 757.0,
            "times_seconds": 68209.0
        },
        {
            "index": 784,
            "rank": 81,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "18h 56' 50''",
            "gap": "+ 00h 12' 38''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 758.0,
            "times_seconds": 68210.0
        },
        {
            "index": 785,
            "rank": 82,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "18h 58' 32''",
            "gap": "+ 00h 14' 20''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 860.0,
            "times_seconds": 68312.0
        },
        {
            "index": 786,
            "rank": 83,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "18h 59' 12''",
            "gap": "+ 00h 15' 00''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 900.0,
            "times_seconds": 68352.0
        },
        {
            "index": 787,
            "rank": 84,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "19h 01' 48''",
            "gap": "+ 00h 17' 36''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1056.0,
            "times_seconds": 68508.0
        },
        {
            "index": 788,
            "rank": 85,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "19h 02' 48''",
            "gap": "+ 00h 18' 36''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1116.0,
            "times_seconds": 68568.0
        },
        {
            "index": 789,
            "rank": 86,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "19h 02' 53''",
            "gap": "+ 00h 18' 41''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1121.0,
            "times_seconds": 68573.0
        },
        {
            "index": 790,
            "rank": 87,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "19h 03' 04''",
            "gap": "+ 00h 18' 52''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1132.0,
            "times_seconds": 68584.0
        },
        {
            "index": 791,
            "rank": 88,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "19h 03' 18''",
            "gap": "+ 00h 19' 06''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1146.0,
            "times_seconds": 68598.0
        },
        {
            "index": 792,
            "rank": 89,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "19h 03' 37''",
            "gap": "+ 00h 19' 25''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1165.0,
            "times_seconds": 68617.0
        },
        {
            "index": 793,
            "rank": 90,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "19h 03' 42''",
            "gap": "+ 00h 19' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1170.0,
            "times_seconds": 68622.0
        },
        {
            "index": 794,
            "rank": 91,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 03' 46''",
            "gap": "+ 00h 19' 34''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1174.0,
            "times_seconds": 68626.0
        },
        {
            "index": 795,
            "rank": 92,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "19h 05' 03''",
            "gap": "+ 00h 20' 51''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1251.0,
            "times_seconds": 68703.0
        },
        {
            "index": 796,
            "rank": 93,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "19h 06' 04''",
            "gap": "+ 00h 21' 52''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1312.0,
            "times_seconds": 68764.0
        },
        {
            "index": 797,
            "rank": 94,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "19h 06' 08''",
            "gap": "+ 00h 21' 56''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1316.0,
            "times_seconds": 68768.0
        },
        {
            "index": 798,
            "rank": 95,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "19h 06' 23''",
            "gap": "+ 00h 22' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1331.0,
            "times_seconds": 68783.0
        },
        {
            "index": 799,
            "rank": 96,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "19h 06' 27''",
            "gap": "+ 00h 22' 15''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1335.0,
            "times_seconds": 68787.0
        },
        {
            "index": 800,
            "rank": 97,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "19h 06' 50''",
            "gap": "+ 00h 22' 38''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1358.0,
            "times_seconds": 68810.0
        },
        {
            "index": 801,
            "rank": 98,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 06' 53''",
            "gap": "+ 00h 22' 41''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1361.0,
            "times_seconds": 68813.0
        },
        {
            "index": 802,
            "rank": 99,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "19h 07' 01''",
            "gap": "+ 00h 22' 49''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1369.0,
            "times_seconds": 68821.0
        },
        {
            "index": 803,
            "rank": 100,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "19h 07' 19''",
            "gap": "+ 00h 23' 07''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1387.0,
            "times_seconds": 68839.0
        },
        {
            "index": 804,
            "rank": 101,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "19h 07' 26''",
            "gap": "+ 00h 23' 14''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1394.0,
            "times_seconds": 68846.0
        },
        {
            "index": 805,
            "rank": 102,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "19h 07' 27''",
            "gap": "+ 00h 23' 15''",
            "b": "B : 10''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1395.0,
            "times_seconds": 68847.0
        },
        {
            "index": 806,
            "rank": 103,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "19h 07' 47''",
            "gap": "+ 00h 23' 35''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1415.0,
            "times_seconds": 68867.0
        },
        {
            "index": 807,
            "rank": 104,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "19h 07' 56''",
            "gap": "+ 00h 23' 44''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1424.0,
            "times_seconds": 68876.0
        },
        {
            "index": 808,
            "rank": 105,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "19h 08' 02''",
            "gap": "+ 00h 23' 50''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1430.0,
            "times_seconds": 68882.0
        },
        {
            "index": 809,
            "rank": 106,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "19h 08' 10''",
            "gap": "+ 00h 23' 58''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1438.0,
            "times_seconds": 68890.0
        },
        {
            "index": 810,
            "rank": 107,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "19h 08' 33''",
            "gap": "+ 00h 24' 21''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1461.0,
            "times_seconds": 68913.0
        },
        {
            "index": 811,
            "rank": 108,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "19h 08' 36''",
            "gap": "+ 00h 24' 24''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1464.0,
            "times_seconds": 68916.0
        },
        {
            "index": 812,
            "rank": 109,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "19h 08' 40''",
            "gap": "+ 00h 24' 28''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1468.0,
            "times_seconds": 68920.0
        },
        {
            "index": 813,
            "rank": 110,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "19h 08' 41''",
            "gap": "+ 00h 24' 29''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1469.0,
            "times_seconds": 68921.0
        },
        {
            "index": 814,
            "rank": 111,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "19h 08' 52''",
            "gap": "+ 00h 24' 40''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1480.0,
            "times_seconds": 68932.0
        },
        {
            "index": 815,
            "rank": 112,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "19h 08' 56''",
            "gap": "+ 00h 24' 44''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1484.0,
            "times_seconds": 68936.0
        },
        {
            "index": 816,
            "rank": 113,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "19h 08' 57''",
            "gap": "+ 00h 24' 45''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1485.0,
            "times_seconds": 68937.0
        },
        {
            "index": 817,
            "rank": 114,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "19h 09' 02''",
            "gap": "+ 00h 24' 50''",
            "b": "B : 8''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1490.0,
            "times_seconds": 68942.0
        },
        {
            "index": 818,
            "rank": 115,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "19h 09' 06''",
            "gap": "+ 00h 24' 54''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1494.0,
            "times_seconds": 68946.0
        },
        {
            "index": 819,
            "rank": 116,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "19h 09' 24''",
            "gap": "+ 00h 25' 12''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1512.0,
            "times_seconds": 68964.0
        },
        {
            "index": 820,
            "rank": 117,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "19h 09' 28''",
            "gap": "+ 00h 25' 16''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1516.0,
            "times_seconds": 68968.0
        },
        {
            "index": 821,
            "rank": 118,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "19h 10' 41''",
            "gap": "+ 00h 26' 29''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1589.0,
            "times_seconds": 69041.0
        },
        {
            "index": 822,
            "rank": 119,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "19h 10' 48''",
            "gap": "+ 00h 26' 36''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1596.0,
            "times_seconds": 69048.0
        },
        {
            "index": 823,
            "rank": 120,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "19h 10' 54''",
            "gap": "+ 00h 26' 42''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1602.0,
            "times_seconds": 69054.0
        },
        {
            "index": 824,
            "rank": 121,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "19h 10' 59''",
            "gap": "+ 00h 26' 47''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1607.0,
            "times_seconds": 69059.0
        },
        {
            "index": 825,
            "rank": 122,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "19h 11' 20''",
            "gap": "+ 00h 27' 08''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1628.0,
            "times_seconds": 69080.0
        },
        {
            "index": 826,
            "rank": 123,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "19h 11' 32''",
            "gap": "+ 00h 27' 20''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1640.0,
            "times_seconds": 69092.0
        },
        {
            "index": 827,
            "rank": 124,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "19h 11' 40''",
            "gap": "+ 00h 27' 28''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1648.0,
            "times_seconds": 69100.0
        },
        {
            "index": 828,
            "rank": 125,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "19h 13' 15''",
            "gap": "+ 00h 29' 03''",
            "b": "B : 10''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1743.0,
            "times_seconds": 69195.0
        },
        {
            "index": 829,
            "rank": 126,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "19h 13' 52''",
            "gap": "+ 00h 29' 40''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1780.0,
            "times_seconds": 69232.0
        },
        {
            "index": 830,
            "rank": 127,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "19h 14' 29''",
            "gap": "+ 00h 30' 17''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1817.0,
            "times_seconds": 69269.0
        },
        {
            "index": 831,
            "rank": 128,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "19h 14' 37''",
            "gap": "+ 00h 30' 25''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1825.0,
            "times_seconds": 69277.0
        },
        {
            "index": 832,
            "rank": 129,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "19h 14' 51''",
            "gap": "+ 00h 30' 39''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1839.0,
            "times_seconds": 69291.0
        },
        {
            "index": 833,
            "rank": 130,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "19h 15' 11''",
            "gap": "+ 00h 30' 59''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1859.0,
            "times_seconds": 69311.0
        },
        {
            "index": 834,
            "rank": 131,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "19h 15' 12''",
            "gap": "+ 00h 31' 00''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1860.0,
            "times_seconds": 69312.0
        },
        {
            "index": 835,
            "rank": 132,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "19h 15' 16''",
            "gap": "+ 00h 31' 04''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1864.0,
            "times_seconds": 69316.0
        },
        {
            "index": 836,
            "rank": 133,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "19h 15' 19''",
            "gap": "+ 00h 31' 07''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1867.0,
            "times_seconds": 69319.0
        },
        {
            "index": 837,
            "rank": 134,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "19h 15' 20''",
            "gap": "+ 00h 31' 08''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1868.0,
            "times_seconds": 69320.0
        },
        {
            "index": 838,
            "rank": 135,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "19h 15' 26''",
            "gap": "+ 00h 31' 14''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1874.0,
            "times_seconds": 69326.0
        },
        {
            "index": 839,
            "rank": 136,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "19h 15' 28''",
            "gap": "+ 00h 31' 16''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1876.0,
            "times_seconds": 69328.0
        },
        {
            "index": 840,
            "rank": 137,
            "rider": "Patrick Bevin",
            "rider no.": 112,
            "team": "Ccc Team",
            "times": "19h 15' 33''",
            "gap": "+ 00h 31' 21''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1881.0,
            "times_seconds": 69333.0
        },
        {
            "index": 841,
            "rank": 138,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 15' 35''",
            "gap": "+ 00h 31' 23''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1883.0,
            "times_seconds": 69335.0
        },
        {
            "index": 842,
            "rank": 139,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "19h 16' 50''",
            "gap": "+ 00h 32' 38''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1958.0,
            "times_seconds": 69410.0
        },
        {
            "index": 843,
            "rank": 140,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "19h 16' 53''",
            "gap": "+ 00h 32' 41''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1961.0,
            "times_seconds": 69413.0
        },
        {
            "index": 844,
            "rank": 141,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "19h 17' 07''",
            "gap": "+ 00h 32' 55''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1975.0,
            "times_seconds": 69427.0
        },
        {
            "index": 845,
            "rank": 142,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "19h 17' 23''",
            "gap": "+ 00h 33' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 1991.0,
            "times_seconds": 69443.0
        },
        {
            "index": 846,
            "rank": 143,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "19h 17' 35''",
            "gap": "+ 00h 33' 23''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2003.0,
            "times_seconds": 69455.0
        },
        {
            "index": 847,
            "rank": 144,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "19h 17' 38''",
            "gap": "+ 00h 33' 26''",
            "b": "B : 6''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2006.0,
            "times_seconds": 69458.0
        },
        {
            "index": 848,
            "rank": 145,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "19h 17' 39''",
            "gap": "+ 00h 33' 27''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2007.0,
            "times_seconds": 69459.0
        },
        {
            "index": 849,
            "rank": 146,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "19h 17' 40''",
            "gap": "+ 00h 33' 28''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2008.0,
            "times_seconds": 69460.0
        },
        {
            "index": 850,
            "rank": 147,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "19h 17' 47''",
            "gap": "+ 00h 33' 35''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2015.0,
            "times_seconds": 69467.0
        },
        {
            "index": 851,
            "rank": 148,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "19h 17' 47''",
            "gap": "+ 00h 33' 35''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2015.0,
            "times_seconds": 69467.0
        },
        {
            "index": 852,
            "rank": 149,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "19h 17' 58''",
            "gap": "+ 00h 33' 46''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2026.0,
            "times_seconds": 69478.0
        },
        {
            "index": 853,
            "rank": 150,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "19h 18' 03''",
            "gap": "+ 00h 33' 51''",
            "b": "B : 8''",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2031.0,
            "times_seconds": 69483.0
        },
        {
            "index": 854,
            "rank": 151,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 18' 06''",
            "gap": "+ 00h 33' 54''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2034.0,
            "times_seconds": 69486.0
        },
        {
            "index": 855,
            "rank": 152,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "19h 18' 07''",
            "gap": "+ 00h 33' 55''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2035.0,
            "times_seconds": 69487.0
        },
        {
            "index": 856,
            "rank": 153,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "19h 18' 22''",
            "gap": "+ 00h 34' 10''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2050.0,
            "times_seconds": 69502.0
        },
        {
            "index": 857,
            "rank": 154,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "19h 18' 42''",
            "gap": "+ 00h 34' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2070.0,
            "times_seconds": 69522.0
        },
        {
            "index": 858,
            "rank": 155,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "19h 18' 47''",
            "gap": "+ 00h 34' 35''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2075.0,
            "times_seconds": 69527.0
        },
        {
            "index": 859,
            "rank": 156,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "19h 19' 07''",
            "gap": "+ 00h 34' 55''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2095.0,
            "times_seconds": 69547.0
        },
        {
            "index": 860,
            "rank": 157,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "19h 19' 08''",
            "gap": "+ 00h 34' 56''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2096.0,
            "times_seconds": 69548.0
        },
        {
            "index": 861,
            "rank": 158,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "19h 19' 20''",
            "gap": "+ 00h 35' 08''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2108.0,
            "times_seconds": 69560.0
        },
        {
            "index": 862,
            "rank": 159,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "19h 19' 21''",
            "gap": "+ 00h 35' 09''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2109.0,
            "times_seconds": 69561.0
        },
        {
            "index": 863,
            "rank": 160,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "19h 19' 33''",
            "gap": "+ 00h 35' 21''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2121.0,
            "times_seconds": 69573.0
        },
        {
            "index": 864,
            "rank": 161,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "19h 19' 34''",
            "gap": "+ 00h 35' 22''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2122.0,
            "times_seconds": 69574.0
        },
        {
            "index": 865,
            "rank": 162,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "19h 19' 42''",
            "gap": "+ 00h 35' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2130.0,
            "times_seconds": 69582.0
        },
        {
            "index": 866,
            "rank": 163,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "19h 19' 51''",
            "gap": "+ 00h 35' 39''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2139.0,
            "times_seconds": 69591.0
        },
        {
            "index": 867,
            "rank": 164,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "19h 20' 07''",
            "gap": "+ 00h 35' 55''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2155.0,
            "times_seconds": 69607.0
        },
        {
            "index": 868,
            "rank": 165,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "19h 20' 08''",
            "gap": "+ 00h 35' 56''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2156.0,
            "times_seconds": 69608.0
        },
        {
            "index": 869,
            "rank": 166,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "19h 20' 23''",
            "gap": "+ 00h 36' 11''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2171.0,
            "times_seconds": 69623.0
        },
        {
            "index": 870,
            "rank": 167,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "19h 20' 27''",
            "gap": "+ 00h 36' 15''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2175.0,
            "times_seconds": 69627.0
        },
        {
            "index": 871,
            "rank": 168,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "19h 21' 03''",
            "gap": "+ 00h 36' 51''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2211.0,
            "times_seconds": 69663.0
        },
        {
            "index": 872,
            "rank": 169,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "19h 21' 04''",
            "gap": "+ 00h 36' 52''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2212.0,
            "times_seconds": 69664.0
        },
        {
            "index": 873,
            "rank": 170,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "19h 21' 42''",
            "gap": "+ 00h 37' 30''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2250.0,
            "times_seconds": 69702.0
        },
        {
            "index": 874,
            "rank": 171,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "19h 21' 55''",
            "gap": "+ 00h 37' 43''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2263.0,
            "times_seconds": 69715.0
        },
        {
            "index": 875,
            "rank": 172,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "19h 22' 41''",
            "gap": "+ 00h 38' 29''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2309.0,
            "times_seconds": 69761.0
        },
        {
            "index": 876,
            "rank": 173,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "19h 23' 46''",
            "gap": "+ 00h 39' 34''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2374.0,
            "times_seconds": 69826.0
        },
        {
            "index": 877,
            "rank": 174,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "19h 24' 03''",
            "gap": "+ 00h 39' 51''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2391.0,
            "times_seconds": 69843.0
        },
        {
            "index": 878,
            "rank": 175,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 25' 59''",
            "gap": "+ 00h 41' 47''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2507.0,
            "times_seconds": 69959.0
        },
        {
            "index": 879,
            "rank": 176,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "19h 27' 38''",
            "gap": "+ 00h 43' 26''",
            "b": "-",
            "p": "-",
            "stage": 5,
            "gap_seconds": 2606.0,
            "times_seconds": 70058.0
        },
        {
            "index": 880,
            "rank": 1,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "23h 14' 55''",
            "gap": "-",
            "b": "B : 14''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 0.0,
            "times_seconds": 83695.0
        },
        {
            "index": 881,
            "rank": 2,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "23h 15' 01''",
            "gap": "+ 00h 00' 06''",
            "b": "B : 15''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 6.0,
            "times_seconds": 83701.0
        },
        {
            "index": 882,
            "rank": 3,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "23h 15' 27''",
            "gap": "+ 00h 00' 32''",
            "b": "B : 15''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 32.0,
            "times_seconds": 83727.0
        },
        {
            "index": 883,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "23h 15' 42''",
            "gap": "+ 00h 00' 47''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 47.0,
            "times_seconds": 83742.0
        },
        {
            "index": 884,
            "rank": 5,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "23h 15' 44''",
            "gap": "+ 00h 00' 49''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 49.0,
            "times_seconds": 83744.0
        },
        {
            "index": 885,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "23h 15' 48''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 53.0,
            "times_seconds": 83748.0
        },
        {
            "index": 886,
            "rank": 7,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "23h 15' 53''",
            "gap": "+ 00h 00' 58''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 58.0,
            "times_seconds": 83753.0
        },
        {
            "index": 887,
            "rank": 8,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "23h 15' 59''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 64.0,
            "times_seconds": 83759.0
        },
        {
            "index": 888,
            "rank": 9,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "23h 16' 08''",
            "gap": "+ 00h 01' 13''",
            "b": "B : 2''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 73.0,
            "times_seconds": 83768.0
        },
        {
            "index": 889,
            "rank": 10,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "23h 16' 10''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 75.0,
            "times_seconds": 83770.0
        },
        {
            "index": 890,
            "rank": 11,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "23h 16' 14''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 79.0,
            "times_seconds": 83774.0
        },
        {
            "index": 891,
            "rank": 12,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "23h 16' 17''",
            "gap": "+ 00h 01' 22''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 82.0,
            "times_seconds": 83777.0
        },
        {
            "index": 892,
            "rank": 13,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "23h 16' 18''",
            "gap": "+ 00h 01' 23''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 83.0,
            "times_seconds": 83778.0
        },
        {
            "index": 893,
            "rank": 14,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "23h 16' 19''",
            "gap": "+ 00h 01' 24''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 84.0,
            "times_seconds": 83779.0
        },
        {
            "index": 894,
            "rank": 15,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "23h 16' 34''",
            "gap": "+ 00h 01' 39''",
            "b": "B : 4''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 99.0,
            "times_seconds": 83794.0
        },
        {
            "index": 895,
            "rank": 16,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "23h 16' 36''",
            "gap": "+ 00h 01' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 101.0,
            "times_seconds": 83796.0
        },
        {
            "index": 896,
            "rank": 17,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "23h 16' 38''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 103.0,
            "times_seconds": 83798.0
        },
        {
            "index": 897,
            "rank": 18,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "23h 16' 41''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 106.0,
            "times_seconds": 83801.0
        },
        {
            "index": 898,
            "rank": 19,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "23h 16' 47''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 112.0,
            "times_seconds": 83807.0
        },
        {
            "index": 899,
            "rank": 20,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "23h 16' 51''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 116.0,
            "times_seconds": 83811.0
        },
        {
            "index": 900,
            "rank": 21,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "23h 16' 51''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 116.0,
            "times_seconds": 83811.0
        },
        {
            "index": 901,
            "rank": 22,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "23h 17' 17''",
            "gap": "+ 00h 02' 22''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 142.0,
            "times_seconds": 83837.0
        },
        {
            "index": 902,
            "rank": 23,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "23h 17' 18''",
            "gap": "+ 00h 02' 23''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 143.0,
            "times_seconds": 83838.0
        },
        {
            "index": 903,
            "rank": 24,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "23h 17' 26''",
            "gap": "+ 00h 02' 31''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 151.0,
            "times_seconds": 83846.0
        },
        {
            "index": 904,
            "rank": 25,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "23h 17' 50''",
            "gap": "+ 00h 02' 55''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 175.0,
            "times_seconds": 83870.0
        },
        {
            "index": 905,
            "rank": 26,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "23h 17' 52''",
            "gap": "+ 00h 02' 57''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 177.0,
            "times_seconds": 83872.0
        },
        {
            "index": 906,
            "rank": 27,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "23h 17' 58''",
            "gap": "+ 00h 03' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 183.0,
            "times_seconds": 83878.0
        },
        {
            "index": 907,
            "rank": 28,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "23h 18' 00''",
            "gap": "+ 00h 03' 05''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 185.0,
            "times_seconds": 83880.0
        },
        {
            "index": 908,
            "rank": 29,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "23h 18' 20''",
            "gap": "+ 00h 03' 25''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 205.0,
            "times_seconds": 83900.0
        },
        {
            "index": 909,
            "rank": 30,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "23h 18' 22''",
            "gap": "+ 00h 03' 27''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 207.0,
            "times_seconds": 83902.0
        },
        {
            "index": 910,
            "rank": 31,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "23h 20' 20''",
            "gap": "+ 00h 05' 25''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 325.0,
            "times_seconds": 84020.0
        },
        {
            "index": 911,
            "rank": 32,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "23h 21' 31''",
            "gap": "+ 00h 06' 36''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 6,
            "gap_seconds": 396.0,
            "times_seconds": 84091.0
        },
        {
            "index": 912,
            "rank": 33,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "23h 22' 08''",
            "gap": "+ 00h 07' 13''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 433.0,
            "times_seconds": 84128.0
        },
        {
            "index": 913,
            "rank": 34,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "23h 23' 42''",
            "gap": "+ 00h 08' 47''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 527.0,
            "times_seconds": 84222.0
        },
        {
            "index": 914,
            "rank": 35,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "23h 23' 54''",
            "gap": "+ 00h 08' 59''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 539.0,
            "times_seconds": 84234.0
        },
        {
            "index": 915,
            "rank": 36,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "23h 24' 58''",
            "gap": "+ 00h 10' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 603.0,
            "times_seconds": 84298.0
        },
        {
            "index": 916,
            "rank": 37,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "23h 26' 42''",
            "gap": "+ 00h 11' 47''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 707.0,
            "times_seconds": 84402.0
        },
        {
            "index": 917,
            "rank": 38,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "23h 26' 55''",
            "gap": "+ 00h 12' 00''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 720.0,
            "times_seconds": 84415.0
        },
        {
            "index": 918,
            "rank": 39,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "23h 27' 58''",
            "gap": "+ 00h 13' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 783.0,
            "times_seconds": 84478.0
        },
        {
            "index": 919,
            "rank": 40,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "23h 28' 15''",
            "gap": "+ 00h 13' 20''",
            "b": "B : 6''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 800.0,
            "times_seconds": 84495.0
        },
        {
            "index": 920,
            "rank": 41,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "23h 28' 57''",
            "gap": "+ 00h 14' 02''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 842.0,
            "times_seconds": 84537.0
        },
        {
            "index": 921,
            "rank": 42,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "23h 29' 26''",
            "gap": "+ 00h 14' 31''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 6,
            "gap_seconds": 871.0,
            "times_seconds": 84566.0
        },
        {
            "index": 922,
            "rank": 43,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "23h 29' 34''",
            "gap": "+ 00h 14' 39''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 879.0,
            "times_seconds": 84574.0
        },
        {
            "index": 923,
            "rank": 44,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "23h 29' 35''",
            "gap": "+ 00h 14' 40''",
            "b": "B : 4''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 880.0,
            "times_seconds": 84575.0
        },
        {
            "index": 924,
            "rank": 45,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "23h 30' 06''",
            "gap": "+ 00h 15' 11''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 911.0,
            "times_seconds": 84606.0
        },
        {
            "index": 925,
            "rank": 46,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "23h 30' 14''",
            "gap": "+ 00h 15' 19''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 919.0,
            "times_seconds": 84614.0
        },
        {
            "index": 926,
            "rank": 47,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "23h 31' 06''",
            "gap": "+ 00h 16' 11''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 971.0,
            "times_seconds": 84666.0
        },
        {
            "index": 927,
            "rank": 48,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "23h 31' 18''",
            "gap": "+ 00h 16' 23''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 983.0,
            "times_seconds": 84678.0
        },
        {
            "index": 928,
            "rank": 49,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "23h 31' 40''",
            "gap": "+ 00h 16' 45''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1005.0,
            "times_seconds": 84700.0
        },
        {
            "index": 929,
            "rank": 50,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "23h 31' 48''",
            "gap": "+ 00h 16' 53''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1013.0,
            "times_seconds": 84708.0
        },
        {
            "index": 930,
            "rank": 51,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "23h 32' 01''",
            "gap": "+ 00h 17' 06''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1026.0,
            "times_seconds": 84721.0
        },
        {
            "index": 931,
            "rank": 52,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "23h 32' 20''",
            "gap": "+ 00h 17' 25''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1045.0,
            "times_seconds": 84740.0
        },
        {
            "index": 932,
            "rank": 53,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "23h 32' 40''",
            "gap": "+ 00h 17' 45''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1065.0,
            "times_seconds": 84760.0
        },
        {
            "index": 933,
            "rank": 54,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "23h 32' 48''",
            "gap": "+ 00h 17' 53''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1073.0,
            "times_seconds": 84768.0
        },
        {
            "index": 934,
            "rank": 55,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "23h 32' 48''",
            "gap": "+ 00h 17' 53''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1073.0,
            "times_seconds": 84768.0
        },
        {
            "index": 935,
            "rank": 56,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "23h 33' 01''",
            "gap": "+ 00h 18' 06''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1086.0,
            "times_seconds": 84781.0
        },
        {
            "index": 936,
            "rank": 57,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "23h 33' 10''",
            "gap": "+ 00h 18' 15''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1095.0,
            "times_seconds": 84790.0
        },
        {
            "index": 937,
            "rank": 58,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "23h 33' 40''",
            "gap": "+ 00h 18' 45''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1125.0,
            "times_seconds": 84820.0
        },
        {
            "index": 938,
            "rank": 59,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "23h 33' 57''",
            "gap": "+ 00h 19' 02''",
            "b": "B : 6''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1142.0,
            "times_seconds": 84837.0
        },
        {
            "index": 939,
            "rank": 60,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "23h 34' 13''",
            "gap": "+ 00h 19' 18''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1158.0,
            "times_seconds": 84853.0
        },
        {
            "index": 940,
            "rank": 61,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "23h 34' 23''",
            "gap": "+ 00h 19' 28''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1168.0,
            "times_seconds": 84863.0
        },
        {
            "index": 941,
            "rank": 62,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "23h 34' 32''",
            "gap": "+ 00h 19' 37''",
            "b": "B : 4''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1177.0,
            "times_seconds": 84872.0
        },
        {
            "index": 942,
            "rank": 63,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "23h 34' 36''",
            "gap": "+ 00h 19' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1181.0,
            "times_seconds": 84876.0
        },
        {
            "index": 943,
            "rank": 64,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "23h 34' 43''",
            "gap": "+ 00h 19' 48''",
            "b": "B : 16''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1188.0,
            "times_seconds": 84883.0
        },
        {
            "index": 944,
            "rank": 65,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "23h 35' 05''",
            "gap": "+ 00h 20' 10''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1210.0,
            "times_seconds": 84905.0
        },
        {
            "index": 945,
            "rank": 66,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "23h 35' 07''",
            "gap": "+ 00h 20' 12''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1212.0,
            "times_seconds": 84907.0
        },
        {
            "index": 946,
            "rank": 67,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "23h 36' 13''",
            "gap": "+ 00h 21' 18''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1278.0,
            "times_seconds": 84973.0
        },
        {
            "index": 947,
            "rank": 68,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "23h 36' 14''",
            "gap": "+ 00h 21' 19''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1279.0,
            "times_seconds": 84974.0
        },
        {
            "index": 948,
            "rank": 69,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "23h 36' 17''",
            "gap": "+ 00h 21' 22''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1282.0,
            "times_seconds": 84977.0
        },
        {
            "index": 949,
            "rank": 70,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "23h 36' 19''",
            "gap": "+ 00h 21' 24''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1284.0,
            "times_seconds": 84979.0
        },
        {
            "index": 950,
            "rank": 71,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "23h 37' 45''",
            "gap": "+ 00h 22' 50''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1370.0,
            "times_seconds": 85065.0
        },
        {
            "index": 951,
            "rank": 72,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "23h 38' 58''",
            "gap": "+ 00h 24' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1443.0,
            "times_seconds": 85138.0
        },
        {
            "index": 952,
            "rank": 73,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "23h 39' 09''",
            "gap": "+ 00h 24' 14''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1454.0,
            "times_seconds": 85149.0
        },
        {
            "index": 953,
            "rank": 74,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "23h 40' 43''",
            "gap": "+ 00h 25' 48''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1548.0,
            "times_seconds": 85243.0
        },
        {
            "index": 954,
            "rank": 75,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "23h 41' 20''",
            "gap": "+ 00h 26' 25''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1585.0,
            "times_seconds": 85280.0
        },
        {
            "index": 955,
            "rank": 76,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "23h 41' 21''",
            "gap": "+ 00h 26' 26''",
            "b": "B : 10''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1586.0,
            "times_seconds": 85281.0
        },
        {
            "index": 956,
            "rank": 77,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "23h 42' 02''",
            "gap": "+ 00h 27' 07''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1627.0,
            "times_seconds": 85322.0
        },
        {
            "index": 957,
            "rank": 78,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "23h 42' 04''",
            "gap": "+ 00h 27' 09''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1629.0,
            "times_seconds": 85324.0
        },
        {
            "index": 958,
            "rank": 79,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "23h 42' 33''",
            "gap": "+ 00h 27' 38''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1658.0,
            "times_seconds": 85353.0
        },
        {
            "index": 959,
            "rank": 80,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "23h 42' 47''",
            "gap": "+ 00h 27' 52''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1672.0,
            "times_seconds": 85367.0
        },
        {
            "index": 960,
            "rank": 81,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "23h 43' 25''",
            "gap": "+ 00h 28' 30''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1710.0,
            "times_seconds": 85405.0
        },
        {
            "index": 961,
            "rank": 82,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "23h 44' 19''",
            "gap": "+ 00h 29' 24''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1764.0,
            "times_seconds": 85459.0
        },
        {
            "index": 962,
            "rank": 83,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "23h 44' 35''",
            "gap": "+ 00h 29' 40''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1780.0,
            "times_seconds": 85475.0
        },
        {
            "index": 963,
            "rank": 84,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "23h 44' 36''",
            "gap": "+ 00h 29' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1781.0,
            "times_seconds": 85476.0
        },
        {
            "index": 964,
            "rank": 85,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "23h 45' 46''",
            "gap": "+ 00h 30' 51''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1851.0,
            "times_seconds": 85546.0
        },
        {
            "index": 965,
            "rank": 86,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "23h 46' 06''",
            "gap": "+ 00h 31' 11''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1871.0,
            "times_seconds": 85566.0
        },
        {
            "index": 966,
            "rank": 87,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "23h 46' 10''",
            "gap": "+ 00h 31' 15''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1875.0,
            "times_seconds": 85570.0
        },
        {
            "index": 967,
            "rank": 88,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "23h 46' 58''",
            "gap": "+ 00h 32' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1923.0,
            "times_seconds": 85618.0
        },
        {
            "index": 968,
            "rank": 89,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "23h 47' 23''",
            "gap": "+ 00h 32' 28''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1948.0,
            "times_seconds": 85643.0
        },
        {
            "index": 969,
            "rank": 90,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "23h 48' 12''",
            "gap": "+ 00h 33' 17''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 1997.0,
            "times_seconds": 85692.0
        },
        {
            "index": 970,
            "rank": 91,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "23h 48' 37''",
            "gap": "+ 00h 33' 42''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2022.0,
            "times_seconds": 85717.0
        },
        {
            "index": 971,
            "rank": 92,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "23h 49' 38''",
            "gap": "+ 00h 34' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2083.0,
            "times_seconds": 85778.0
        },
        {
            "index": 972,
            "rank": 93,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "23h 50' 02''",
            "gap": "+ 00h 35' 07''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2107.0,
            "times_seconds": 85802.0
        },
        {
            "index": 973,
            "rank": 94,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "23h 51' 03''",
            "gap": "+ 00h 36' 08''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2168.0,
            "times_seconds": 85863.0
        },
        {
            "index": 974,
            "rank": 95,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "23h 51' 07''",
            "gap": "+ 00h 36' 12''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2172.0,
            "times_seconds": 85867.0
        },
        {
            "index": 975,
            "rank": 96,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "23h 51' 27''",
            "gap": "+ 00h 36' 32''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2192.0,
            "times_seconds": 85887.0
        },
        {
            "index": 976,
            "rank": 97,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "23h 51' 58''",
            "gap": "+ 00h 37' 03''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2223.0,
            "times_seconds": 85918.0
        },
        {
            "index": 977,
            "rank": 98,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "23h 52' 25''",
            "gap": "+ 00h 37' 30''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2250.0,
            "times_seconds": 85945.0
        },
        {
            "index": 978,
            "rank": 99,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "23h 53' 00''",
            "gap": "+ 00h 38' 05''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2285.0,
            "times_seconds": 85980.0
        },
        {
            "index": 979,
            "rank": 100,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "23h 53' 43''",
            "gap": "+ 00h 38' 48''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2328.0,
            "times_seconds": 86023.0
        },
        {
            "index": 980,
            "rank": 101,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "23h 53' 45''",
            "gap": "+ 00h 38' 50''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2330.0,
            "times_seconds": 86025.0
        },
        {
            "index": 981,
            "rank": 102,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "23h 54' 07''",
            "gap": "+ 00h 39' 12''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2352.0,
            "times_seconds": 86047.0
        },
        {
            "index": 982,
            "rank": 103,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "23h 54' 08''",
            "gap": "+ 00h 39' 13''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2353.0,
            "times_seconds": 86048.0
        },
        {
            "index": 983,
            "rank": 104,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "23h 54' 36''",
            "gap": "+ 00h 39' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2381.0,
            "times_seconds": 86076.0
        },
        {
            "index": 984,
            "rank": 105,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "23h 54' 43''",
            "gap": "+ 00h 39' 48''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2388.0,
            "times_seconds": 86083.0
        },
        {
            "index": 985,
            "rank": 106,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "23h 55' 04''",
            "gap": "+ 00h 40' 09''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2409.0,
            "times_seconds": 86104.0
        },
        {
            "index": 986,
            "rank": 107,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "23h 55' 14''",
            "gap": "+ 00h 40' 19''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2419.0,
            "times_seconds": 86114.0
        },
        {
            "index": 987,
            "rank": 108,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "23h 55' 38''",
            "gap": "+ 00h 40' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2443.0,
            "times_seconds": 86138.0
        },
        {
            "index": 988,
            "rank": 109,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "23h 55' 59''",
            "gap": "+ 00h 41' 04''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2464.0,
            "times_seconds": 86159.0
        },
        {
            "index": 989,
            "rank": 110,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "23h 56' 24''",
            "gap": "+ 00h 41' 29''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2489.0,
            "times_seconds": 86184.0
        },
        {
            "index": 990,
            "rank": 111,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "23h 56' 31''",
            "gap": "+ 00h 41' 36''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2496.0,
            "times_seconds": 86191.0
        },
        {
            "index": 991,
            "rank": 112,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "23h 57' 01''",
            "gap": "+ 00h 42' 06''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2526.0,
            "times_seconds": 86221.0
        },
        {
            "index": 992,
            "rank": 113,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "23h 57' 03''",
            "gap": "+ 00h 42' 08''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2528.0,
            "times_seconds": 86223.0
        },
        {
            "index": 993,
            "rank": 114,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "23h 57' 07''",
            "gap": "+ 00h 42' 12''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2532.0,
            "times_seconds": 86227.0
        },
        {
            "index": 994,
            "rank": 115,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "23h 58' 02''",
            "gap": "+ 00h 43' 07''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2587.0,
            "times_seconds": 86282.0
        },
        {
            "index": 995,
            "rank": 116,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "23h 58' 14''",
            "gap": "+ 00h 43' 19''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2599.0,
            "times_seconds": 86294.0
        },
        {
            "index": 996,
            "rank": 117,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "23h 59' 20''",
            "gap": "+ 00h 44' 25''",
            "b": "B : 10''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2665.0,
            "times_seconds": 86360.0
        },
        {
            "index": 997,
            "rank": 118,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "24h 00' 12''",
            "gap": "+ 00h 45' 17''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2717.0,
            "times_seconds": 86412.0
        },
        {
            "index": 998,
            "rank": 119,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "24h 00' 25''",
            "gap": "+ 00h 45' 30''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2730.0,
            "times_seconds": 86425.0
        },
        {
            "index": 999,
            "rank": 120,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "24h 00' 35''",
            "gap": "+ 00h 45' 40''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2740.0,
            "times_seconds": 86435.0
        },
        {
            "index": 1000,
            "rank": 121,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "24h 00' 41''",
            "gap": "+ 00h 45' 46''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2746.0,
            "times_seconds": 86441.0
        },
        {
            "index": 1001,
            "rank": 122,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "24h 00' 45''",
            "gap": "+ 00h 45' 50''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2750.0,
            "times_seconds": 86445.0
        },
        {
            "index": 1002,
            "rank": 123,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "24h 02' 36''",
            "gap": "+ 00h 47' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2861.0,
            "times_seconds": 86556.0
        },
        {
            "index": 1003,
            "rank": 124,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "24h 02' 57''",
            "gap": "+ 00h 48' 02''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2882.0,
            "times_seconds": 86577.0
        },
        {
            "index": 1004,
            "rank": 125,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "24h 03' 25''",
            "gap": "+ 00h 48' 30''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2910.0,
            "times_seconds": 86605.0
        },
        {
            "index": 1005,
            "rank": 126,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "24h 03' 42''",
            "gap": "+ 00h 48' 47''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2927.0,
            "times_seconds": 86622.0
        },
        {
            "index": 1006,
            "rank": 127,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "24h 04' 09''",
            "gap": "+ 00h 49' 14''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2954.0,
            "times_seconds": 86649.0
        },
        {
            "index": 1007,
            "rank": 128,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "24h 04' 12''",
            "gap": "+ 00h 49' 17''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2957.0,
            "times_seconds": 86652.0
        },
        {
            "index": 1008,
            "rank": 129,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "24h 04' 16''",
            "gap": "+ 00h 49' 21''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2961.0,
            "times_seconds": 86656.0
        },
        {
            "index": 1009,
            "rank": 130,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "24h 04' 31''",
            "gap": "+ 00h 49' 36''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2976.0,
            "times_seconds": 86671.0
        },
        {
            "index": 1010,
            "rank": 131,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "24h 04' 50''",
            "gap": "+ 00h 49' 55''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2995.0,
            "times_seconds": 86690.0
        },
        {
            "index": 1011,
            "rank": 132,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "24h 04' 53''",
            "gap": "+ 00h 49' 58''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 2998.0,
            "times_seconds": 86693.0
        },
        {
            "index": 1012,
            "rank": 133,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "24h 05' 01''",
            "gap": "+ 00h 50' 06''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3006.0,
            "times_seconds": 86701.0
        },
        {
            "index": 1013,
            "rank": 134,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "24h 05' 09''",
            "gap": "+ 00h 50' 14''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3014.0,
            "times_seconds": 86709.0
        },
        {
            "index": 1014,
            "rank": 135,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "24h 06' 00''",
            "gap": "+ 00h 51' 05''",
            "b": "B : 10''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3065.0,
            "times_seconds": 86760.0
        },
        {
            "index": 1015,
            "rank": 136,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "24h 06' 11''",
            "gap": "+ 00h 51' 16''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3076.0,
            "times_seconds": 86771.0
        },
        {
            "index": 1016,
            "rank": 137,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "24h 06' 34''",
            "gap": "+ 00h 51' 39''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3099.0,
            "times_seconds": 86794.0
        },
        {
            "index": 1017,
            "rank": 138,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "24h 06' 38''",
            "gap": "+ 00h 51' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3103.0,
            "times_seconds": 86798.0
        },
        {
            "index": 1018,
            "rank": 139,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "24h 06' 38''",
            "gap": "+ 00h 51' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3103.0,
            "times_seconds": 86798.0
        },
        {
            "index": 1019,
            "rank": 140,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "24h 06' 44''",
            "gap": "+ 00h 51' 49''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3109.0,
            "times_seconds": 86804.0
        },
        {
            "index": 1020,
            "rank": 141,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "24h 06' 52''",
            "gap": "+ 00h 51' 57''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3117.0,
            "times_seconds": 86812.0
        },
        {
            "index": 1021,
            "rank": 142,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "24h 07' 11''",
            "gap": "+ 00h 52' 16''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3136.0,
            "times_seconds": 86831.0
        },
        {
            "index": 1022,
            "rank": 143,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "24h 07' 23''",
            "gap": "+ 00h 52' 28''",
            "b": "B : 8''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3148.0,
            "times_seconds": 86843.0
        },
        {
            "index": 1023,
            "rank": 144,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "24h 07' 36''",
            "gap": "+ 00h 52' 41''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3161.0,
            "times_seconds": 86856.0
        },
        {
            "index": 1024,
            "rank": 145,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "24h 08' 15''",
            "gap": "+ 00h 53' 20''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3200.0,
            "times_seconds": 86895.0
        },
        {
            "index": 1025,
            "rank": 146,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "24h 08' 33''",
            "gap": "+ 00h 53' 38''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3218.0,
            "times_seconds": 86913.0
        },
        {
            "index": 1026,
            "rank": 147,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "24h 08' 43''",
            "gap": "+ 00h 53' 48''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3228.0,
            "times_seconds": 86923.0
        },
        {
            "index": 1027,
            "rank": 148,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "24h 08' 49''",
            "gap": "+ 00h 53' 54''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3234.0,
            "times_seconds": 86929.0
        },
        {
            "index": 1028,
            "rank": 149,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "24h 09' 28''",
            "gap": "+ 00h 54' 33''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3273.0,
            "times_seconds": 86968.0
        },
        {
            "index": 1029,
            "rank": 150,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "24h 09' 32''",
            "gap": "+ 00h 54' 37''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3277.0,
            "times_seconds": 86972.0
        },
        {
            "index": 1030,
            "rank": 151,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "24h 09' 37''",
            "gap": "+ 00h 54' 42''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3282.0,
            "times_seconds": 86977.0
        },
        {
            "index": 1031,
            "rank": 152,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "24h 09' 39''",
            "gap": "+ 00h 54' 44''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3284.0,
            "times_seconds": 86979.0
        },
        {
            "index": 1032,
            "rank": 153,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "24h 09' 40''",
            "gap": "+ 00h 54' 45''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3285.0,
            "times_seconds": 86980.0
        },
        {
            "index": 1033,
            "rank": 154,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "24h 10' 17''",
            "gap": "+ 00h 55' 22''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3322.0,
            "times_seconds": 87017.0
        },
        {
            "index": 1034,
            "rank": 155,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "24h 10' 21''",
            "gap": "+ 00h 55' 26''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3326.0,
            "times_seconds": 87021.0
        },
        {
            "index": 1035,
            "rank": 156,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "24h 10' 22''",
            "gap": "+ 00h 55' 27''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3327.0,
            "times_seconds": 87022.0
        },
        {
            "index": 1036,
            "rank": 157,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "24h 11' 00''",
            "gap": "+ 00h 56' 05''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3365.0,
            "times_seconds": 87060.0
        },
        {
            "index": 1037,
            "rank": 158,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "24h 11' 01''",
            "gap": "+ 00h 56' 06''",
            "b": "B : 6''",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3366.0,
            "times_seconds": 87061.0
        },
        {
            "index": 1038,
            "rank": 159,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "24h 11' 21''",
            "gap": "+ 00h 56' 26''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3386.0,
            "times_seconds": 87081.0
        },
        {
            "index": 1039,
            "rank": 160,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "24h 11' 27''",
            "gap": "+ 00h 56' 32''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3392.0,
            "times_seconds": 87087.0
        },
        {
            "index": 1040,
            "rank": 161,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "24h 12' 03''",
            "gap": "+ 00h 57' 08''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3428.0,
            "times_seconds": 87123.0
        },
        {
            "index": 1041,
            "rank": 162,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "24h 12' 08''",
            "gap": "+ 00h 57' 13''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3433.0,
            "times_seconds": 87128.0
        },
        {
            "index": 1042,
            "rank": 163,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "24h 12' 12''",
            "gap": "+ 00h 57' 17''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3437.0,
            "times_seconds": 87132.0
        },
        {
            "index": 1043,
            "rank": 164,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "24h 12' 20''",
            "gap": "+ 00h 57' 25''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3445.0,
            "times_seconds": 87140.0
        },
        {
            "index": 1044,
            "rank": 165,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "24h 12' 22''",
            "gap": "+ 00h 57' 27''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3447.0,
            "times_seconds": 87142.0
        },
        {
            "index": 1045,
            "rank": 166,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "24h 12' 38''",
            "gap": "+ 00h 57' 43''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3463.0,
            "times_seconds": 87158.0
        },
        {
            "index": 1046,
            "rank": 167,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "24h 13' 33''",
            "gap": "+ 00h 58' 38''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3518.0,
            "times_seconds": 87213.0
        },
        {
            "index": 1047,
            "rank": 168,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "24h 13' 41''",
            "gap": "+ 00h 58' 46''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3526.0,
            "times_seconds": 87221.0
        },
        {
            "index": 1048,
            "rank": 169,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "24h 13' 44''",
            "gap": "+ 00h 58' 49''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3529.0,
            "times_seconds": 87224.0
        },
        {
            "index": 1049,
            "rank": 170,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "24h 13' 46''",
            "gap": "+ 00h 58' 51''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3531.0,
            "times_seconds": 87226.0
        },
        {
            "index": 1050,
            "rank": 171,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "24h 14' 31''",
            "gap": "+ 00h 59' 36''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3576.0,
            "times_seconds": 87271.0
        },
        {
            "index": 1051,
            "rank": 172,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "24h 15' 04''",
            "gap": "+ 01h 00' 09''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3609.0,
            "times_seconds": 87304.0
        },
        {
            "index": 1052,
            "rank": 173,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "24h 17' 04''",
            "gap": "+ 01h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3729.0,
            "times_seconds": 87424.0
        },
        {
            "index": 1053,
            "rank": 174,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "24h 19' 31''",
            "gap": "+ 01h 04' 36''",
            "b": "-",
            "p": "-",
            "stage": 6,
            "gap_seconds": 3876.0,
            "times_seconds": 87571.0
        },
        {
            "index": 1054,
            "rank": 1,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "29h 17' 39''",
            "gap": "-",
            "b": "B : 14''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 0.0,
            "times_seconds": 105459.0
        },
        {
            "index": 1055,
            "rank": 2,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "29h 17' 45''",
            "gap": "+ 00h 00' 06''",
            "b": "B : 15''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 6.0,
            "times_seconds": 105465.0
        },
        {
            "index": 1056,
            "rank": 3,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "29h 18' 11''",
            "gap": "+ 00h 00' 32''",
            "b": "B : 15''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 32.0,
            "times_seconds": 105491.0
        },
        {
            "index": 1057,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "29h 18' 26''",
            "gap": "+ 00h 00' 47''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 47.0,
            "times_seconds": 105506.0
        },
        {
            "index": 1058,
            "rank": 5,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "29h 18' 28''",
            "gap": "+ 00h 00' 49''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 49.0,
            "times_seconds": 105508.0
        },
        {
            "index": 1059,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "29h 18' 32''",
            "gap": "+ 00h 00' 53''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 53.0,
            "times_seconds": 105512.0
        },
        {
            "index": 1060,
            "rank": 7,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "29h 18' 37''",
            "gap": "+ 00h 00' 58''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 58.0,
            "times_seconds": 105517.0
        },
        {
            "index": 1061,
            "rank": 8,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "29h 18' 43''",
            "gap": "+ 00h 01' 04''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 64.0,
            "times_seconds": 105523.0
        },
        {
            "index": 1062,
            "rank": 9,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "29h 18' 52''",
            "gap": "+ 00h 01' 13''",
            "b": "B : 2''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 73.0,
            "times_seconds": 105532.0
        },
        {
            "index": 1063,
            "rank": 10,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "29h 18' 54''",
            "gap": "+ 00h 01' 15''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 75.0,
            "times_seconds": 105534.0
        },
        {
            "index": 1064,
            "rank": 11,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "29h 18' 58''",
            "gap": "+ 00h 01' 19''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 79.0,
            "times_seconds": 105538.0
        },
        {
            "index": 1065,
            "rank": 12,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "29h 19' 01''",
            "gap": "+ 00h 01' 22''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 82.0,
            "times_seconds": 105541.0
        },
        {
            "index": 1066,
            "rank": 13,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "29h 19' 02''",
            "gap": "+ 00h 01' 23''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 83.0,
            "times_seconds": 105542.0
        },
        {
            "index": 1067,
            "rank": 14,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "29h 19' 03''",
            "gap": "+ 00h 01' 24''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 84.0,
            "times_seconds": 105543.0
        },
        {
            "index": 1068,
            "rank": 15,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "29h 19' 18''",
            "gap": "+ 00h 01' 39''",
            "b": "B : 4''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 99.0,
            "times_seconds": 105558.0
        },
        {
            "index": 1069,
            "rank": 16,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "29h 19' 20''",
            "gap": "+ 00h 01' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 101.0,
            "times_seconds": 105560.0
        },
        {
            "index": 1070,
            "rank": 17,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "29h 19' 22''",
            "gap": "+ 00h 01' 43''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 103.0,
            "times_seconds": 105562.0
        },
        {
            "index": 1071,
            "rank": 18,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "29h 19' 25''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 106.0,
            "times_seconds": 105565.0
        },
        {
            "index": 1072,
            "rank": 19,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "29h 19' 31''",
            "gap": "+ 00h 01' 52''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 112.0,
            "times_seconds": 105571.0
        },
        {
            "index": 1073,
            "rank": 20,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "29h 19' 35''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 116.0,
            "times_seconds": 105575.0
        },
        {
            "index": 1074,
            "rank": 21,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "29h 19' 35''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 116.0,
            "times_seconds": 105575.0
        },
        {
            "index": 1075,
            "rank": 22,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "29h 20' 01''",
            "gap": "+ 00h 02' 22''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 142.0,
            "times_seconds": 105601.0
        },
        {
            "index": 1076,
            "rank": 23,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "29h 20' 02''",
            "gap": "+ 00h 02' 23''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 143.0,
            "times_seconds": 105602.0
        },
        {
            "index": 1077,
            "rank": 24,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "29h 20' 10''",
            "gap": "+ 00h 02' 31''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 151.0,
            "times_seconds": 105610.0
        },
        {
            "index": 1078,
            "rank": 25,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "29h 20' 34''",
            "gap": "+ 00h 02' 55''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 175.0,
            "times_seconds": 105634.0
        },
        {
            "index": 1079,
            "rank": 26,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "29h 20' 36''",
            "gap": "+ 00h 02' 57''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 177.0,
            "times_seconds": 105636.0
        },
        {
            "index": 1080,
            "rank": 27,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "29h 20' 42''",
            "gap": "+ 00h 03' 03''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 183.0,
            "times_seconds": 105642.0
        },
        {
            "index": 1081,
            "rank": 28,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "29h 20' 44''",
            "gap": "+ 00h 03' 05''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 185.0,
            "times_seconds": 105644.0
        },
        {
            "index": 1082,
            "rank": 29,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "29h 21' 04''",
            "gap": "+ 00h 03' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 205.0,
            "times_seconds": 105664.0
        },
        {
            "index": 1083,
            "rank": 30,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "29h 21' 06''",
            "gap": "+ 00h 03' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 207.0,
            "times_seconds": 105666.0
        },
        {
            "index": 1084,
            "rank": 31,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "29h 23' 04''",
            "gap": "+ 00h 05' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 325.0,
            "times_seconds": 105784.0
        },
        {
            "index": 1085,
            "rank": 32,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "29h 26' 26''",
            "gap": "+ 00h 08' 47''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 527.0,
            "times_seconds": 105986.0
        },
        {
            "index": 1086,
            "rank": 33,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "29h 26' 38''",
            "gap": "+ 00h 08' 59''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 539.0,
            "times_seconds": 105998.0
        },
        {
            "index": 1087,
            "rank": 34,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "29h 27' 28''",
            "gap": "+ 00h 09' 49''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 7,
            "gap_seconds": 589.0,
            "times_seconds": 106048.0
        },
        {
            "index": 1088,
            "rank": 35,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "29h 27' 42''",
            "gap": "+ 00h 10' 03''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 603.0,
            "times_seconds": 106062.0
        },
        {
            "index": 1089,
            "rank": 36,
            "rider": "Tejay Van Garderen",
            "rider no.": 97,
            "team": "Ef Education First",
            "times": "29h 28' 05''",
            "gap": "+ 00h 10' 26''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 626.0,
            "times_seconds": 106085.0
        },
        {
            "index": 1090,
            "rank": 37,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "29h 30' 08''",
            "gap": "+ 00h 12' 29''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 749.0,
            "times_seconds": 106208.0
        },
        {
            "index": 1091,
            "rank": 38,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "29h 31' 41''",
            "gap": "+ 00h 14' 02''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 842.0,
            "times_seconds": 106301.0
        },
        {
            "index": 1092,
            "rank": 39,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "29h 32' 10''",
            "gap": "+ 00h 14' 31''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 7,
            "gap_seconds": 871.0,
            "times_seconds": 106330.0
        },
        {
            "index": 1093,
            "rank": 40,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "29h 32' 19''",
            "gap": "+ 00h 14' 40''",
            "b": "B : 4''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 880.0,
            "times_seconds": 106339.0
        },
        {
            "index": 1094,
            "rank": 41,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "29h 32' 28''",
            "gap": "+ 00h 14' 49''",
            "b": "B : 6''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 889.0,
            "times_seconds": 106348.0
        },
        {
            "index": 1095,
            "rank": 42,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "29h 32' 39''",
            "gap": "+ 00h 15' 00''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 900.0,
            "times_seconds": 106359.0
        },
        {
            "index": 1096,
            "rank": 43,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "29h 32' 58''",
            "gap": "+ 00h 15' 19''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 919.0,
            "times_seconds": 106378.0
        },
        {
            "index": 1097,
            "rank": 44,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "29h 33' 00''",
            "gap": "+ 00h 15' 21''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 921.0,
            "times_seconds": 106380.0
        },
        {
            "index": 1098,
            "rank": 45,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "29h 33' 55''",
            "gap": "+ 00h 16' 16''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 976.0,
            "times_seconds": 106435.0
        },
        {
            "index": 1099,
            "rank": 46,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "29h 34' 19''",
            "gap": "+ 00h 16' 40''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1000.0,
            "times_seconds": 106459.0
        },
        {
            "index": 1100,
            "rank": 47,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "29h 34' 32''",
            "gap": "+ 00h 16' 53''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1013.0,
            "times_seconds": 106472.0
        },
        {
            "index": 1101,
            "rank": 48,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "29h 35' 04''",
            "gap": "+ 00h 17' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1045.0,
            "times_seconds": 106504.0
        },
        {
            "index": 1102,
            "rank": 49,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "29h 35' 32''",
            "gap": "+ 00h 17' 53''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1073.0,
            "times_seconds": 106532.0
        },
        {
            "index": 1103,
            "rank": 50,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "29h 35' 51''",
            "gap": "+ 00h 18' 12''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1092.0,
            "times_seconds": 106551.0
        },
        {
            "index": 1104,
            "rank": 51,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "29h 35' 57''",
            "gap": "+ 00h 18' 18''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1098.0,
            "times_seconds": 106557.0
        },
        {
            "index": 1105,
            "rank": 52,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "29h 36' 24''",
            "gap": "+ 00h 18' 45''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1125.0,
            "times_seconds": 106584.0
        },
        {
            "index": 1106,
            "rank": 53,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "29h 36' 29''",
            "gap": "+ 00h 18' 50''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1130.0,
            "times_seconds": 106589.0
        },
        {
            "index": 1107,
            "rank": 54,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "29h 36' 41''",
            "gap": "+ 00h 19' 02''",
            "b": "B : 6''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1142.0,
            "times_seconds": 106601.0
        },
        {
            "index": 1108,
            "rank": 55,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "29h 36' 57''",
            "gap": "+ 00h 19' 18''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1158.0,
            "times_seconds": 106617.0
        },
        {
            "index": 1109,
            "rank": 56,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "29h 37' 03''",
            "gap": "+ 00h 19' 24''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1164.0,
            "times_seconds": 106623.0
        },
        {
            "index": 1110,
            "rank": 57,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "29h 37' 15''",
            "gap": "+ 00h 19' 36''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1176.0,
            "times_seconds": 106635.0
        },
        {
            "index": 1111,
            "rank": 58,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "29h 37' 16''",
            "gap": "+ 00h 19' 37''",
            "b": "B : 4''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1177.0,
            "times_seconds": 106636.0
        },
        {
            "index": 1112,
            "rank": 59,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "29h 37' 20''",
            "gap": "+ 00h 19' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1181.0,
            "times_seconds": 106640.0
        },
        {
            "index": 1113,
            "rank": 60,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "29h 37' 23''",
            "gap": "+ 00h 19' 44''",
            "b": "B : 20''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1184.0,
            "times_seconds": 106643.0
        },
        {
            "index": 1114,
            "rank": 61,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "29h 38' 37''",
            "gap": "+ 00h 20' 58''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1258.0,
            "times_seconds": 106717.0
        },
        {
            "index": 1115,
            "rank": 62,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "29h 39' 07''",
            "gap": "+ 00h 21' 28''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1288.0,
            "times_seconds": 106747.0
        },
        {
            "index": 1116,
            "rank": 63,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "29h 39' 10''",
            "gap": "+ 00h 21' 31''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1291.0,
            "times_seconds": 106750.0
        },
        {
            "index": 1117,
            "rank": 64,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "29h 40' 20''",
            "gap": "+ 00h 22' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1361.0,
            "times_seconds": 106820.0
        },
        {
            "index": 1118,
            "rank": 65,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "29h 40' 29''",
            "gap": "+ 00h 22' 50''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1370.0,
            "times_seconds": 106829.0
        },
        {
            "index": 1119,
            "rank": 66,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "29h 41' 02''",
            "gap": "+ 00h 23' 23''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1403.0,
            "times_seconds": 106862.0
        },
        {
            "index": 1120,
            "rank": 67,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "29h 41' 04''",
            "gap": "+ 00h 23' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1405.0,
            "times_seconds": 106864.0
        },
        {
            "index": 1121,
            "rank": 68,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "29h 41' 30''",
            "gap": "+ 00h 23' 51''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1431.0,
            "times_seconds": 106890.0
        },
        {
            "index": 1122,
            "rank": 69,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "29h 42' 11''",
            "gap": "+ 00h 24' 32''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1472.0,
            "times_seconds": 106931.0
        },
        {
            "index": 1123,
            "rank": 70,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "29h 42' 14''",
            "gap": "+ 00h 24' 35''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1475.0,
            "times_seconds": 106934.0
        },
        {
            "index": 1124,
            "rank": 71,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "29h 42' 16''",
            "gap": "+ 00h 24' 37''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1477.0,
            "times_seconds": 106936.0
        },
        {
            "index": 1125,
            "rank": 72,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "29h 43' 12''",
            "gap": "+ 00h 25' 33''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1533.0,
            "times_seconds": 106992.0
        },
        {
            "index": 1126,
            "rank": 73,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "29h 43' 27''",
            "gap": "+ 00h 25' 48''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1548.0,
            "times_seconds": 107007.0
        },
        {
            "index": 1127,
            "rank": 74,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "29h 44' 55''",
            "gap": "+ 00h 27' 16''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1636.0,
            "times_seconds": 107095.0
        },
        {
            "index": 1128,
            "rank": 75,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "29h 46' 09''",
            "gap": "+ 00h 28' 30''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1710.0,
            "times_seconds": 107169.0
        },
        {
            "index": 1129,
            "rank": 76,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "29h 46' 18''",
            "gap": "+ 00h 28' 39''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1719.0,
            "times_seconds": 107178.0
        },
        {
            "index": 1130,
            "rank": 77,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "29h 47' 17''",
            "gap": "+ 00h 29' 38''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1778.0,
            "times_seconds": 107237.0
        },
        {
            "index": 1131,
            "rank": 78,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "29h 47' 18''",
            "gap": "+ 00h 29' 39''",
            "b": "B : 10''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1779.0,
            "times_seconds": 107238.0
        },
        {
            "index": 1132,
            "rank": 79,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "29h 47' 59''",
            "gap": "+ 00h 30' 20''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1820.0,
            "times_seconds": 107279.0
        },
        {
            "index": 1133,
            "rank": 80,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "29h 48' 01''",
            "gap": "+ 00h 30' 22''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1822.0,
            "times_seconds": 107281.0
        },
        {
            "index": 1134,
            "rank": 81,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "29h 48' 30''",
            "gap": "+ 00h 30' 51''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1851.0,
            "times_seconds": 107310.0
        },
        {
            "index": 1135,
            "rank": 82,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "29h 48' 46''",
            "gap": "+ 00h 31' 07''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1867.0,
            "times_seconds": 107326.0
        },
        {
            "index": 1136,
            "rank": 83,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "29h 48' 54''",
            "gap": "+ 00h 31' 15''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1875.0,
            "times_seconds": 107334.0
        },
        {
            "index": 1137,
            "rank": 84,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "29h 49' 42''",
            "gap": "+ 00h 32' 03''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1923.0,
            "times_seconds": 107382.0
        },
        {
            "index": 1138,
            "rank": 85,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "29h 50' 07''",
            "gap": "+ 00h 32' 28''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1948.0,
            "times_seconds": 107407.0
        },
        {
            "index": 1139,
            "rank": 86,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "29h 50' 16''",
            "gap": "+ 00h 32' 37''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1957.0,
            "times_seconds": 107416.0
        },
        {
            "index": 1140,
            "rank": 87,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "29h 50' 33''",
            "gap": "+ 00h 32' 54''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 1974.0,
            "times_seconds": 107433.0
        },
        {
            "index": 1141,
            "rank": 88,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "29h 51' 21''",
            "gap": "+ 00h 33' 42''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2022.0,
            "times_seconds": 107481.0
        },
        {
            "index": 1142,
            "rank": 89,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "29h 51' 43''",
            "gap": "+ 00h 34' 04''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2044.0,
            "times_seconds": 107503.0
        },
        {
            "index": 1143,
            "rank": 90,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "29h 53' 15''",
            "gap": "+ 00h 35' 36''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2136.0,
            "times_seconds": 107595.0
        },
        {
            "index": 1144,
            "rank": 91,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "29h 53' 30''",
            "gap": "+ 00h 35' 51''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2151.0,
            "times_seconds": 107610.0
        },
        {
            "index": 1145,
            "rank": 92,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "29h 54' 09''",
            "gap": "+ 00h 36' 30''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2190.0,
            "times_seconds": 107649.0
        },
        {
            "index": 1146,
            "rank": 93,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "29h 54' 42''",
            "gap": "+ 00h 37' 03''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2223.0,
            "times_seconds": 107682.0
        },
        {
            "index": 1147,
            "rank": 94,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "29h 55' 34''",
            "gap": "+ 00h 37' 55''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2275.0,
            "times_seconds": 107734.0
        },
        {
            "index": 1148,
            "rank": 95,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "29h 55' 43''",
            "gap": "+ 00h 38' 04''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2284.0,
            "times_seconds": 107743.0
        },
        {
            "index": 1149,
            "rank": 96,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "29h 55' 44''",
            "gap": "+ 00h 38' 05''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2285.0,
            "times_seconds": 107744.0
        },
        {
            "index": 1150,
            "rank": 97,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "29h 56' 04''",
            "gap": "+ 00h 38' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2305.0,
            "times_seconds": 107764.0
        },
        {
            "index": 1151,
            "rank": 98,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "29h 56' 51''",
            "gap": "+ 00h 39' 12''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2352.0,
            "times_seconds": 107811.0
        },
        {
            "index": 1152,
            "rank": 99,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "29h 57' 04''",
            "gap": "+ 00h 39' 25''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2365.0,
            "times_seconds": 107824.0
        },
        {
            "index": 1153,
            "rank": 100,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "29h 57' 20''",
            "gap": "+ 00h 39' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2381.0,
            "times_seconds": 107840.0
        },
        {
            "index": 1154,
            "rank": 101,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "29h 57' 24''",
            "gap": "+ 00h 39' 45''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2385.0,
            "times_seconds": 107844.0
        },
        {
            "index": 1155,
            "rank": 102,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "29h 57' 25''",
            "gap": "+ 00h 39' 46''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2386.0,
            "times_seconds": 107845.0
        },
        {
            "index": 1156,
            "rank": 103,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "29h 57' 51''",
            "gap": "+ 00h 40' 12''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2412.0,
            "times_seconds": 107871.0
        },
        {
            "index": 1157,
            "rank": 104,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "29h 59' 02''",
            "gap": "+ 00h 41' 23''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2483.0,
            "times_seconds": 107942.0
        },
        {
            "index": 1158,
            "rank": 105,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "29h 59' 08''",
            "gap": "+ 00h 41' 29''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2489.0,
            "times_seconds": 107948.0
        },
        {
            "index": 1159,
            "rank": 106,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "29h 59' 40''",
            "gap": "+ 00h 42' 01''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2521.0,
            "times_seconds": 107980.0
        },
        {
            "index": 1160,
            "rank": 107,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "29h 59' 45''",
            "gap": "+ 00h 42' 06''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2526.0,
            "times_seconds": 107985.0
        },
        {
            "index": 1161,
            "rank": 108,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "29h 59' 47''",
            "gap": "+ 00h 42' 08''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2528.0,
            "times_seconds": 107987.0
        },
        {
            "index": 1162,
            "rank": 109,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "29h 59' 49''",
            "gap": "+ 00h 42' 10''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2530.0,
            "times_seconds": 107989.0
        },
        {
            "index": 1163,
            "rank": 110,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "30h 00' 20''",
            "gap": "+ 00h 42' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2561.0,
            "times_seconds": 108020.0
        },
        {
            "index": 1164,
            "rank": 111,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "30h 00' 35''",
            "gap": "+ 00h 42' 56''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2576.0,
            "times_seconds": 108035.0
        },
        {
            "index": 1165,
            "rank": 112,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "30h 01' 01''",
            "gap": "+ 00h 43' 22''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2602.0,
            "times_seconds": 108061.0
        },
        {
            "index": 1166,
            "rank": 113,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "30h 01' 56''",
            "gap": "+ 00h 44' 17''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2657.0,
            "times_seconds": 108116.0
        },
        {
            "index": 1167,
            "rank": 114,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "30h 02' 04''",
            "gap": "+ 00h 44' 25''",
            "b": "B : 10''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2665.0,
            "times_seconds": 108124.0
        },
        {
            "index": 1168,
            "rank": 115,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "30h 02' 25''",
            "gap": "+ 00h 44' 46''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2686.0,
            "times_seconds": 108145.0
        },
        {
            "index": 1169,
            "rank": 116,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "30h 02' 56''",
            "gap": "+ 00h 45' 17''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2717.0,
            "times_seconds": 108176.0
        },
        {
            "index": 1170,
            "rank": 117,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "30h 03' 09''",
            "gap": "+ 00h 45' 30''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2730.0,
            "times_seconds": 108189.0
        },
        {
            "index": 1171,
            "rank": 118,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "30h 03' 25''",
            "gap": "+ 00h 45' 46''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2746.0,
            "times_seconds": 108205.0
        },
        {
            "index": 1172,
            "rank": 119,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "30h 03' 28''",
            "gap": "+ 00h 45' 49''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2749.0,
            "times_seconds": 108208.0
        },
        {
            "index": 1173,
            "rank": 120,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "30h 03' 44''",
            "gap": "+ 00h 46' 05''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2765.0,
            "times_seconds": 108224.0
        },
        {
            "index": 1174,
            "rank": 121,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "30h 03' 59''",
            "gap": "+ 00h 46' 20''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2780.0,
            "times_seconds": 108239.0
        },
        {
            "index": 1175,
            "rank": 122,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "30h 05' 45''",
            "gap": "+ 00h 48' 06''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2886.0,
            "times_seconds": 108345.0
        },
        {
            "index": 1176,
            "rank": 123,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "30h 06' 26''",
            "gap": "+ 00h 48' 47''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2927.0,
            "times_seconds": 108386.0
        },
        {
            "index": 1177,
            "rank": 124,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "30h 06' 42''",
            "gap": "+ 00h 49' 03''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2943.0,
            "times_seconds": 108402.0
        },
        {
            "index": 1178,
            "rank": 125,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "30h 06' 44''",
            "gap": "+ 00h 49' 05''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2945.0,
            "times_seconds": 108404.0
        },
        {
            "index": 1179,
            "rank": 126,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "30h 07' 00''",
            "gap": "+ 00h 49' 21''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 2961.0,
            "times_seconds": 108420.0
        },
        {
            "index": 1180,
            "rank": 127,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "30h 07' 45''",
            "gap": "+ 00h 50' 06''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3006.0,
            "times_seconds": 108465.0
        },
        {
            "index": 1181,
            "rank": 128,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "30h 07' 59''",
            "gap": "+ 00h 50' 20''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3020.0,
            "times_seconds": 108479.0
        },
        {
            "index": 1182,
            "rank": 129,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "30h 08' 03''",
            "gap": "+ 00h 50' 24''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3024.0,
            "times_seconds": 108483.0
        },
        {
            "index": 1183,
            "rank": 130,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "30h 08' 28''",
            "gap": "+ 00h 50' 49''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3049.0,
            "times_seconds": 108508.0
        },
        {
            "index": 1184,
            "rank": 131,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "30h 08' 44''",
            "gap": "+ 00h 51' 05''",
            "b": "B : 10''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3065.0,
            "times_seconds": 108524.0
        },
        {
            "index": 1185,
            "rank": 132,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "30h 08' 54''",
            "gap": "+ 00h 51' 15''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3075.0,
            "times_seconds": 108534.0
        },
        {
            "index": 1186,
            "rank": 133,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "30h 09' 22''",
            "gap": "+ 00h 51' 43''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3103.0,
            "times_seconds": 108562.0
        },
        {
            "index": 1187,
            "rank": 134,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "30h 09' 28''",
            "gap": "+ 00h 51' 49''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3109.0,
            "times_seconds": 108568.0
        },
        {
            "index": 1188,
            "rank": 135,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "30h 10' 01''",
            "gap": "+ 00h 52' 22''",
            "b": "B : 14''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3142.0,
            "times_seconds": 108601.0
        },
        {
            "index": 1189,
            "rank": 136,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "30h 10' 06''",
            "gap": "+ 00h 52' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3147.0,
            "times_seconds": 108606.0
        },
        {
            "index": 1190,
            "rank": 137,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "30h 10' 06''",
            "gap": "+ 00h 52' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3147.0,
            "times_seconds": 108606.0
        },
        {
            "index": 1191,
            "rank": 138,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "30h 10' 10''",
            "gap": "+ 00h 52' 31''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3151.0,
            "times_seconds": 108610.0
        },
        {
            "index": 1192,
            "rank": 139,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "30h 10' 20''",
            "gap": "+ 00h 52' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3161.0,
            "times_seconds": 108620.0
        },
        {
            "index": 1193,
            "rank": 140,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "30h 11' 06''",
            "gap": "+ 00h 53' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3207.0,
            "times_seconds": 108666.0
        },
        {
            "index": 1194,
            "rank": 141,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "30h 11' 09''",
            "gap": "+ 00h 53' 30''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3210.0,
            "times_seconds": 108669.0
        },
        {
            "index": 1195,
            "rank": 142,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "30h 11' 33''",
            "gap": "+ 00h 53' 54''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3234.0,
            "times_seconds": 108693.0
        },
        {
            "index": 1196,
            "rank": 143,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "30h 12' 08''",
            "gap": "+ 00h 54' 29''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3269.0,
            "times_seconds": 108728.0
        },
        {
            "index": 1197,
            "rank": 144,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "30h 12' 14''",
            "gap": "+ 00h 54' 35''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3275.0,
            "times_seconds": 108734.0
        },
        {
            "index": 1198,
            "rank": 145,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "30h 12' 23''",
            "gap": "+ 00h 54' 44''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3284.0,
            "times_seconds": 108743.0
        },
        {
            "index": 1199,
            "rank": 146,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "30h 12' 24''",
            "gap": "+ 00h 54' 45''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3285.0,
            "times_seconds": 108744.0
        },
        {
            "index": 1200,
            "rank": 147,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "30h 12' 31''",
            "gap": "+ 00h 54' 52''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3292.0,
            "times_seconds": 108751.0
        },
        {
            "index": 1201,
            "rank": 148,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "30h 13' 01''",
            "gap": "+ 00h 55' 22''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3322.0,
            "times_seconds": 108781.0
        },
        {
            "index": 1202,
            "rank": 149,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "30h 13' 06''",
            "gap": "+ 00h 55' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3327.0,
            "times_seconds": 108786.0
        },
        {
            "index": 1203,
            "rank": 150,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "30h 13' 08''",
            "gap": "+ 00h 55' 29''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3329.0,
            "times_seconds": 108788.0
        },
        {
            "index": 1204,
            "rank": 151,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "30h 13' 20''",
            "gap": "+ 00h 55' 41''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3341.0,
            "times_seconds": 108800.0
        },
        {
            "index": 1205,
            "rank": 152,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "30h 13' 45''",
            "gap": "+ 00h 56' 06''",
            "b": "B : 6''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3366.0,
            "times_seconds": 108825.0
        },
        {
            "index": 1206,
            "rank": 153,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "30h 13' 55''",
            "gap": "+ 00h 56' 16''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3376.0,
            "times_seconds": 108835.0
        },
        {
            "index": 1207,
            "rank": 154,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "30h 14' 11''",
            "gap": "+ 00h 56' 32''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3392.0,
            "times_seconds": 108851.0
        },
        {
            "index": 1208,
            "rank": 155,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "30h 14' 40''",
            "gap": "+ 00h 57' 01''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3421.0,
            "times_seconds": 108880.0
        },
        {
            "index": 1209,
            "rank": 156,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "30h 15' 06''",
            "gap": "+ 00h 57' 27''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3447.0,
            "times_seconds": 108906.0
        },
        {
            "index": 1210,
            "rank": 157,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "30h 15' 29''",
            "gap": "+ 00h 57' 50''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3470.0,
            "times_seconds": 108929.0
        },
        {
            "index": 1211,
            "rank": 158,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "30h 15' 40''",
            "gap": "+ 00h 58' 01''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3481.0,
            "times_seconds": 108940.0
        },
        {
            "index": 1212,
            "rank": 159,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "30h 16' 15''",
            "gap": "+ 00h 58' 36''",
            "b": "B : 10''",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3516.0,
            "times_seconds": 108975.0
        },
        {
            "index": 1213,
            "rank": 160,
            "rider": "Christophe Laporte",
            "rider no.": 151,
            "team": "Cofidis, Solutions Credits",
            "times": "30h 16' 18''",
            "gap": "+ 00h 58' 39''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3519.0,
            "times_seconds": 108978.0
        },
        {
            "index": 1214,
            "rank": 161,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "30h 16' 30''",
            "gap": "+ 00h 58' 51''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3531.0,
            "times_seconds": 108990.0
        },
        {
            "index": 1215,
            "rank": 162,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "30h 16' 37''",
            "gap": "+ 00h 58' 58''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3538.0,
            "times_seconds": 108997.0
        },
        {
            "index": 1216,
            "rank": 163,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "30h 16' 57''",
            "gap": "+ 00h 59' 18''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3558.0,
            "times_seconds": 109017.0
        },
        {
            "index": 1217,
            "rank": 164,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "30h 16' 57''",
            "gap": "+ 00h 59' 18''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3558.0,
            "times_seconds": 109017.0
        },
        {
            "index": 1218,
            "rank": 165,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "30h 17' 15''",
            "gap": "+ 00h 59' 36''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3576.0,
            "times_seconds": 109035.0
        },
        {
            "index": 1219,
            "rank": 166,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "30h 17' 18''",
            "gap": "+ 00h 59' 39''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3579.0,
            "times_seconds": 109038.0
        },
        {
            "index": 1220,
            "rank": 167,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "30h 17' 48''",
            "gap": "+ 01h 00' 09''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3609.0,
            "times_seconds": 109068.0
        },
        {
            "index": 1221,
            "rank": 168,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "30h 18' 00''",
            "gap": "+ 01h 00' 21''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3621.0,
            "times_seconds": 109080.0
        },
        {
            "index": 1222,
            "rank": 169,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "30h 18' 05''",
            "gap": "+ 01h 00' 26''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3626.0,
            "times_seconds": 109085.0
        },
        {
            "index": 1223,
            "rank": 170,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "30h 18' 17''",
            "gap": "+ 01h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3638.0,
            "times_seconds": 109097.0
        },
        {
            "index": 1224,
            "rank": 171,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "30h 19' 30''",
            "gap": "+ 01h 01' 51''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3711.0,
            "times_seconds": 109170.0
        },
        {
            "index": 1225,
            "rank": 172,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "30h 19' 41''",
            "gap": "+ 01h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3722.0,
            "times_seconds": 109181.0
        },
        {
            "index": 1226,
            "rank": 173,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "30h 19' 48''",
            "gap": "+ 01h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 3729.0,
            "times_seconds": 109188.0
        },
        {
            "index": 1227,
            "rank": 174,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "30h 26' 40''",
            "gap": "+ 01h 09' 01''",
            "b": "-",
            "p": "-",
            "stage": 7,
            "gap_seconds": 4141.0,
            "times_seconds": 109600.0
        },
        {
            "index": 1228,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "34h 17' 59''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 0.0,
            "times_seconds": 123479.0
        },
        {
            "index": 1229,
            "rank": 2,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "34h 18' 22''",
            "gap": "+ 00h 00' 23''",
            "b": "B : 14''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 23.0,
            "times_seconds": 123502.0
        },
        {
            "index": 1230,
            "rank": 3,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "34h 18' 52''",
            "gap": "+ 00h 00' 53''",
            "b": "B : 8''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 53.0,
            "times_seconds": 123532.0
        },
        {
            "index": 1231,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "34h 19' 09''",
            "gap": "+ 00h 01' 10''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 70.0,
            "times_seconds": 123549.0
        },
        {
            "index": 1232,
            "rank": 5,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "34h 19' 11''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 72.0,
            "times_seconds": 123551.0
        },
        {
            "index": 1233,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "34h 19' 15''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 76.0,
            "times_seconds": 123555.0
        },
        {
            "index": 1234,
            "rank": 7,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "34h 19' 26''",
            "gap": "+ 00h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 87.0,
            "times_seconds": 123566.0
        },
        {
            "index": 1235,
            "rank": 8,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "34h 19' 37''",
            "gap": "+ 00h 01' 38''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 98.0,
            "times_seconds": 123577.0
        },
        {
            "index": 1236,
            "rank": 9,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "34h 19' 41''",
            "gap": "+ 00h 01' 42''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 102.0,
            "times_seconds": 123581.0
        },
        {
            "index": 1237,
            "rank": 10,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "34h 19' 44''",
            "gap": "+ 00h 01' 45''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 105.0,
            "times_seconds": 123584.0
        },
        {
            "index": 1238,
            "rank": 11,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "34h 19' 45''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 106.0,
            "times_seconds": 123585.0
        },
        {
            "index": 1239,
            "rank": 12,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "34h 19' 46''",
            "gap": "+ 00h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 107.0,
            "times_seconds": 123586.0
        },
        {
            "index": 1240,
            "rank": 13,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "34h 20' 01''",
            "gap": "+ 00h 02' 02''",
            "b": "B : 4''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 122.0,
            "times_seconds": 123601.0
        },
        {
            "index": 1241,
            "rank": 14,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "34h 20' 03''",
            "gap": "+ 00h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 124.0,
            "times_seconds": 123603.0
        },
        {
            "index": 1242,
            "rank": 15,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "34h 20' 05''",
            "gap": "+ 00h 02' 06''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 126.0,
            "times_seconds": 123605.0
        },
        {
            "index": 1243,
            "rank": 16,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "34h 20' 08''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 129.0,
            "times_seconds": 123608.0
        },
        {
            "index": 1244,
            "rank": 17,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "34h 20' 14''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 135.0,
            "times_seconds": 123614.0
        },
        {
            "index": 1245,
            "rank": 18,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "34h 20' 18''",
            "gap": "+ 00h 02' 19''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 139.0,
            "times_seconds": 123618.0
        },
        {
            "index": 1246,
            "rank": 19,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "34h 20' 44''",
            "gap": "+ 00h 02' 45''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 165.0,
            "times_seconds": 123644.0
        },
        {
            "index": 1247,
            "rank": 20,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "34h 20' 45''",
            "gap": "+ 00h 02' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 166.0,
            "times_seconds": 123645.0
        },
        {
            "index": 1248,
            "rank": 21,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "34h 20' 53''",
            "gap": "+ 00h 02' 54''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 174.0,
            "times_seconds": 123653.0
        },
        {
            "index": 1249,
            "rank": 22,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "34h 21' 17''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 198.0,
            "times_seconds": 123677.0
        },
        {
            "index": 1250,
            "rank": 23,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "34h 21' 19''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 200.0,
            "times_seconds": 123679.0
        },
        {
            "index": 1251,
            "rank": 24,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "34h 21' 25''",
            "gap": "+ 00h 03' 26''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 206.0,
            "times_seconds": 123685.0
        },
        {
            "index": 1252,
            "rank": 25,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "34h 21' 27''",
            "gap": "+ 00h 03' 28''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 208.0,
            "times_seconds": 123687.0
        },
        {
            "index": 1253,
            "rank": 26,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "34h 21' 47''",
            "gap": "+ 00h 03' 48''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 228.0,
            "times_seconds": 123707.0
        },
        {
            "index": 1254,
            "rank": 27,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "34h 21' 49''",
            "gap": "+ 00h 03' 50''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 230.0,
            "times_seconds": 123709.0
        },
        {
            "index": 1255,
            "rank": 28,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "34h 24' 17''",
            "gap": "+ 00h 06' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 378.0,
            "times_seconds": 123857.0
        },
        {
            "index": 1256,
            "rank": 29,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "34h 28' 11''",
            "gap": "+ 00h 10' 12''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 8,
            "gap_seconds": 612.0,
            "times_seconds": 124091.0
        },
        {
            "index": 1257,
            "rank": 30,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "34h 29' 06''",
            "gap": "+ 00h 11' 07''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 667.0,
            "times_seconds": 124146.0
        },
        {
            "index": 1258,
            "rank": 31,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "34h 31' 26''",
            "gap": "+ 00h 13' 27''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 807.0,
            "times_seconds": 124286.0
        },
        {
            "index": 1259,
            "rank": 32,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "34h 31' 37''",
            "gap": "+ 00h 13' 38''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 818.0,
            "times_seconds": 124297.0
        },
        {
            "index": 1260,
            "rank": 33,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "34h 32' 24''",
            "gap": "+ 00h 14' 25''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 865.0,
            "times_seconds": 124344.0
        },
        {
            "index": 1261,
            "rank": 34,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "34h 33' 22''",
            "gap": "+ 00h 15' 23''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 923.0,
            "times_seconds": 124402.0
        },
        {
            "index": 1262,
            "rank": 35,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "34h 33' 31''",
            "gap": "+ 00h 15' 32''",
            "b": "B : 2''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 932.0,
            "times_seconds": 124411.0
        },
        {
            "index": 1263,
            "rank": 36,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "34h 36' 10''",
            "gap": "+ 00h 18' 11''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1091.0,
            "times_seconds": 124570.0
        },
        {
            "index": 1264,
            "rank": 37,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "34h 37' 07''",
            "gap": "+ 00h 19' 08''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1148.0,
            "times_seconds": 124627.0
        },
        {
            "index": 1265,
            "rank": 38,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "34h 37' 24''",
            "gap": "+ 00h 19' 25''",
            "b": "B : 6''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1165.0,
            "times_seconds": 124644.0
        },
        {
            "index": 1266,
            "rank": 39,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "34h 37' 59''",
            "gap": "+ 00h 20' 00''",
            "b": "B : 4''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1200.0,
            "times_seconds": 124679.0
        },
        {
            "index": 1267,
            "rank": 40,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "34h 38' 06''",
            "gap": "+ 00h 20' 07''",
            "b": "B : 20''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1207.0,
            "times_seconds": 124686.0
        },
        {
            "index": 1268,
            "rank": 41,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "34h 38' 31''",
            "gap": "+ 00h 20' 32''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1232.0,
            "times_seconds": 124711.0
        },
        {
            "index": 1269,
            "rank": 42,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "34h 41' 05''",
            "gap": "+ 00h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1386.0,
            "times_seconds": 124865.0
        },
        {
            "index": 1270,
            "rank": 43,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "34h 41' 13''",
            "gap": "+ 00h 23' 14''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1394.0,
            "times_seconds": 124873.0
        },
        {
            "index": 1271,
            "rank": 44,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "34h 41' 29''",
            "gap": "+ 00h 23' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1410.0,
            "times_seconds": 124889.0
        },
        {
            "index": 1272,
            "rank": 45,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "34h 41' 45''",
            "gap": "+ 00h 23' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1426.0,
            "times_seconds": 124905.0
        },
        {
            "index": 1273,
            "rank": 46,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "34h 41' 59''",
            "gap": "+ 00h 24' 00''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1440.0,
            "times_seconds": 124919.0
        },
        {
            "index": 1274,
            "rank": 47,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "34h 42' 02''",
            "gap": "+ 00h 24' 03''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1443.0,
            "times_seconds": 124922.0
        },
        {
            "index": 1275,
            "rank": 48,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "34h 42' 24''",
            "gap": "+ 00h 24' 25''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1465.0,
            "times_seconds": 124944.0
        },
        {
            "index": 1276,
            "rank": 49,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "34h 43' 09''",
            "gap": "+ 00h 25' 10''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1510.0,
            "times_seconds": 124989.0
        },
        {
            "index": 1277,
            "rank": 50,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "34h 44' 20''",
            "gap": "+ 00h 26' 21''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1581.0,
            "times_seconds": 125060.0
        },
        {
            "index": 1278,
            "rank": 51,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "34h 44' 39''",
            "gap": "+ 00h 26' 40''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1600.0,
            "times_seconds": 125079.0
        },
        {
            "index": 1279,
            "rank": 52,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "34h 45' 00''",
            "gap": "+ 00h 27' 01''",
            "b": "B : 15''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1621.0,
            "times_seconds": 125100.0
        },
        {
            "index": 1280,
            "rank": 53,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "34h 46' 31''",
            "gap": "+ 00h 28' 32''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1712.0,
            "times_seconds": 125191.0
        },
        {
            "index": 1281,
            "rank": 54,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "34h 47' 06''",
            "gap": "+ 00h 29' 07''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1747.0,
            "times_seconds": 125226.0
        },
        {
            "index": 1282,
            "rank": 55,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "34h 47' 58''",
            "gap": "+ 00h 29' 59''",
            "b": "B : 18''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1799.0,
            "times_seconds": 125278.0
        },
        {
            "index": 1283,
            "rank": 56,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "34h 48' 10''",
            "gap": "+ 00h 30' 11''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1811.0,
            "times_seconds": 125290.0
        },
        {
            "index": 1284,
            "rank": 57,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "34h 48' 49''",
            "gap": "+ 00h 30' 50''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1850.0,
            "times_seconds": 125329.0
        },
        {
            "index": 1285,
            "rank": 58,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "34h 49' 31''",
            "gap": "+ 00h 31' 32''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1892.0,
            "times_seconds": 125371.0
        },
        {
            "index": 1286,
            "rank": 59,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "34h 49' 35''",
            "gap": "+ 00h 31' 36''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1896.0,
            "times_seconds": 125375.0
        },
        {
            "index": 1287,
            "rank": 60,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "34h 49' 42''",
            "gap": "+ 00h 31' 43''",
            "b": "B : 6''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1903.0,
            "times_seconds": 125382.0
        },
        {
            "index": 1288,
            "rank": 61,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "34h 50' 40''",
            "gap": "+ 00h 32' 41''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1961.0,
            "times_seconds": 125440.0
        },
        {
            "index": 1289,
            "rank": 62,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "34h 50' 43''",
            "gap": "+ 00h 32' 44''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1964.0,
            "times_seconds": 125443.0
        },
        {
            "index": 1290,
            "rank": 63,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "34h 50' 51''",
            "gap": "+ 00h 32' 52''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 1972.0,
            "times_seconds": 125451.0
        },
        {
            "index": 1291,
            "rank": 64,
            "rider": "Alessandro De Marchi",
            "rider no.": 113,
            "team": "Ccc Team",
            "times": "34h 51' 45''",
            "gap": "+ 00h 33' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2026.0,
            "times_seconds": 125505.0
        },
        {
            "index": 1292,
            "rank": 65,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "34h 52' 10''",
            "gap": "+ 00h 34' 11''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 8,
            "gap_seconds": 2051.0,
            "times_seconds": 125530.0
        },
        {
            "index": 1293,
            "rank": 66,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "34h 52' 19''",
            "gap": "+ 00h 34' 20''",
            "b": "B : 4''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2060.0,
            "times_seconds": 125539.0
        },
        {
            "index": 1294,
            "rank": 67,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "34h 52' 58''",
            "gap": "+ 00h 34' 59''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2099.0,
            "times_seconds": 125578.0
        },
        {
            "index": 1295,
            "rank": 68,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "34h 54' 19''",
            "gap": "+ 00h 36' 20''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2180.0,
            "times_seconds": 125659.0
        },
        {
            "index": 1296,
            "rank": 69,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "34h 54' 27''",
            "gap": "+ 00h 36' 28''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2188.0,
            "times_seconds": 125667.0
        },
        {
            "index": 1297,
            "rank": 70,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "34h 54' 43''",
            "gap": "+ 00h 36' 44''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2204.0,
            "times_seconds": 125683.0
        },
        {
            "index": 1298,
            "rank": 71,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "34h 55' 32''",
            "gap": "+ 00h 37' 33''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2253.0,
            "times_seconds": 125732.0
        },
        {
            "index": 1299,
            "rank": 72,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "34h 55' 51''",
            "gap": "+ 00h 37' 52''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2272.0,
            "times_seconds": 125751.0
        },
        {
            "index": 1300,
            "rank": 73,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "34h 56' 29''",
            "gap": "+ 00h 38' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2310.0,
            "times_seconds": 125789.0
        },
        {
            "index": 1301,
            "rank": 74,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "34h 57' 23''",
            "gap": "+ 00h 39' 24''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2364.0,
            "times_seconds": 125843.0
        },
        {
            "index": 1302,
            "rank": 75,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "34h 59' 08''",
            "gap": "+ 00h 41' 09''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2469.0,
            "times_seconds": 125948.0
        },
        {
            "index": 1303,
            "rank": 76,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "35h 01' 24''",
            "gap": "+ 00h 43' 25''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2605.0,
            "times_seconds": 126084.0
        },
        {
            "index": 1304,
            "rank": 77,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "35h 02' 09''",
            "gap": "+ 00h 44' 10''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2650.0,
            "times_seconds": 126129.0
        },
        {
            "index": 1305,
            "rank": 78,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "35h 03' 12''",
            "gap": "+ 00h 45' 13''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2713.0,
            "times_seconds": 126192.0
        },
        {
            "index": 1306,
            "rank": 79,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "35h 04' 21''",
            "gap": "+ 00h 46' 22''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2782.0,
            "times_seconds": 126261.0
        },
        {
            "index": 1307,
            "rank": 80,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "35h 05' 42''",
            "gap": "+ 00h 47' 43''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2863.0,
            "times_seconds": 126342.0
        },
        {
            "index": 1308,
            "rank": 81,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "35h 07' 18''",
            "gap": "+ 00h 49' 19''",
            "b": "B : 10''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2959.0,
            "times_seconds": 126438.0
        },
        {
            "index": 1309,
            "rank": 82,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "35h 07' 31''",
            "gap": "+ 00h 49' 32''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 2972.0,
            "times_seconds": 126451.0
        },
        {
            "index": 1310,
            "rank": 83,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "35h 08' 08''",
            "gap": "+ 00h 50' 09''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3009.0,
            "times_seconds": 126488.0
        },
        {
            "index": 1311,
            "rank": 84,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "35h 08' 12''",
            "gap": "+ 00h 50' 13''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3013.0,
            "times_seconds": 126492.0
        },
        {
            "index": 1312,
            "rank": 85,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "35h 10' 16''",
            "gap": "+ 00h 52' 17''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3137.0,
            "times_seconds": 126616.0
        },
        {
            "index": 1313,
            "rank": 86,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "35h 10' 22''",
            "gap": "+ 00h 52' 23''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3143.0,
            "times_seconds": 126622.0
        },
        {
            "index": 1314,
            "rank": 87,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "35h 10' 23''",
            "gap": "+ 00h 52' 24''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3144.0,
            "times_seconds": 126623.0
        },
        {
            "index": 1315,
            "rank": 88,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "35h 10' 45''",
            "gap": "+ 00h 52' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3166.0,
            "times_seconds": 126645.0
        },
        {
            "index": 1316,
            "rank": 89,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "35h 12' 34''",
            "gap": "+ 00h 54' 35''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3275.0,
            "times_seconds": 126754.0
        },
        {
            "index": 1317,
            "rank": 90,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 12' 58''",
            "gap": "+ 00h 54' 59''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3299.0,
            "times_seconds": 126778.0
        },
        {
            "index": 1318,
            "rank": 91,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "35h 13' 05''",
            "gap": "+ 00h 55' 06''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3306.0,
            "times_seconds": 126785.0
        },
        {
            "index": 1319,
            "rank": 92,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "35h 13' 13''",
            "gap": "+ 00h 55' 14''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3314.0,
            "times_seconds": 126793.0
        },
        {
            "index": 1320,
            "rank": 93,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "35h 13' 14''",
            "gap": "+ 00h 55' 15''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3315.0,
            "times_seconds": 126794.0
        },
        {
            "index": 1321,
            "rank": 94,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "35h 13' 34''",
            "gap": "+ 00h 55' 35''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3335.0,
            "times_seconds": 126814.0
        },
        {
            "index": 1322,
            "rank": 95,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "35h 14' 11''",
            "gap": "+ 00h 56' 12''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3372.0,
            "times_seconds": 126851.0
        },
        {
            "index": 1323,
            "rank": 96,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "35h 14' 21''",
            "gap": "+ 00h 56' 22''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3382.0,
            "times_seconds": 126861.0
        },
        {
            "index": 1324,
            "rank": 97,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "35h 14' 34''",
            "gap": "+ 00h 56' 35''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3395.0,
            "times_seconds": 126874.0
        },
        {
            "index": 1325,
            "rank": 98,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 14' 42''",
            "gap": "+ 00h 56' 43''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3403.0,
            "times_seconds": 126882.0
        },
        {
            "index": 1326,
            "rank": 99,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "35h 14' 50''",
            "gap": "+ 00h 56' 51''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3411.0,
            "times_seconds": 126890.0
        },
        {
            "index": 1327,
            "rank": 100,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "35h 14' 54''",
            "gap": "+ 00h 56' 55''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3415.0,
            "times_seconds": 126894.0
        },
        {
            "index": 1328,
            "rank": 101,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "35h 15' 47''",
            "gap": "+ 00h 57' 48''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3468.0,
            "times_seconds": 126947.0
        },
        {
            "index": 1329,
            "rank": 102,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "35h 17' 04''",
            "gap": "+ 00h 59' 05''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3545.0,
            "times_seconds": 127024.0
        },
        {
            "index": 1330,
            "rank": 103,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "35h 17' 25''",
            "gap": "+ 00h 59' 26''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3566.0,
            "times_seconds": 127045.0
        },
        {
            "index": 1331,
            "rank": 104,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "35h 19' 08''",
            "gap": "+ 01h 01' 09''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3669.0,
            "times_seconds": 127148.0
        },
        {
            "index": 1332,
            "rank": 105,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "35h 19' 45''",
            "gap": "+ 01h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3706.0,
            "times_seconds": 127185.0
        },
        {
            "index": 1333,
            "rank": 106,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "35h 19' 47''",
            "gap": "+ 01h 01' 48''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3708.0,
            "times_seconds": 127187.0
        },
        {
            "index": 1334,
            "rank": 107,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "35h 20' 35''",
            "gap": "+ 01h 02' 36''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3756.0,
            "times_seconds": 127235.0
        },
        {
            "index": 1335,
            "rank": 108,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "35h 21' 29''",
            "gap": "+ 01h 03' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3810.0,
            "times_seconds": 127289.0
        },
        {
            "index": 1336,
            "rank": 109,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "35h 21' 55''",
            "gap": "+ 01h 03' 56''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3836.0,
            "times_seconds": 127315.0
        },
        {
            "index": 1337,
            "rank": 110,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "35h 22' 23''",
            "gap": "+ 01h 04' 24''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3864.0,
            "times_seconds": 127343.0
        },
        {
            "index": 1338,
            "rank": 111,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "35h 22' 25''",
            "gap": "+ 01h 04' 26''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3866.0,
            "times_seconds": 127345.0
        },
        {
            "index": 1339,
            "rank": 112,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "35h 23' 44''",
            "gap": "+ 01h 05' 45''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3945.0,
            "times_seconds": 127424.0
        },
        {
            "index": 1340,
            "rank": 113,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "35h 23' 56''",
            "gap": "+ 01h 05' 57''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 3957.0,
            "times_seconds": 127436.0
        },
        {
            "index": 1341,
            "rank": 114,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "35h 25' 45''",
            "gap": "+ 01h 07' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4066.0,
            "times_seconds": 127545.0
        },
        {
            "index": 1342,
            "rank": 115,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "35h 26' 00''",
            "gap": "+ 01h 08' 01''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4081.0,
            "times_seconds": 127560.0
        },
        {
            "index": 1343,
            "rank": 116,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "35h 26' 29''",
            "gap": "+ 01h 08' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4110.0,
            "times_seconds": 127589.0
        },
        {
            "index": 1344,
            "rank": 117,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "35h 27' 45''",
            "gap": "+ 01h 09' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4186.0,
            "times_seconds": 127665.0
        },
        {
            "index": 1345,
            "rank": 118,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 27' 50''",
            "gap": "+ 01h 09' 51''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4191.0,
            "times_seconds": 127670.0
        },
        {
            "index": 1346,
            "rank": 119,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "35h 27' 58''",
            "gap": "+ 01h 09' 59''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4199.0,
            "times_seconds": 127678.0
        },
        {
            "index": 1347,
            "rank": 120,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "35h 28' 03''",
            "gap": "+ 01h 10' 04''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4204.0,
            "times_seconds": 127683.0
        },
        {
            "index": 1348,
            "rank": 121,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "35h 28' 53''",
            "gap": "+ 01h 10' 54''",
            "b": "B : 10''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4254.0,
            "times_seconds": 127733.0
        },
        {
            "index": 1349,
            "rank": 122,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "35h 29' 45''",
            "gap": "+ 01h 11' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4306.0,
            "times_seconds": 127785.0
        },
        {
            "index": 1350,
            "rank": 123,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "35h 29' 58''",
            "gap": "+ 01h 11' 59''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4319.0,
            "times_seconds": 127798.0
        },
        {
            "index": 1351,
            "rank": 124,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "35h 30' 06''",
            "gap": "+ 01h 12' 07''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4327.0,
            "times_seconds": 127806.0
        },
        {
            "index": 1352,
            "rank": 125,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 30' 14''",
            "gap": "+ 01h 12' 15''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4335.0,
            "times_seconds": 127814.0
        },
        {
            "index": 1353,
            "rank": 126,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "35h 30' 17''",
            "gap": "+ 01h 12' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4338.0,
            "times_seconds": 127817.0
        },
        {
            "index": 1354,
            "rank": 127,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "35h 31' 04''",
            "gap": "+ 01h 13' 05''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4385.0,
            "times_seconds": 127864.0
        },
        {
            "index": 1355,
            "rank": 128,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "35h 31' 09''",
            "gap": "+ 01h 13' 10''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4390.0,
            "times_seconds": 127869.0
        },
        {
            "index": 1356,
            "rank": 129,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "35h 31' 33''",
            "gap": "+ 01h 13' 34''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4414.0,
            "times_seconds": 127893.0
        },
        {
            "index": 1357,
            "rank": 130,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "35h 32' 58''",
            "gap": "+ 01h 14' 59''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4499.0,
            "times_seconds": 127978.0
        },
        {
            "index": 1358,
            "rank": 131,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "35h 33' 31''",
            "gap": "+ 01h 15' 32''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4532.0,
            "times_seconds": 128011.0
        },
        {
            "index": 1359,
            "rank": 132,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "35h 34' 05''",
            "gap": "+ 01h 16' 06''",
            "b": "B : 14''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4566.0,
            "times_seconds": 128045.0
        },
        {
            "index": 1360,
            "rank": 133,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "35h 34' 14''",
            "gap": "+ 01h 16' 15''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4575.0,
            "times_seconds": 128054.0
        },
        {
            "index": 1361,
            "rank": 134,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "35h 34' 48''",
            "gap": "+ 01h 16' 49''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4609.0,
            "times_seconds": 128088.0
        },
        {
            "index": 1362,
            "rank": 135,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "35h 35' 17''",
            "gap": "+ 01h 17' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4638.0,
            "times_seconds": 128117.0
        },
        {
            "index": 1363,
            "rank": 136,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "35h 35' 29''",
            "gap": "+ 01h 17' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4650.0,
            "times_seconds": 128129.0
        },
        {
            "index": 1364,
            "rank": 137,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 35' 33''",
            "gap": "+ 01h 17' 34''",
            "b": "B : 10''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4654.0,
            "times_seconds": 128133.0
        },
        {
            "index": 1365,
            "rank": 138,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "35h 36' 11''",
            "gap": "+ 01h 18' 12''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4692.0,
            "times_seconds": 128171.0
        },
        {
            "index": 1366,
            "rank": 139,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "35h 36' 12''",
            "gap": "+ 01h 18' 13''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4693.0,
            "times_seconds": 128172.0
        },
        {
            "index": 1367,
            "rank": 140,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "35h 36' 17''",
            "gap": "+ 01h 18' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4698.0,
            "times_seconds": 128177.0
        },
        {
            "index": 1368,
            "rank": 141,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "35h 36' 37''",
            "gap": "+ 01h 18' 38''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4718.0,
            "times_seconds": 128197.0
        },
        {
            "index": 1369,
            "rank": 142,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "35h 36' 45''",
            "gap": "+ 01h 18' 46''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4726.0,
            "times_seconds": 128205.0
        },
        {
            "index": 1370,
            "rank": 143,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "35h 36' 55''",
            "gap": "+ 01h 18' 56''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4736.0,
            "times_seconds": 128215.0
        },
        {
            "index": 1371,
            "rank": 144,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "35h 36' 57''",
            "gap": "+ 01h 18' 58''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4738.0,
            "times_seconds": 128217.0
        },
        {
            "index": 1372,
            "rank": 145,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "35h 37' 09''",
            "gap": "+ 01h 19' 10''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4750.0,
            "times_seconds": 128229.0
        },
        {
            "index": 1373,
            "rank": 146,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "35h 37' 24''",
            "gap": "+ 01h 19' 25''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4765.0,
            "times_seconds": 128244.0
        },
        {
            "index": 1374,
            "rank": 147,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "35h 37' 55''",
            "gap": "+ 01h 19' 56''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4796.0,
            "times_seconds": 128275.0
        },
        {
            "index": 1375,
            "rank": 148,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "35h 38' 05''",
            "gap": "+ 01h 20' 06''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4806.0,
            "times_seconds": 128285.0
        },
        {
            "index": 1376,
            "rank": 149,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "35h 38' 17''",
            "gap": "+ 01h 20' 18''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4818.0,
            "times_seconds": 128297.0
        },
        {
            "index": 1377,
            "rank": 150,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "35h 38' 44''",
            "gap": "+ 01h 20' 45''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4845.0,
            "times_seconds": 128324.0
        },
        {
            "index": 1378,
            "rank": 151,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "35h 39' 03''",
            "gap": "+ 01h 21' 04''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4864.0,
            "times_seconds": 128343.0
        },
        {
            "index": 1379,
            "rank": 152,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "35h 39' 12''",
            "gap": "+ 01h 21' 13''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4873.0,
            "times_seconds": 128352.0
        },
        {
            "index": 1380,
            "rank": 153,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "35h 39' 13''",
            "gap": "+ 01h 21' 14''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4874.0,
            "times_seconds": 128353.0
        },
        {
            "index": 1381,
            "rank": 154,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 39' 20''",
            "gap": "+ 01h 21' 21''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4881.0,
            "times_seconds": 128360.0
        },
        {
            "index": 1382,
            "rank": 155,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "35h 39' 50''",
            "gap": "+ 01h 21' 51''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4911.0,
            "times_seconds": 128390.0
        },
        {
            "index": 1383,
            "rank": 156,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "35h 39' 55''",
            "gap": "+ 01h 21' 56''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4916.0,
            "times_seconds": 128395.0
        },
        {
            "index": 1384,
            "rank": 157,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 39' 57''",
            "gap": "+ 01h 21' 58''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4918.0,
            "times_seconds": 128397.0
        },
        {
            "index": 1385,
            "rank": 158,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "35h 40' 34''",
            "gap": "+ 01h 22' 35''",
            "b": "B : 6''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 4955.0,
            "times_seconds": 128434.0
        },
        {
            "index": 1386,
            "rank": 159,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "35h 41' 20''",
            "gap": "+ 01h 23' 21''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 8,
            "gap_seconds": 5001.0,
            "times_seconds": 128480.0
        },
        {
            "index": 1387,
            "rank": 160,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "35h 41' 55''",
            "gap": "+ 01h 23' 56''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5036.0,
            "times_seconds": 128515.0
        },
        {
            "index": 1388,
            "rank": 161,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "35h 42' 29''",
            "gap": "+ 01h 24' 30''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5070.0,
            "times_seconds": 128549.0
        },
        {
            "index": 1389,
            "rank": 162,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "35h 43' 04''",
            "gap": "+ 01h 25' 05''",
            "b": "B : 10''",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5105.0,
            "times_seconds": 128584.0
        },
        {
            "index": 1390,
            "rank": 163,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 43' 19''",
            "gap": "+ 01h 25' 20''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5120.0,
            "times_seconds": 128599.0
        },
        {
            "index": 1391,
            "rank": 164,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "35h 43' 46''",
            "gap": "+ 01h 25' 47''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5147.0,
            "times_seconds": 128626.0
        },
        {
            "index": 1392,
            "rank": 165,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 44' 04''",
            "gap": "+ 01h 26' 05''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5165.0,
            "times_seconds": 128644.0
        },
        {
            "index": 1393,
            "rank": 166,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "35h 44' 07''",
            "gap": "+ 01h 26' 08''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5168.0,
            "times_seconds": 128647.0
        },
        {
            "index": 1394,
            "rank": 167,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 44' 37''",
            "gap": "+ 01h 26' 38''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5198.0,
            "times_seconds": 128677.0
        },
        {
            "index": 1395,
            "rank": 168,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "35h 44' 49''",
            "gap": "+ 01h 26' 50''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5210.0,
            "times_seconds": 128689.0
        },
        {
            "index": 1396,
            "rank": 169,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "35h 46' 19''",
            "gap": "+ 01h 28' 20''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5300.0,
            "times_seconds": 128779.0
        },
        {
            "index": 1397,
            "rank": 170,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "35h 46' 30''",
            "gap": "+ 01h 28' 31''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5311.0,
            "times_seconds": 128790.0
        },
        {
            "index": 1398,
            "rank": 171,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "35h 46' 37''",
            "gap": "+ 01h 28' 38''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5318.0,
            "times_seconds": 128797.0
        },
        {
            "index": 1399,
            "rank": 172,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "35h 56' 41''",
            "gap": "+ 01h 38' 42''",
            "b": "-",
            "p": "-",
            "stage": 8,
            "gap_seconds": 5922.0,
            "times_seconds": 129401.0
        },
        {
            "index": 1400,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "38h 37' 36''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 0.0,
            "times_seconds": 139056.0
        },
        {
            "index": 1401,
            "rank": 2,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "38h 37' 59''",
            "gap": "+ 00h 00' 23''",
            "b": "B : 14''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 23.0,
            "times_seconds": 139079.0
        },
        {
            "index": 1402,
            "rank": 3,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "38h 38' 29''",
            "gap": "+ 00h 00' 53''",
            "b": "B : 8''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 53.0,
            "times_seconds": 139109.0
        },
        {
            "index": 1403,
            "rank": 4,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "38h 38' 46''",
            "gap": "+ 00h 01' 10''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 70.0,
            "times_seconds": 139126.0
        },
        {
            "index": 1404,
            "rank": 5,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "38h 38' 48''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 72.0,
            "times_seconds": 139128.0
        },
        {
            "index": 1405,
            "rank": 6,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "38h 38' 52''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 76.0,
            "times_seconds": 139132.0
        },
        {
            "index": 1406,
            "rank": 7,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "38h 39' 03''",
            "gap": "+ 00h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 87.0,
            "times_seconds": 139143.0
        },
        {
            "index": 1407,
            "rank": 8,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "38h 39' 14''",
            "gap": "+ 00h 01' 38''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 98.0,
            "times_seconds": 139154.0
        },
        {
            "index": 1408,
            "rank": 9,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "38h 39' 18''",
            "gap": "+ 00h 01' 42''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 102.0,
            "times_seconds": 139158.0
        },
        {
            "index": 1409,
            "rank": 10,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "38h 39' 21''",
            "gap": "+ 00h 01' 45''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 105.0,
            "times_seconds": 139161.0
        },
        {
            "index": 1410,
            "rank": 11,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "38h 39' 22''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 106.0,
            "times_seconds": 139162.0
        },
        {
            "index": 1411,
            "rank": 12,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "38h 39' 23''",
            "gap": "+ 00h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 107.0,
            "times_seconds": 139163.0
        },
        {
            "index": 1412,
            "rank": 13,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "38h 39' 38''",
            "gap": "+ 00h 02' 02''",
            "b": "B : 4''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 122.0,
            "times_seconds": 139178.0
        },
        {
            "index": 1413,
            "rank": 14,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "38h 39' 40''",
            "gap": "+ 00h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 124.0,
            "times_seconds": 139180.0
        },
        {
            "index": 1414,
            "rank": 15,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "38h 39' 42''",
            "gap": "+ 00h 02' 06''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 126.0,
            "times_seconds": 139182.0
        },
        {
            "index": 1415,
            "rank": 16,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "38h 39' 45''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 129.0,
            "times_seconds": 139185.0
        },
        {
            "index": 1416,
            "rank": 17,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "38h 39' 51''",
            "gap": "+ 00h 02' 15''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 135.0,
            "times_seconds": 139191.0
        },
        {
            "index": 1417,
            "rank": 18,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "38h 39' 55''",
            "gap": "+ 00h 02' 19''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 139.0,
            "times_seconds": 139195.0
        },
        {
            "index": 1418,
            "rank": 19,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "38h 40' 21''",
            "gap": "+ 00h 02' 45''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 165.0,
            "times_seconds": 139221.0
        },
        {
            "index": 1419,
            "rank": 20,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "38h 40' 22''",
            "gap": "+ 00h 02' 46''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 166.0,
            "times_seconds": 139222.0
        },
        {
            "index": 1420,
            "rank": 21,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "38h 40' 30''",
            "gap": "+ 00h 02' 54''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 174.0,
            "times_seconds": 139230.0
        },
        {
            "index": 1421,
            "rank": 22,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "38h 40' 54''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 198.0,
            "times_seconds": 139254.0
        },
        {
            "index": 1422,
            "rank": 23,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "38h 40' 56''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 200.0,
            "times_seconds": 139256.0
        },
        {
            "index": 1423,
            "rank": 24,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "38h 41' 02''",
            "gap": "+ 00h 03' 26''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 206.0,
            "times_seconds": 139262.0
        },
        {
            "index": 1424,
            "rank": 25,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "38h 41' 04''",
            "gap": "+ 00h 03' 28''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 208.0,
            "times_seconds": 139264.0
        },
        {
            "index": 1425,
            "rank": 26,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "38h 41' 24''",
            "gap": "+ 00h 03' 48''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 228.0,
            "times_seconds": 139284.0
        },
        {
            "index": 1426,
            "rank": 27,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "38h 41' 26''",
            "gap": "+ 00h 03' 50''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 230.0,
            "times_seconds": 139286.0
        },
        {
            "index": 1427,
            "rank": 28,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "38h 44' 37''",
            "gap": "+ 00h 07' 01''",
            "b": "B : 2''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 421.0,
            "times_seconds": 139477.0
        },
        {
            "index": 1428,
            "rank": 29,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "38h 45' 57''",
            "gap": "+ 00h 08' 21''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 501.0,
            "times_seconds": 139557.0
        },
        {
            "index": 1429,
            "rank": 30,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "38h 46' 32''",
            "gap": "+ 00h 08' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 536.0,
            "times_seconds": 139592.0
        },
        {
            "index": 1430,
            "rank": 31,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "38h 47' 48''",
            "gap": "+ 00h 10' 12''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 9,
            "gap_seconds": 612.0,
            "times_seconds": 139668.0
        },
        {
            "index": 1431,
            "rank": 32,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "38h 47' 56''",
            "gap": "+ 00h 10' 20''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 620.0,
            "times_seconds": 139676.0
        },
        {
            "index": 1432,
            "rank": 33,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "38h 48' 43''",
            "gap": "+ 00h 11' 07''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 667.0,
            "times_seconds": 139723.0
        },
        {
            "index": 1433,
            "rank": 34,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "38h 51' 03''",
            "gap": "+ 00h 13' 27''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 807.0,
            "times_seconds": 139863.0
        },
        {
            "index": 1434,
            "rank": 35,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "38h 51' 14''",
            "gap": "+ 00h 13' 38''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 818.0,
            "times_seconds": 139874.0
        },
        {
            "index": 1435,
            "rank": 36,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "38h 52' 01''",
            "gap": "+ 00h 14' 25''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 865.0,
            "times_seconds": 139921.0
        },
        {
            "index": 1436,
            "rank": 37,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "38h 52' 59''",
            "gap": "+ 00h 15' 23''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 923.0,
            "times_seconds": 139979.0
        },
        {
            "index": 1437,
            "rank": 38,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "38h 53' 08''",
            "gap": "+ 00h 15' 32''",
            "b": "B : 2''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 932.0,
            "times_seconds": 139988.0
        },
        {
            "index": 1438,
            "rank": 39,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "38h 55' 41''",
            "gap": "+ 00h 18' 05''",
            "b": "B : 4''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1085.0,
            "times_seconds": 140141.0
        },
        {
            "index": 1439,
            "rank": 40,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "38h 55' 47''",
            "gap": "+ 00h 18' 11''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1091.0,
            "times_seconds": 140147.0
        },
        {
            "index": 1440,
            "rank": 41,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "38h 56' 44''",
            "gap": "+ 00h 19' 08''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1148.0,
            "times_seconds": 140204.0
        },
        {
            "index": 1441,
            "rank": 42,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "38h 58' 26''",
            "gap": "+ 00h 20' 50''",
            "b": "B : 18''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1250.0,
            "times_seconds": 140306.0
        },
        {
            "index": 1442,
            "rank": 43,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "39h 00' 14''",
            "gap": "+ 00h 22' 38''",
            "b": "B : 4''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1358.0,
            "times_seconds": 140414.0
        },
        {
            "index": 1443,
            "rank": 44,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "39h 00' 42''",
            "gap": "+ 00h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1386.0,
            "times_seconds": 140442.0
        },
        {
            "index": 1444,
            "rank": 45,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "39h 00' 46''",
            "gap": "+ 00h 23' 10''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1390.0,
            "times_seconds": 140446.0
        },
        {
            "index": 1445,
            "rank": 46,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "39h 01' 22''",
            "gap": "+ 00h 23' 46''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1426.0,
            "times_seconds": 140482.0
        },
        {
            "index": 1446,
            "rank": 47,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "39h 01' 36''",
            "gap": "+ 00h 24' 00''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1440.0,
            "times_seconds": 140496.0
        },
        {
            "index": 1447,
            "rank": 48,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "39h 01' 58''",
            "gap": "+ 00h 24' 22''",
            "b": "B : 6''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1462.0,
            "times_seconds": 140518.0
        },
        {
            "index": 1448,
            "rank": 49,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "39h 02' 40''",
            "gap": "+ 00h 25' 04''",
            "b": "B : 20''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1504.0,
            "times_seconds": 140560.0
        },
        {
            "index": 1449,
            "rank": 50,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "39h 02' 46''",
            "gap": "+ 00h 25' 10''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1510.0,
            "times_seconds": 140566.0
        },
        {
            "index": 1450,
            "rank": 51,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "39h 03' 44''",
            "gap": "+ 00h 26' 08''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1568.0,
            "times_seconds": 140624.0
        },
        {
            "index": 1451,
            "rank": 52,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "39h 03' 57''",
            "gap": "+ 00h 26' 21''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1581.0,
            "times_seconds": 140637.0
        },
        {
            "index": 1452,
            "rank": 53,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "39h 04' 16''",
            "gap": "+ 00h 26' 40''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1600.0,
            "times_seconds": 140656.0
        },
        {
            "index": 1453,
            "rank": 54,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "39h 04' 25''",
            "gap": "+ 00h 26' 49''",
            "b": "B : 11''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1609.0,
            "times_seconds": 140665.0
        },
        {
            "index": 1454,
            "rank": 55,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "39h 04' 37''",
            "gap": "+ 00h 27' 01''",
            "b": "B : 15''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1621.0,
            "times_seconds": 140677.0
        },
        {
            "index": 1455,
            "rank": 56,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "39h 06' 08''",
            "gap": "+ 00h 28' 32''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1712.0,
            "times_seconds": 140768.0
        },
        {
            "index": 1456,
            "rank": 57,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "39h 06' 43''",
            "gap": "+ 00h 29' 07''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1747.0,
            "times_seconds": 140803.0
        },
        {
            "index": 1457,
            "rank": 58,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "39h 09' 08''",
            "gap": "+ 00h 31' 32''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1892.0,
            "times_seconds": 140948.0
        },
        {
            "index": 1458,
            "rank": 59,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "39h 09' 23''",
            "gap": "+ 00h 31' 47''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1907.0,
            "times_seconds": 140963.0
        },
        {
            "index": 1459,
            "rank": 60,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "39h 09' 44''",
            "gap": "+ 00h 32' 08''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1928.0,
            "times_seconds": 140984.0
        },
        {
            "index": 1460,
            "rank": 61,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "39h 10' 13''",
            "gap": "+ 00h 32' 37''",
            "b": "B : 18''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1957.0,
            "times_seconds": 141013.0
        },
        {
            "index": 1461,
            "rank": 62,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "39h 10' 17''",
            "gap": "+ 00h 32' 41''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1961.0,
            "times_seconds": 141017.0
        },
        {
            "index": 1462,
            "rank": 63,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "39h 10' 20''",
            "gap": "+ 00h 32' 44''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1964.0,
            "times_seconds": 141020.0
        },
        {
            "index": 1463,
            "rank": 64,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "39h 10' 49''",
            "gap": "+ 00h 33' 13''",
            "b": "B : 4''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 1993.0,
            "times_seconds": 141049.0
        },
        {
            "index": 1464,
            "rank": 65,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "39h 11' 04''",
            "gap": "+ 00h 33' 28''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2008.0,
            "times_seconds": 141064.0
        },
        {
            "index": 1465,
            "rank": 66,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "39h 11' 57''",
            "gap": "+ 00h 34' 21''",
            "b": "B : 6''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2061.0,
            "times_seconds": 141117.0
        },
        {
            "index": 1466,
            "rank": 67,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "39h 12' 44''",
            "gap": "+ 00h 35' 08''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2108.0,
            "times_seconds": 141164.0
        },
        {
            "index": 1467,
            "rank": 68,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "39h 13' 06''",
            "gap": "+ 00h 35' 30''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2130.0,
            "times_seconds": 141186.0
        },
        {
            "index": 1468,
            "rank": 69,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "39h 13' 56''",
            "gap": "+ 00h 36' 20''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2180.0,
            "times_seconds": 141236.0
        },
        {
            "index": 1469,
            "rank": 70,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "39h 14' 09''",
            "gap": "+ 00h 36' 33''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2193.0,
            "times_seconds": 141249.0
        },
        {
            "index": 1470,
            "rank": 71,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "39h 14' 25''",
            "gap": "+ 00h 36' 49''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 9,
            "gap_seconds": 2209.0,
            "times_seconds": 141265.0
        },
        {
            "index": 1471,
            "rank": 72,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "39h 15' 13''",
            "gap": "+ 00h 37' 37''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2257.0,
            "times_seconds": 141313.0
        },
        {
            "index": 1472,
            "rank": 73,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "39h 15' 28''",
            "gap": "+ 00h 37' 52''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2272.0,
            "times_seconds": 141328.0
        },
        {
            "index": 1473,
            "rank": 74,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "39h 16' 14''",
            "gap": "+ 00h 38' 38''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2318.0,
            "times_seconds": 141374.0
        },
        {
            "index": 1474,
            "rank": 75,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "39h 16' 42''",
            "gap": "+ 00h 39' 06''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2346.0,
            "times_seconds": 141402.0
        },
        {
            "index": 1475,
            "rank": 76,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "39h 16' 58''",
            "gap": "+ 00h 39' 22''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2362.0,
            "times_seconds": 141418.0
        },
        {
            "index": 1476,
            "rank": 77,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "39h 17' 00''",
            "gap": "+ 00h 39' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2364.0,
            "times_seconds": 141420.0
        },
        {
            "index": 1477,
            "rank": 78,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "39h 21' 03''",
            "gap": "+ 00h 43' 27''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2607.0,
            "times_seconds": 141663.0
        },
        {
            "index": 1478,
            "rank": 79,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "39h 23' 07''",
            "gap": "+ 00h 45' 31''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2731.0,
            "times_seconds": 141787.0
        },
        {
            "index": 1479,
            "rank": 80,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "39h 24' 24''",
            "gap": "+ 00h 46' 48''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2808.0,
            "times_seconds": 141864.0
        },
        {
            "index": 1480,
            "rank": 81,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "39h 25' 19''",
            "gap": "+ 00h 47' 43''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2863.0,
            "times_seconds": 141919.0
        },
        {
            "index": 1481,
            "rank": 82,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "39h 25' 27''",
            "gap": "+ 00h 47' 51''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 2871.0,
            "times_seconds": 141927.0
        },
        {
            "index": 1482,
            "rank": 83,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "39h 29' 33''",
            "gap": "+ 00h 51' 57''",
            "b": "B : 10''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3117.0,
            "times_seconds": 142173.0
        },
        {
            "index": 1483,
            "rank": 84,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "39h 30' 23''",
            "gap": "+ 00h 52' 47''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3167.0,
            "times_seconds": 142223.0
        },
        {
            "index": 1484,
            "rank": 85,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "39h 30' 27''",
            "gap": "+ 00h 52' 51''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3171.0,
            "times_seconds": 142227.0
        },
        {
            "index": 1485,
            "rank": 86,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "39h 32' 38''",
            "gap": "+ 00h 55' 02''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3302.0,
            "times_seconds": 142358.0
        },
        {
            "index": 1486,
            "rank": 87,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "39h 32' 50''",
            "gap": "+ 00h 55' 14''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3314.0,
            "times_seconds": 142370.0
        },
        {
            "index": 1487,
            "rank": 88,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "39h 33' 00''",
            "gap": "+ 00h 55' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3324.0,
            "times_seconds": 142380.0
        },
        {
            "index": 1488,
            "rank": 89,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "39h 33' 57''",
            "gap": "+ 00h 56' 21''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3381.0,
            "times_seconds": 142437.0
        },
        {
            "index": 1489,
            "rank": 90,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "39h 34' 49''",
            "gap": "+ 00h 57' 13''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3433.0,
            "times_seconds": 142489.0
        },
        {
            "index": 1490,
            "rank": 91,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "39h 34' 56''",
            "gap": "+ 00h 57' 20''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3440.0,
            "times_seconds": 142496.0
        },
        {
            "index": 1491,
            "rank": 92,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "39h 35' 00''",
            "gap": "+ 00h 57' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3444.0,
            "times_seconds": 142500.0
        },
        {
            "index": 1492,
            "rank": 93,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "39h 35' 13''",
            "gap": "+ 00h 57' 37''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3457.0,
            "times_seconds": 142513.0
        },
        {
            "index": 1493,
            "rank": 94,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "39h 35' 29''",
            "gap": "+ 00h 57' 53''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3473.0,
            "times_seconds": 142529.0
        },
        {
            "index": 1494,
            "rank": 95,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "39h 35' 49''",
            "gap": "+ 00h 58' 13''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3493.0,
            "times_seconds": 142549.0
        },
        {
            "index": 1495,
            "rank": 96,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "39h 36' 26''",
            "gap": "+ 00h 58' 50''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3530.0,
            "times_seconds": 142586.0
        },
        {
            "index": 1496,
            "rank": 97,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "39h 36' 36''",
            "gap": "+ 00h 59' 00''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3540.0,
            "times_seconds": 142596.0
        },
        {
            "index": 1497,
            "rank": 98,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "39h 36' 57''",
            "gap": "+ 00h 59' 21''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3561.0,
            "times_seconds": 142617.0
        },
        {
            "index": 1498,
            "rank": 99,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "39h 37' 05''",
            "gap": "+ 00h 59' 29''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3569.0,
            "times_seconds": 142625.0
        },
        {
            "index": 1499,
            "rank": 100,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "39h 37' 09''",
            "gap": "+ 00h 59' 33''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3573.0,
            "times_seconds": 142629.0
        },
        {
            "index": 1500,
            "rank": 101,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "39h 37' 39''",
            "gap": "+ 01h 00' 03''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3603.0,
            "times_seconds": 142659.0
        },
        {
            "index": 1501,
            "rank": 102,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "39h 38' 02''",
            "gap": "+ 01h 00' 26''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3626.0,
            "times_seconds": 142682.0
        },
        {
            "index": 1502,
            "rank": 103,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "39h 38' 08''",
            "gap": "+ 01h 00' 32''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3632.0,
            "times_seconds": 142688.0
        },
        {
            "index": 1503,
            "rank": 104,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "39h 39' 08''",
            "gap": "+ 01h 01' 32''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3692.0,
            "times_seconds": 142748.0
        },
        {
            "index": 1504,
            "rank": 105,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "39h 39' 40''",
            "gap": "+ 01h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3724.0,
            "times_seconds": 142780.0
        },
        {
            "index": 1505,
            "rank": 106,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "39h 41' 06''",
            "gap": "+ 01h 03' 30''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3810.0,
            "times_seconds": 142866.0
        },
        {
            "index": 1506,
            "rank": 107,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "39h 41' 23''",
            "gap": "+ 01h 03' 47''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3827.0,
            "times_seconds": 142883.0
        },
        {
            "index": 1507,
            "rank": 108,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "39h 42' 02''",
            "gap": "+ 01h 04' 26''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3866.0,
            "times_seconds": 142922.0
        },
        {
            "index": 1508,
            "rank": 109,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "39h 42' 02''",
            "gap": "+ 01h 04' 26''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3866.0,
            "times_seconds": 142922.0
        },
        {
            "index": 1509,
            "rank": 110,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "39h 42' 50''",
            "gap": "+ 01h 05' 14''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3914.0,
            "times_seconds": 142970.0
        },
        {
            "index": 1510,
            "rank": 111,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "39h 44' 10''",
            "gap": "+ 01h 06' 34''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 3994.0,
            "times_seconds": 143050.0
        },
        {
            "index": 1511,
            "rank": 112,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "39h 45' 00''",
            "gap": "+ 01h 07' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4044.0,
            "times_seconds": 143100.0
        },
        {
            "index": 1512,
            "rank": 113,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "39h 45' 15''",
            "gap": "+ 01h 07' 39''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4059.0,
            "times_seconds": 143115.0
        },
        {
            "index": 1513,
            "rank": 114,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "39h 45' 59''",
            "gap": "+ 01h 08' 23''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4103.0,
            "times_seconds": 143159.0
        },
        {
            "index": 1514,
            "rank": 115,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "39h 46' 06''",
            "gap": "+ 01h 08' 30''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4110.0,
            "times_seconds": 143166.0
        },
        {
            "index": 1515,
            "rank": 116,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "39h 46' 57''",
            "gap": "+ 01h 09' 21''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4161.0,
            "times_seconds": 143217.0
        },
        {
            "index": 1516,
            "rank": 117,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "39h 47' 27''",
            "gap": "+ 01h 09' 51''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4191.0,
            "times_seconds": 143247.0
        },
        {
            "index": 1517,
            "rank": 118,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "39h 48' 00''",
            "gap": "+ 01h 10' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4224.0,
            "times_seconds": 143280.0
        },
        {
            "index": 1518,
            "rank": 119,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "39h 48' 15''",
            "gap": "+ 01h 10' 39''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4239.0,
            "times_seconds": 143295.0
        },
        {
            "index": 1519,
            "rank": 120,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "39h 48' 30''",
            "gap": "+ 01h 10' 54''",
            "b": "B : 10''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4254.0,
            "times_seconds": 143310.0
        },
        {
            "index": 1520,
            "rank": 121,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "39h 52' 19''",
            "gap": "+ 01h 14' 43''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4483.0,
            "times_seconds": 143539.0
        },
        {
            "index": 1521,
            "rank": 122,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "39h 52' 21''",
            "gap": "+ 01h 14' 45''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4485.0,
            "times_seconds": 143541.0
        },
        {
            "index": 1522,
            "rank": 123,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "39h 52' 32''",
            "gap": "+ 01h 14' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4496.0,
            "times_seconds": 143552.0
        },
        {
            "index": 1523,
            "rank": 124,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "39h 52' 32''",
            "gap": "+ 01h 14' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4496.0,
            "times_seconds": 143552.0
        },
        {
            "index": 1524,
            "rank": 125,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "39h 53' 19''",
            "gap": "+ 01h 15' 43''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4543.0,
            "times_seconds": 143599.0
        },
        {
            "index": 1525,
            "rank": 126,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "39h 53' 24''",
            "gap": "+ 01h 15' 48''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4548.0,
            "times_seconds": 143604.0
        },
        {
            "index": 1526,
            "rank": 127,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "39h 53' 48''",
            "gap": "+ 01h 16' 12''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4572.0,
            "times_seconds": 143628.0
        },
        {
            "index": 1527,
            "rank": 128,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "39h 54' 19''",
            "gap": "+ 01h 16' 43''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4603.0,
            "times_seconds": 143659.0
        },
        {
            "index": 1528,
            "rank": 129,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "39h 54' 48''",
            "gap": "+ 01h 17' 12''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4632.0,
            "times_seconds": 143688.0
        },
        {
            "index": 1529,
            "rank": 130,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "39h 55' 46''",
            "gap": "+ 01h 18' 10''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4690.0,
            "times_seconds": 143746.0
        },
        {
            "index": 1530,
            "rank": 131,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "39h 56' 55''",
            "gap": "+ 01h 19' 19''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4759.0,
            "times_seconds": 143815.0
        },
        {
            "index": 1531,
            "rank": 132,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "39h 57' 32''",
            "gap": "+ 01h 19' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4796.0,
            "times_seconds": 143852.0
        },
        {
            "index": 1532,
            "rank": 133,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "39h 57' 48''",
            "gap": "+ 01h 20' 12''",
            "b": "B : 10''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4812.0,
            "times_seconds": 143868.0
        },
        {
            "index": 1533,
            "rank": 134,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "39h 58' 27''",
            "gap": "+ 01h 20' 51''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4851.0,
            "times_seconds": 143907.0
        },
        {
            "index": 1534,
            "rank": 135,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "39h 58' 32''",
            "gap": "+ 01h 20' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4856.0,
            "times_seconds": 143912.0
        },
        {
            "index": 1535,
            "rank": 136,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "39h 58' 39''",
            "gap": "+ 01h 21' 03''",
            "b": "B : 14''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4863.0,
            "times_seconds": 143919.0
        },
        {
            "index": 1536,
            "rank": 137,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "39h 58' 48''",
            "gap": "+ 01h 21' 12''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4872.0,
            "times_seconds": 143928.0
        },
        {
            "index": 1537,
            "rank": 138,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "39h 59' 00''",
            "gap": "+ 01h 21' 24''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4884.0,
            "times_seconds": 143940.0
        },
        {
            "index": 1538,
            "rank": 139,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "39h 59' 10''",
            "gap": "+ 01h 21' 34''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4894.0,
            "times_seconds": 143950.0
        },
        {
            "index": 1539,
            "rank": 140,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "39h 59' 12''",
            "gap": "+ 01h 21' 36''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4896.0,
            "times_seconds": 143952.0
        },
        {
            "index": 1540,
            "rank": 141,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "39h 59' 22''",
            "gap": "+ 01h 21' 46''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4906.0,
            "times_seconds": 143962.0
        },
        {
            "index": 1541,
            "rank": 142,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "39h 59' 24''",
            "gap": "+ 01h 21' 48''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4908.0,
            "times_seconds": 143964.0
        },
        {
            "index": 1542,
            "rank": 143,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "39h 59' 51''",
            "gap": "+ 01h 22' 15''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4935.0,
            "times_seconds": 143991.0
        },
        {
            "index": 1543,
            "rank": 144,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "40h 00' 03''",
            "gap": "+ 01h 22' 27''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4947.0,
            "times_seconds": 144003.0
        },
        {
            "index": 1544,
            "rank": 145,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "40h 00' 10''",
            "gap": "+ 01h 22' 34''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4954.0,
            "times_seconds": 144010.0
        },
        {
            "index": 1545,
            "rank": 146,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "40h 00' 32''",
            "gap": "+ 01h 22' 56''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4976.0,
            "times_seconds": 144032.0
        },
        {
            "index": 1546,
            "rank": 147,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "40h 00' 45''",
            "gap": "+ 01h 23' 09''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 4989.0,
            "times_seconds": 144045.0
        },
        {
            "index": 1547,
            "rank": 148,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "40h 00' 59''",
            "gap": "+ 01h 23' 23''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5003.0,
            "times_seconds": 144059.0
        },
        {
            "index": 1548,
            "rank": 149,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "40h 01' 18''",
            "gap": "+ 01h 23' 42''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5022.0,
            "times_seconds": 144078.0
        },
        {
            "index": 1549,
            "rank": 150,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "40h 01' 27''",
            "gap": "+ 01h 23' 51''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5031.0,
            "times_seconds": 144087.0
        },
        {
            "index": 1550,
            "rank": 151,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "40h 01' 35''",
            "gap": "+ 01h 23' 59''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5039.0,
            "times_seconds": 144095.0
        },
        {
            "index": 1551,
            "rank": 152,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "40h 01' 58''",
            "gap": "+ 01h 24' 22''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5062.0,
            "times_seconds": 144118.0
        },
        {
            "index": 1552,
            "rank": 153,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "40h 02' 12''",
            "gap": "+ 01h 24' 36''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5076.0,
            "times_seconds": 144132.0
        },
        {
            "index": 1553,
            "rank": 154,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "40h 02' 39''",
            "gap": "+ 01h 25' 03''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5103.0,
            "times_seconds": 144159.0
        },
        {
            "index": 1554,
            "rank": 155,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "40h 03' 35''",
            "gap": "+ 01h 25' 59''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 9,
            "gap_seconds": 5159.0,
            "times_seconds": 144215.0
        },
        {
            "index": 1555,
            "rank": 156,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "40h 03' 47''",
            "gap": "+ 01h 26' 11''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5171.0,
            "times_seconds": 144227.0
        },
        {
            "index": 1556,
            "rank": 157,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "40h 04' 24''",
            "gap": "+ 01h 26' 48''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5208.0,
            "times_seconds": 144264.0
        },
        {
            "index": 1557,
            "rank": 158,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "40h 04' 29''",
            "gap": "+ 01h 26' 53''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5213.0,
            "times_seconds": 144269.0
        },
        {
            "index": 1558,
            "rank": 159,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "40h 05' 08''",
            "gap": "+ 01h 27' 32''",
            "b": "B : 6''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5252.0,
            "times_seconds": 144308.0
        },
        {
            "index": 1559,
            "rank": 160,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "40h 05' 41''",
            "gap": "+ 01h 28' 05''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5285.0,
            "times_seconds": 144341.0
        },
        {
            "index": 1560,
            "rank": 161,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "40h 06' 29''",
            "gap": "+ 01h 28' 53''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5333.0,
            "times_seconds": 144389.0
        },
        {
            "index": 1561,
            "rank": 162,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "40h 07' 03''",
            "gap": "+ 01h 29' 27''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5367.0,
            "times_seconds": 144423.0
        },
        {
            "index": 1562,
            "rank": 163,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "40h 07' 04''",
            "gap": "+ 01h 29' 28''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5368.0,
            "times_seconds": 144424.0
        },
        {
            "index": 1563,
            "rank": 164,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "40h 07' 38''",
            "gap": "+ 01h 30' 02''",
            "b": "B : 10''",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5402.0,
            "times_seconds": 144458.0
        },
        {
            "index": 1564,
            "rank": 165,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "40h 07' 53''",
            "gap": "+ 01h 30' 17''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5417.0,
            "times_seconds": 144473.0
        },
        {
            "index": 1565,
            "rank": 166,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "40h 08' 20''",
            "gap": "+ 01h 30' 44''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5444.0,
            "times_seconds": 144500.0
        },
        {
            "index": 1566,
            "rank": 167,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "40h 08' 38''",
            "gap": "+ 01h 31' 02''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5462.0,
            "times_seconds": 144518.0
        },
        {
            "index": 1567,
            "rank": 168,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "40h 08' 41''",
            "gap": "+ 01h 31' 05''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5465.0,
            "times_seconds": 144521.0
        },
        {
            "index": 1568,
            "rank": 169,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "40h 08' 52''",
            "gap": "+ 01h 31' 16''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5476.0,
            "times_seconds": 144532.0
        },
        {
            "index": 1569,
            "rank": 170,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "40h 11' 04''",
            "gap": "+ 01h 33' 28''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 5608.0,
            "times_seconds": 144664.0
        },
        {
            "index": 1570,
            "rank": 171,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "40h 21' 15''",
            "gap": "+ 01h 43' 39''",
            "b": "-",
            "p": "-",
            "stage": 9,
            "gap_seconds": 6219.0,
            "times_seconds": 145275.0
        },
        {
            "index": 1571,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "43h 27' 15''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 0.0,
            "times_seconds": 156435.0
        },
        {
            "index": 1572,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "43h 28' 27''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 72.0,
            "times_seconds": 156507.0
        },
        {
            "index": 1573,
            "rank": 3,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "43h 28' 31''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 76.0,
            "times_seconds": 156511.0
        },
        {
            "index": 1574,
            "rank": 4,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "43h 28' 42''",
            "gap": "+ 00h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 87.0,
            "times_seconds": 156522.0
        },
        {
            "index": 1575,
            "rank": 5,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "43h 29' 00''",
            "gap": "+ 00h 01' 45''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 105.0,
            "times_seconds": 156540.0
        },
        {
            "index": 1576,
            "rank": 6,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "43h 29' 01''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 106.0,
            "times_seconds": 156541.0
        },
        {
            "index": 1577,
            "rank": 7,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "43h 29' 02''",
            "gap": "+ 00h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 107.0,
            "times_seconds": 156542.0
        },
        {
            "index": 1578,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "43h 29' 19''",
            "gap": "+ 00h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 124.0,
            "times_seconds": 156559.0
        },
        {
            "index": 1579,
            "rank": 9,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "43h 29' 24''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 129.0,
            "times_seconds": 156564.0
        },
        {
            "index": 1580,
            "rank": 10,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "43h 29' 47''",
            "gap": "+ 00h 02' 32''",
            "b": "B : 14''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 152.0,
            "times_seconds": 156587.0
        },
        {
            "index": 1581,
            "rank": 11,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "43h 29' 48''",
            "gap": "+ 00h 02' 33''",
            "b": "B : 8''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 153.0,
            "times_seconds": 156588.0
        },
        {
            "index": 1582,
            "rank": 12,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "43h 30' 01''",
            "gap": "+ 00h 02' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 166.0,
            "times_seconds": 156601.0
        },
        {
            "index": 1583,
            "rank": 13,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "43h 30' 33''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 198.0,
            "times_seconds": 156633.0
        },
        {
            "index": 1584,
            "rank": 14,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "43h 30' 33''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 198.0,
            "times_seconds": 156633.0
        },
        {
            "index": 1585,
            "rank": 15,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "43h 30' 35''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 200.0,
            "times_seconds": 156635.0
        },
        {
            "index": 1586,
            "rank": 16,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "43h 30' 37''",
            "gap": "+ 00h 03' 22''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 202.0,
            "times_seconds": 156637.0
        },
        {
            "index": 1587,
            "rank": 17,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "43h 30' 41''",
            "gap": "+ 00h 03' 26''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 206.0,
            "times_seconds": 156641.0
        },
        {
            "index": 1588,
            "rank": 18,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "43h 30' 43''",
            "gap": "+ 00h 03' 28''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 208.0,
            "times_seconds": 156643.0
        },
        {
            "index": 1589,
            "rank": 19,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "43h 30' 57''",
            "gap": "+ 00h 03' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 222.0,
            "times_seconds": 156657.0
        },
        {
            "index": 1590,
            "rank": 20,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "43h 31' 14''",
            "gap": "+ 00h 03' 59''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 239.0,
            "times_seconds": 156674.0
        },
        {
            "index": 1591,
            "rank": 21,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "43h 31' 30''",
            "gap": "+ 00h 04' 15''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 255.0,
            "times_seconds": 156690.0
        },
        {
            "index": 1592,
            "rank": 22,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "43h 31' 40''",
            "gap": "+ 00h 04' 25''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 265.0,
            "times_seconds": 156700.0
        },
        {
            "index": 1593,
            "rank": 23,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "43h 31' 47''",
            "gap": "+ 00h 04' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 272.0,
            "times_seconds": 156707.0
        },
        {
            "index": 1594,
            "rank": 24,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "43h 31' 49''",
            "gap": "+ 00h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 274.0,
            "times_seconds": 156709.0
        },
        {
            "index": 1595,
            "rank": 25,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "43h 33' 12''",
            "gap": "+ 00h 05' 57''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 357.0,
            "times_seconds": 156792.0
        },
        {
            "index": 1596,
            "rank": 26,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "43h 33' 14''",
            "gap": "+ 00h 05' 59''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 359.0,
            "times_seconds": 156794.0
        },
        {
            "index": 1597,
            "rank": 27,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "43h 38' 16''",
            "gap": "+ 00h 11' 01''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 10,
            "gap_seconds": 661.0,
            "times_seconds": 157096.0
        },
        {
            "index": 1598,
            "rank": 28,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "43h 39' 11''",
            "gap": "+ 00h 11' 56''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 10,
            "gap_seconds": 716.0,
            "times_seconds": 157151.0
        },
        {
            "index": 1599,
            "rank": 29,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "43h 40' 02''",
            "gap": "+ 00h 12' 47''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 767.0,
            "times_seconds": 157202.0
        },
        {
            "index": 1600,
            "rank": 30,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "43h 41' 15''",
            "gap": "+ 00h 14' 00''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 840.0,
            "times_seconds": 157275.0
        },
        {
            "index": 1601,
            "rank": 31,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "43h 41' 34''",
            "gap": "+ 00h 14' 19''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 859.0,
            "times_seconds": 157294.0
        },
        {
            "index": 1602,
            "rank": 32,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "43h 41' 40''",
            "gap": "+ 00h 14' 25''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 865.0,
            "times_seconds": 157300.0
        },
        {
            "index": 1603,
            "rank": 33,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "43h 43' 57''",
            "gap": "+ 00h 16' 42''",
            "b": "B : 2''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1002.0,
            "times_seconds": 157437.0
        },
        {
            "index": 1604,
            "rank": 34,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "43h 44' 55''",
            "gap": "+ 00h 17' 40''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1060.0,
            "times_seconds": 157495.0
        },
        {
            "index": 1605,
            "rank": 35,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "43h 47' 16''",
            "gap": "+ 00h 20' 01''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1201.0,
            "times_seconds": 157636.0
        },
        {
            "index": 1606,
            "rank": 36,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "43h 48' 32''",
            "gap": "+ 00h 21' 17''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1277.0,
            "times_seconds": 157712.0
        },
        {
            "index": 1607,
            "rank": 37,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "43h 49' 53''",
            "gap": "+ 00h 22' 38''",
            "b": "B : 4''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1358.0,
            "times_seconds": 157793.0
        },
        {
            "index": 1608,
            "rank": 38,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "43h 50' 21''",
            "gap": "+ 00h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1386.0,
            "times_seconds": 157821.0
        },
        {
            "index": 1609,
            "rank": 39,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "43h 50' 23''",
            "gap": "+ 00h 23' 08''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1388.0,
            "times_seconds": 157823.0
        },
        {
            "index": 1610,
            "rank": 40,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "43h 50' 34''",
            "gap": "+ 00h 23' 19''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1399.0,
            "times_seconds": 157834.0
        },
        {
            "index": 1611,
            "rank": 41,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "43h 51' 37''",
            "gap": "+ 00h 24' 22''",
            "b": "B : 6''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1462.0,
            "times_seconds": 157897.0
        },
        {
            "index": 1612,
            "rank": 42,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "43h 52' 19''",
            "gap": "+ 00h 25' 04''",
            "b": "B : 20''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1504.0,
            "times_seconds": 157939.0
        },
        {
            "index": 1613,
            "rank": 43,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "43h 52' 28''",
            "gap": "+ 00h 25' 13''",
            "b": "B : 2''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1513.0,
            "times_seconds": 157948.0
        },
        {
            "index": 1614,
            "rank": 44,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "43h 53' 34''",
            "gap": "+ 00h 26' 19''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1579.0,
            "times_seconds": 158014.0
        },
        {
            "index": 1615,
            "rank": 45,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "43h 53' 58''",
            "gap": "+ 00h 26' 43''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1603.0,
            "times_seconds": 158038.0
        },
        {
            "index": 1616,
            "rank": 46,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "43h 54' 32''",
            "gap": "+ 00h 27' 17''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1637.0,
            "times_seconds": 158072.0
        },
        {
            "index": 1617,
            "rank": 47,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "43h 54' 41''",
            "gap": "+ 00h 27' 26''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1646.0,
            "times_seconds": 158081.0
        },
        {
            "index": 1618,
            "rank": 48,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "43h 54' 42''",
            "gap": "+ 00h 27' 27''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1647.0,
            "times_seconds": 158082.0
        },
        {
            "index": 1619,
            "rank": 49,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "43h 55' 01''",
            "gap": "+ 00h 27' 46''",
            "b": "B : 4''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1666.0,
            "times_seconds": 158101.0
        },
        {
            "index": 1620,
            "rank": 50,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "43h 57' 46''",
            "gap": "+ 00h 30' 31''",
            "b": "B : 18''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1831.0,
            "times_seconds": 158266.0
        },
        {
            "index": 1621,
            "rank": 51,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "43h 58' 16''",
            "gap": "+ 00h 31' 01''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1861.0,
            "times_seconds": 158296.0
        },
        {
            "index": 1622,
            "rank": 52,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "43h 59' 10''",
            "gap": "+ 00h 31' 55''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 1915.0,
            "times_seconds": 158350.0
        },
        {
            "index": 1623,
            "rank": 53,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "44h 01' 03''",
            "gap": "+ 00h 33' 48''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2028.0,
            "times_seconds": 158463.0
        },
        {
            "index": 1624,
            "rank": 54,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "44h 01' 14''",
            "gap": "+ 00h 33' 59''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2039.0,
            "times_seconds": 158474.0
        },
        {
            "index": 1625,
            "rank": 55,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "44h 01' 26''",
            "gap": "+ 00h 34' 11''",
            "b": "B : 16''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2051.0,
            "times_seconds": 158486.0
        },
        {
            "index": 1626,
            "rank": 56,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "44h 03' 04''",
            "gap": "+ 00h 35' 49''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2149.0,
            "times_seconds": 158584.0
        },
        {
            "index": 1627,
            "rank": 57,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "44h 03' 45''",
            "gap": "+ 00h 36' 30''",
            "b": "B : 11''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2190.0,
            "times_seconds": 158625.0
        },
        {
            "index": 1628,
            "rank": 58,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "44h 03' 57''",
            "gap": "+ 00h 36' 42''",
            "b": "B : 15''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2202.0,
            "times_seconds": 158637.0
        },
        {
            "index": 1629,
            "rank": 59,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "44h 04' 49''",
            "gap": "+ 00h 37' 34''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2254.0,
            "times_seconds": 158689.0
        },
        {
            "index": 1630,
            "rank": 60,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "44h 05' 28''",
            "gap": "+ 00h 38' 13''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2293.0,
            "times_seconds": 158728.0
        },
        {
            "index": 1631,
            "rank": 61,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "44h 06' 03''",
            "gap": "+ 00h 38' 48''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2328.0,
            "times_seconds": 158763.0
        },
        {
            "index": 1632,
            "rank": 62,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "44h 06' 21''",
            "gap": "+ 00h 39' 06''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2346.0,
            "times_seconds": 158781.0
        },
        {
            "index": 1633,
            "rank": 63,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "44h 07' 09''",
            "gap": "+ 00h 39' 54''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2394.0,
            "times_seconds": 158829.0
        },
        {
            "index": 1634,
            "rank": 64,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "44h 07' 21''",
            "gap": "+ 00h 40' 06''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2406.0,
            "times_seconds": 158841.0
        },
        {
            "index": 1635,
            "rank": 65,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "44h 07' 21''",
            "gap": "+ 00h 40' 06''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2406.0,
            "times_seconds": 158841.0
        },
        {
            "index": 1636,
            "rank": 66,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "44h 08' 43''",
            "gap": "+ 00h 41' 28''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2488.0,
            "times_seconds": 158923.0
        },
        {
            "index": 1637,
            "rank": 67,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "44h 09' 33''",
            "gap": "+ 00h 42' 18''",
            "b": "B : 18''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2538.0,
            "times_seconds": 158973.0
        },
        {
            "index": 1638,
            "rank": 68,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "44h 09' 37''",
            "gap": "+ 00h 42' 22''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2542.0,
            "times_seconds": 158977.0
        },
        {
            "index": 1639,
            "rank": 69,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "44h 09' 40''",
            "gap": "+ 00h 42' 25''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2545.0,
            "times_seconds": 158980.0
        },
        {
            "index": 1640,
            "rank": 70,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "44h 10' 09''",
            "gap": "+ 00h 42' 54''",
            "b": "B : 4''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2574.0,
            "times_seconds": 159009.0
        },
        {
            "index": 1641,
            "rank": 71,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "44h 10' 24''",
            "gap": "+ 00h 43' 09''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2589.0,
            "times_seconds": 159024.0
        },
        {
            "index": 1642,
            "rank": 72,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "44h 12' 04''",
            "gap": "+ 00h 44' 49''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2689.0,
            "times_seconds": 159124.0
        },
        {
            "index": 1643,
            "rank": 73,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "44h 12' 26''",
            "gap": "+ 00h 45' 11''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2711.0,
            "times_seconds": 159146.0
        },
        {
            "index": 1644,
            "rank": 74,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "44h 12' 46''",
            "gap": "+ 00h 45' 31''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2731.0,
            "times_seconds": 159166.0
        },
        {
            "index": 1645,
            "rank": 75,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "44h 13' 16''",
            "gap": "+ 00h 46' 01''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2761.0,
            "times_seconds": 159196.0
        },
        {
            "index": 1646,
            "rank": 76,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "44h 13' 45''",
            "gap": "+ 00h 46' 30''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 10,
            "gap_seconds": 2790.0,
            "times_seconds": 159225.0
        },
        {
            "index": 1647,
            "rank": 77,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "44h 15' 34''",
            "gap": "+ 00h 48' 19''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2899.0,
            "times_seconds": 159334.0
        },
        {
            "index": 1648,
            "rank": 78,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "44h 16' 20''",
            "gap": "+ 00h 49' 05''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2945.0,
            "times_seconds": 159380.0
        },
        {
            "index": 1649,
            "rank": 79,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "44h 16' 33''",
            "gap": "+ 00h 49' 18''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 2958.0,
            "times_seconds": 159393.0
        },
        {
            "index": 1650,
            "rank": 80,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "44h 20' 23''",
            "gap": "+ 00h 53' 08''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3188.0,
            "times_seconds": 159623.0
        },
        {
            "index": 1651,
            "rank": 81,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "44h 23' 21''",
            "gap": "+ 00h 56' 06''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3366.0,
            "times_seconds": 159801.0
        },
        {
            "index": 1652,
            "rank": 82,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "44h 23' 44''",
            "gap": "+ 00h 56' 29''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3389.0,
            "times_seconds": 159824.0
        },
        {
            "index": 1653,
            "rank": 83,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "44h 24' 47''",
            "gap": "+ 00h 57' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3452.0,
            "times_seconds": 159887.0
        },
        {
            "index": 1654,
            "rank": 84,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "44h 26' 05''",
            "gap": "+ 00h 58' 50''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3530.0,
            "times_seconds": 159965.0
        },
        {
            "index": 1655,
            "rank": 85,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "44h 27' 01''",
            "gap": "+ 00h 59' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3586.0,
            "times_seconds": 160021.0
        },
        {
            "index": 1656,
            "rank": 86,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "44h 28' 42''",
            "gap": "+ 01h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3687.0,
            "times_seconds": 160122.0
        },
        {
            "index": 1657,
            "rank": 87,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "44h 28' 53''",
            "gap": "+ 01h 01' 38''",
            "b": "B : 10''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3698.0,
            "times_seconds": 160133.0
        },
        {
            "index": 1658,
            "rank": 88,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "44h 29' 43''",
            "gap": "+ 01h 02' 28''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3748.0,
            "times_seconds": 160183.0
        },
        {
            "index": 1659,
            "rank": 89,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "44h 29' 47''",
            "gap": "+ 01h 02' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3752.0,
            "times_seconds": 160187.0
        },
        {
            "index": 1660,
            "rank": 90,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "44h 30' 04''",
            "gap": "+ 01h 02' 49''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3769.0,
            "times_seconds": 160204.0
        },
        {
            "index": 1661,
            "rank": 91,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "44h 31' 01''",
            "gap": "+ 01h 03' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3826.0,
            "times_seconds": 160261.0
        },
        {
            "index": 1662,
            "rank": 92,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "44h 31' 26''",
            "gap": "+ 01h 04' 11''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3851.0,
            "times_seconds": 160286.0
        },
        {
            "index": 1663,
            "rank": 93,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "44h 32' 03''",
            "gap": "+ 01h 04' 48''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3888.0,
            "times_seconds": 160323.0
        },
        {
            "index": 1664,
            "rank": 94,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "44h 32' 10''",
            "gap": "+ 01h 04' 55''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3895.0,
            "times_seconds": 160330.0
        },
        {
            "index": 1665,
            "rank": 95,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "44h 32' 20''",
            "gap": "+ 01h 05' 05''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3905.0,
            "times_seconds": 160340.0
        },
        {
            "index": 1666,
            "rank": 96,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "44h 32' 42''",
            "gap": "+ 01h 05' 27''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3927.0,
            "times_seconds": 160362.0
        },
        {
            "index": 1667,
            "rank": 97,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "44h 33' 17''",
            "gap": "+ 01h 06' 02''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 3962.0,
            "times_seconds": 160397.0
        },
        {
            "index": 1668,
            "rank": 98,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "44h 34' 09''",
            "gap": "+ 01h 06' 54''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4014.0,
            "times_seconds": 160449.0
        },
        {
            "index": 1669,
            "rank": 99,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "44h 34' 16''",
            "gap": "+ 01h 07' 01''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4021.0,
            "times_seconds": 160456.0
        },
        {
            "index": 1670,
            "rank": 100,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "44h 34' 20''",
            "gap": "+ 01h 07' 05''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4025.0,
            "times_seconds": 160460.0
        },
        {
            "index": 1671,
            "rank": 101,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "44h 34' 49''",
            "gap": "+ 01h 07' 34''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4054.0,
            "times_seconds": 160489.0
        },
        {
            "index": 1672,
            "rank": 102,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "44h 36' 17''",
            "gap": "+ 01h 09' 02''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4142.0,
            "times_seconds": 160577.0
        },
        {
            "index": 1673,
            "rank": 103,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "44h 36' 25''",
            "gap": "+ 01h 09' 10''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4150.0,
            "times_seconds": 160585.0
        },
        {
            "index": 1674,
            "rank": 104,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "44h 36' 29''",
            "gap": "+ 01h 09' 14''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4154.0,
            "times_seconds": 160589.0
        },
        {
            "index": 1675,
            "rank": 105,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "44h 36' 54''",
            "gap": "+ 01h 09' 39''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4179.0,
            "times_seconds": 160614.0
        },
        {
            "index": 1676,
            "rank": 106,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "44h 36' 59''",
            "gap": "+ 01h 09' 44''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4184.0,
            "times_seconds": 160619.0
        },
        {
            "index": 1677,
            "rank": 107,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "44h 37' 11''",
            "gap": "+ 01h 09' 56''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4196.0,
            "times_seconds": 160631.0
        },
        {
            "index": 1678,
            "rank": 108,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "44h 37' 22''",
            "gap": "+ 01h 10' 07''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4207.0,
            "times_seconds": 160642.0
        },
        {
            "index": 1679,
            "rank": 109,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "44h 38' 16''",
            "gap": "+ 01h 11' 01''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4261.0,
            "times_seconds": 160696.0
        },
        {
            "index": 1680,
            "rank": 110,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "44h 39' 00''",
            "gap": "+ 01h 11' 45''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4305.0,
            "times_seconds": 160740.0
        },
        {
            "index": 1681,
            "rank": 111,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "44h 40' 26''",
            "gap": "+ 01h 13' 11''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4391.0,
            "times_seconds": 160826.0
        },
        {
            "index": 1682,
            "rank": 112,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "44h 40' 28''",
            "gap": "+ 01h 13' 13''",
            "b": "B : 10''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4393.0,
            "times_seconds": 160828.0
        },
        {
            "index": 1683,
            "rank": 113,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "44h 41' 22''",
            "gap": "+ 01h 14' 07''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4447.0,
            "times_seconds": 160882.0
        },
        {
            "index": 1684,
            "rank": 114,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "44h 41' 58''",
            "gap": "+ 01h 14' 43''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4483.0,
            "times_seconds": 160918.0
        },
        {
            "index": 1685,
            "rank": 115,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "44h 42' 10''",
            "gap": "+ 01h 14' 55''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4495.0,
            "times_seconds": 160930.0
        },
        {
            "index": 1686,
            "rank": 116,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "44h 43' 30''",
            "gap": "+ 01h 16' 15''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4575.0,
            "times_seconds": 161010.0
        },
        {
            "index": 1687,
            "rank": 117,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "44h 44' 20''",
            "gap": "+ 01h 17' 05''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4625.0,
            "times_seconds": 161060.0
        },
        {
            "index": 1688,
            "rank": 118,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "44h 44' 35''",
            "gap": "+ 01h 17' 20''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4640.0,
            "times_seconds": 161075.0
        },
        {
            "index": 1689,
            "rank": 119,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "44h 45' 06''",
            "gap": "+ 01h 17' 51''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 10,
            "gap_seconds": 4671.0,
            "times_seconds": 161106.0
        },
        {
            "index": 1690,
            "rank": 120,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "44h 45' 26''",
            "gap": "+ 01h 18' 11''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4691.0,
            "times_seconds": 161126.0
        },
        {
            "index": 1691,
            "rank": 121,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "44h 45' 44''",
            "gap": "+ 01h 18' 29''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4709.0,
            "times_seconds": 161144.0
        },
        {
            "index": 1692,
            "rank": 122,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "44h 46' 12''",
            "gap": "+ 01h 18' 57''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4737.0,
            "times_seconds": 161172.0
        },
        {
            "index": 1693,
            "rank": 123,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "44h 46' 47''",
            "gap": "+ 01h 19' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4772.0,
            "times_seconds": 161207.0
        },
        {
            "index": 1694,
            "rank": 124,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "44h 47' 21''",
            "gap": "+ 01h 20' 06''",
            "b": "B : 16''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4806.0,
            "times_seconds": 161241.0
        },
        {
            "index": 1695,
            "rank": 125,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "44h 47' 35''",
            "gap": "+ 01h 20' 20''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4820.0,
            "times_seconds": 161255.0
        },
        {
            "index": 1696,
            "rank": 126,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "44h 48' 14''",
            "gap": "+ 01h 20' 59''",
            "b": "B : 18''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4859.0,
            "times_seconds": 161294.0
        },
        {
            "index": 1697,
            "rank": 127,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "44h 48' 59''",
            "gap": "+ 01h 21' 44''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4904.0,
            "times_seconds": 161339.0
        },
        {
            "index": 1698,
            "rank": 128,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "44h 49' 15''",
            "gap": "+ 01h 22' 00''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4920.0,
            "times_seconds": 161355.0
        },
        {
            "index": 1699,
            "rank": 129,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "44h 50' 00''",
            "gap": "+ 01h 22' 45''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4965.0,
            "times_seconds": 161400.0
        },
        {
            "index": 1700,
            "rank": 130,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "44h 50' 00''",
            "gap": "+ 01h 22' 45''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 4965.0,
            "times_seconds": 161400.0
        },
        {
            "index": 1701,
            "rank": 131,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "44h 51' 41''",
            "gap": "+ 01h 24' 26''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5066.0,
            "times_seconds": 161501.0
        },
        {
            "index": 1702,
            "rank": 132,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "44h 51' 52''",
            "gap": "+ 01h 24' 37''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5077.0,
            "times_seconds": 161512.0
        },
        {
            "index": 1703,
            "rank": 133,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "44h 51' 52''",
            "gap": "+ 01h 24' 37''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5077.0,
            "times_seconds": 161512.0
        },
        {
            "index": 1704,
            "rank": 134,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "44h 52' 44''",
            "gap": "+ 01h 25' 29''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5129.0,
            "times_seconds": 161564.0
        },
        {
            "index": 1705,
            "rank": 135,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "44h 53' 08''",
            "gap": "+ 01h 25' 53''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5153.0,
            "times_seconds": 161588.0
        },
        {
            "index": 1706,
            "rank": 136,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "44h 55' 06''",
            "gap": "+ 01h 27' 51''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5271.0,
            "times_seconds": 161706.0
        },
        {
            "index": 1707,
            "rank": 137,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "44h 55' 23''",
            "gap": "+ 01h 28' 08''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 10,
            "gap_seconds": 5288.0,
            "times_seconds": 161723.0
        },
        {
            "index": 1708,
            "rank": 138,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "44h 56' 08''",
            "gap": "+ 01h 28' 53''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5333.0,
            "times_seconds": 161768.0
        },
        {
            "index": 1709,
            "rank": 139,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "44h 56' 15''",
            "gap": "+ 01h 29' 00''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5340.0,
            "times_seconds": 161775.0
        },
        {
            "index": 1710,
            "rank": 140,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "44h 56' 35''",
            "gap": "+ 01h 29' 20''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5360.0,
            "times_seconds": 161795.0
        },
        {
            "index": 1711,
            "rank": 141,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "44h 56' 52''",
            "gap": "+ 01h 29' 37''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5377.0,
            "times_seconds": 161812.0
        },
        {
            "index": 1712,
            "rank": 142,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "44h 57' 06''",
            "gap": "+ 01h 29' 51''",
            "b": "B : 6''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5391.0,
            "times_seconds": 161826.0
        },
        {
            "index": 1713,
            "rank": 143,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "44h 57' 12''",
            "gap": "+ 01h 29' 57''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5397.0,
            "times_seconds": 161832.0
        },
        {
            "index": 1714,
            "rank": 144,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "44h 57' 47''",
            "gap": "+ 01h 30' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5432.0,
            "times_seconds": 161867.0
        },
        {
            "index": 1715,
            "rank": 145,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "44h 57' 52''",
            "gap": "+ 01h 30' 37''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5437.0,
            "times_seconds": 161872.0
        },
        {
            "index": 1716,
            "rank": 146,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "44h 58' 17''",
            "gap": "+ 01h 31' 02''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5462.0,
            "times_seconds": 161897.0
        },
        {
            "index": 1717,
            "rank": 147,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "44h 58' 20''",
            "gap": "+ 01h 31' 05''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5465.0,
            "times_seconds": 161900.0
        },
        {
            "index": 1718,
            "rank": 148,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "44h 58' 32''",
            "gap": "+ 01h 31' 17''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5477.0,
            "times_seconds": 161912.0
        },
        {
            "index": 1719,
            "rank": 149,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "44h 58' 44''",
            "gap": "+ 01h 31' 29''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5489.0,
            "times_seconds": 161924.0
        },
        {
            "index": 1720,
            "rank": 150,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "44h 58' 51''",
            "gap": "+ 01h 31' 36''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5496.0,
            "times_seconds": 161931.0
        },
        {
            "index": 1721,
            "rank": 151,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "44h 59' 23''",
            "gap": "+ 01h 32' 08''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5528.0,
            "times_seconds": 161963.0
        },
        {
            "index": 1722,
            "rank": 152,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "44h 59' 30''",
            "gap": "+ 01h 32' 15''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5535.0,
            "times_seconds": 161970.0
        },
        {
            "index": 1723,
            "rank": 153,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "44h 59' 52''",
            "gap": "+ 01h 32' 37''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5557.0,
            "times_seconds": 161992.0
        },
        {
            "index": 1724,
            "rank": 154,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "45h 00' 19''",
            "gap": "+ 01h 33' 04''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5584.0,
            "times_seconds": 162019.0
        },
        {
            "index": 1725,
            "rank": 155,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "45h 00' 38''",
            "gap": "+ 01h 33' 23''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5603.0,
            "times_seconds": 162038.0
        },
        {
            "index": 1726,
            "rank": 156,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "45h 00' 47''",
            "gap": "+ 01h 33' 32''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5612.0,
            "times_seconds": 162047.0
        },
        {
            "index": 1727,
            "rank": 157,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "45h 00' 55''",
            "gap": "+ 01h 33' 40''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5620.0,
            "times_seconds": 162055.0
        },
        {
            "index": 1728,
            "rank": 158,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "45h 01' 18''",
            "gap": "+ 01h 34' 03''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5643.0,
            "times_seconds": 162078.0
        },
        {
            "index": 1729,
            "rank": 159,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "45h 01' 32''",
            "gap": "+ 01h 34' 17''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5657.0,
            "times_seconds": 162092.0
        },
        {
            "index": 1730,
            "rank": 160,
            "rider": "Niki Terpstra",
            "rider no.": 177,
            "team": "Total Direct Energie",
            "times": "45h 01' 59''",
            "gap": "+ 01h 34' 44''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5684.0,
            "times_seconds": 162119.0
        },
        {
            "index": 1731,
            "rank": 161,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "45h 03' 07''",
            "gap": "+ 01h 35' 52''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5752.0,
            "times_seconds": 162187.0
        },
        {
            "index": 1732,
            "rank": 162,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "45h 03' 44''",
            "gap": "+ 01h 36' 29''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5789.0,
            "times_seconds": 162224.0
        },
        {
            "index": 1733,
            "rank": 163,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "45h 05' 01''",
            "gap": "+ 01h 37' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5866.0,
            "times_seconds": 162301.0
        },
        {
            "index": 1734,
            "rank": 164,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "45h 06' 58''",
            "gap": "+ 01h 39' 43''",
            "b": "B : 10''",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5983.0,
            "times_seconds": 162418.0
        },
        {
            "index": 1735,
            "rank": 165,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "45h 07' 13''",
            "gap": "+ 01h 39' 58''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 5998.0,
            "times_seconds": 162433.0
        },
        {
            "index": 1736,
            "rank": 166,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "45h 07' 40''",
            "gap": "+ 01h 40' 25''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 6025.0,
            "times_seconds": 162460.0
        },
        {
            "index": 1737,
            "rank": 167,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "45h 08' 01''",
            "gap": "+ 01h 40' 46''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 6046.0,
            "times_seconds": 162481.0
        },
        {
            "index": 1738,
            "rank": 168,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "45h 08' 12''",
            "gap": "+ 01h 40' 57''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 6057.0,
            "times_seconds": 162492.0
        },
        {
            "index": 1739,
            "rank": 169,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "45h 10' 24''",
            "gap": "+ 01h 43' 09''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 6189.0,
            "times_seconds": 162624.0
        },
        {
            "index": 1740,
            "rank": 170,
            "rider": "Rick Zabel",
            "rider no.": 188,
            "team": "Team Katusha Alpecin",
            "times": "45h 11' 26''",
            "gap": "+ 01h 44' 11''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 6251.0,
            "times_seconds": 162686.0
        },
        {
            "index": 1741,
            "rank": 171,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "45h 31' 56''",
            "gap": "+ 02h 04' 41''",
            "b": "-",
            "p": "-",
            "stage": 10,
            "gap_seconds": 7481.0,
            "times_seconds": 163916.0
        },
        {
            "index": 1742,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "47h 18' 41''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 0.0,
            "times_seconds": 170321.0
        },
        {
            "index": 1743,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "47h 19' 53''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 72.0,
            "times_seconds": 170393.0
        },
        {
            "index": 1744,
            "rank": 3,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "47h 19' 57''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 76.0,
            "times_seconds": 170397.0
        },
        {
            "index": 1745,
            "rank": 4,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "47h 20' 08''",
            "gap": "+ 00h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 87.0,
            "times_seconds": 170408.0
        },
        {
            "index": 1746,
            "rank": 5,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "47h 20' 26''",
            "gap": "+ 00h 01' 45''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 105.0,
            "times_seconds": 170426.0
        },
        {
            "index": 1747,
            "rank": 6,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "47h 20' 27''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 106.0,
            "times_seconds": 170427.0
        },
        {
            "index": 1748,
            "rank": 7,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "47h 20' 28''",
            "gap": "+ 00h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 107.0,
            "times_seconds": 170428.0
        },
        {
            "index": 1749,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "47h 20' 45''",
            "gap": "+ 00h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 124.0,
            "times_seconds": 170445.0
        },
        {
            "index": 1750,
            "rank": 9,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "47h 20' 50''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 129.0,
            "times_seconds": 170450.0
        },
        {
            "index": 1751,
            "rank": 10,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "47h 21' 14''",
            "gap": "+ 00h 02' 33''",
            "b": "B : 8''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 153.0,
            "times_seconds": 170474.0
        },
        {
            "index": 1752,
            "rank": 11,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "47h 21' 27''",
            "gap": "+ 00h 02' 46''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 166.0,
            "times_seconds": 170487.0
        },
        {
            "index": 1753,
            "rank": 12,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "47h 21' 59''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 198.0,
            "times_seconds": 170519.0
        },
        {
            "index": 1754,
            "rank": 13,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "47h 21' 59''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 198.0,
            "times_seconds": 170519.0
        },
        {
            "index": 1755,
            "rank": 14,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "47h 22' 01''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 200.0,
            "times_seconds": 170521.0
        },
        {
            "index": 1756,
            "rank": 15,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "47h 22' 03''",
            "gap": "+ 00h 03' 22''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 202.0,
            "times_seconds": 170523.0
        },
        {
            "index": 1757,
            "rank": 16,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "47h 22' 07''",
            "gap": "+ 00h 03' 26''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 206.0,
            "times_seconds": 170527.0
        },
        {
            "index": 1758,
            "rank": 17,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "47h 22' 09''",
            "gap": "+ 00h 03' 28''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 208.0,
            "times_seconds": 170529.0
        },
        {
            "index": 1759,
            "rank": 18,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "47h 22' 23''",
            "gap": "+ 00h 03' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 222.0,
            "times_seconds": 170543.0
        },
        {
            "index": 1760,
            "rank": 19,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "47h 22' 40''",
            "gap": "+ 00h 03' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 239.0,
            "times_seconds": 170560.0
        },
        {
            "index": 1761,
            "rank": 20,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "47h 22' 56''",
            "gap": "+ 00h 04' 15''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 255.0,
            "times_seconds": 170576.0
        },
        {
            "index": 1762,
            "rank": 21,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "47h 23' 06''",
            "gap": "+ 00h 04' 25''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 265.0,
            "times_seconds": 170586.0
        },
        {
            "index": 1763,
            "rank": 22,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "47h 23' 13''",
            "gap": "+ 00h 04' 32''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 272.0,
            "times_seconds": 170593.0
        },
        {
            "index": 1764,
            "rank": 23,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "47h 23' 15''",
            "gap": "+ 00h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 274.0,
            "times_seconds": 170595.0
        },
        {
            "index": 1765,
            "rank": 24,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "47h 24' 38''",
            "gap": "+ 00h 05' 57''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 357.0,
            "times_seconds": 170678.0
        },
        {
            "index": 1766,
            "rank": 25,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "47h 24' 40''",
            "gap": "+ 00h 05' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 359.0,
            "times_seconds": 170680.0
        },
        {
            "index": 1767,
            "rank": 26,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "47h 30' 01''",
            "gap": "+ 00h 11' 20''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 11,
            "gap_seconds": 680.0,
            "times_seconds": 171001.0
        },
        {
            "index": 1768,
            "rank": 27,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "47h 31' 28''",
            "gap": "+ 00h 12' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 767.0,
            "times_seconds": 171088.0
        },
        {
            "index": 1769,
            "rank": 28,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "47h 33' 06''",
            "gap": "+ 00h 14' 25''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 865.0,
            "times_seconds": 171186.0
        },
        {
            "index": 1770,
            "rank": 29,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "47h 33' 16''",
            "gap": "+ 00h 14' 35''",
            "b": "B : 14''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 875.0,
            "times_seconds": 171196.0
        },
        {
            "index": 1771,
            "rank": 30,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "47h 33' 17''",
            "gap": "+ 00h 14' 36''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 11,
            "gap_seconds": 876.0,
            "times_seconds": 171197.0
        },
        {
            "index": 1772,
            "rank": 31,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "47h 35' 21''",
            "gap": "+ 00h 16' 40''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1000.0,
            "times_seconds": 171321.0
        },
        {
            "index": 1773,
            "rank": 32,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "47h 36' 38''",
            "gap": "+ 00h 17' 57''",
            "b": "B : 2''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1077.0,
            "times_seconds": 171398.0
        },
        {
            "index": 1774,
            "rank": 33,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "47h 36' 40''",
            "gap": "+ 00h 17' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1079.0,
            "times_seconds": 171400.0
        },
        {
            "index": 1775,
            "rank": 34,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "47h 39' 58''",
            "gap": "+ 00h 21' 17''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1277.0,
            "times_seconds": 171598.0
        },
        {
            "index": 1776,
            "rank": 35,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "47h 41' 22''",
            "gap": "+ 00h 22' 41''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1361.0,
            "times_seconds": 171682.0
        },
        {
            "index": 1777,
            "rank": 36,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "47h 41' 33''",
            "gap": "+ 00h 22' 52''",
            "b": "B : 4''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1372.0,
            "times_seconds": 171693.0
        },
        {
            "index": 1778,
            "rank": 37,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "47h 41' 47''",
            "gap": "+ 00h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1386.0,
            "times_seconds": 171707.0
        },
        {
            "index": 1779,
            "rank": 38,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "47h 41' 49''",
            "gap": "+ 00h 23' 08''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1388.0,
            "times_seconds": 171709.0
        },
        {
            "index": 1780,
            "rank": 39,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "47h 43' 34''",
            "gap": "+ 00h 24' 53''",
            "b": "B : 6''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1493.0,
            "times_seconds": 171814.0
        },
        {
            "index": 1781,
            "rank": 40,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "47h 43' 45''",
            "gap": "+ 00h 25' 04''",
            "b": "B : 20''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1504.0,
            "times_seconds": 171825.0
        },
        {
            "index": 1782,
            "rank": 41,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "47h 43' 51''",
            "gap": "+ 00h 25' 10''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1510.0,
            "times_seconds": 171831.0
        },
        {
            "index": 1783,
            "rank": 42,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "47h 44' 40''",
            "gap": "+ 00h 25' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1559.0,
            "times_seconds": 171880.0
        },
        {
            "index": 1784,
            "rank": 43,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "47h 45' 24''",
            "gap": "+ 00h 26' 43''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1603.0,
            "times_seconds": 171924.0
        },
        {
            "index": 1785,
            "rank": 44,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "47h 46' 27''",
            "gap": "+ 00h 27' 46''",
            "b": "B : 4''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1666.0,
            "times_seconds": 171987.0
        },
        {
            "index": 1786,
            "rank": 45,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "47h 47' 40''",
            "gap": "+ 00h 28' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1739.0,
            "times_seconds": 172060.0
        },
        {
            "index": 1787,
            "rank": 46,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "47h 48' 47''",
            "gap": "+ 00h 30' 06''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1806.0,
            "times_seconds": 172127.0
        },
        {
            "index": 1788,
            "rank": 47,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "47h 48' 48''",
            "gap": "+ 00h 30' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1807.0,
            "times_seconds": 172128.0
        },
        {
            "index": 1789,
            "rank": 48,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "47h 49' 12''",
            "gap": "+ 00h 30' 31''",
            "b": "B : 18''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1831.0,
            "times_seconds": 172152.0
        },
        {
            "index": 1790,
            "rank": 49,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "47h 49' 35''",
            "gap": "+ 00h 30' 54''",
            "b": "B : 2''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1854.0,
            "times_seconds": 172175.0
        },
        {
            "index": 1791,
            "rank": 50,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "47h 51' 39''",
            "gap": "+ 00h 32' 58''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 1978.0,
            "times_seconds": 172299.0
        },
        {
            "index": 1792,
            "rank": 51,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "47h 52' 29''",
            "gap": "+ 00h 33' 48''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2028.0,
            "times_seconds": 172349.0
        },
        {
            "index": 1793,
            "rank": 52,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "47h 52' 40''",
            "gap": "+ 00h 33' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2039.0,
            "times_seconds": 172360.0
        },
        {
            "index": 1794,
            "rank": 53,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "47h 53' 16''",
            "gap": "+ 00h 34' 35''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2075.0,
            "times_seconds": 172396.0
        },
        {
            "index": 1795,
            "rank": 54,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "47h 53' 33''",
            "gap": "+ 00h 34' 52''",
            "b": "B : 16''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2092.0,
            "times_seconds": 172413.0
        },
        {
            "index": 1796,
            "rank": 55,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "47h 53' 40''",
            "gap": "+ 00h 34' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2099.0,
            "times_seconds": 172420.0
        },
        {
            "index": 1797,
            "rank": 56,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "47h 56' 15''",
            "gap": "+ 00h 37' 34''",
            "b": "B : 15''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2254.0,
            "times_seconds": 172575.0
        },
        {
            "index": 1798,
            "rank": 57,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "47h 56' 45''",
            "gap": "+ 00h 38' 04''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2284.0,
            "times_seconds": 172605.0
        },
        {
            "index": 1799,
            "rank": 58,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "47h 56' 54''",
            "gap": "+ 00h 38' 13''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2293.0,
            "times_seconds": 172614.0
        },
        {
            "index": 1800,
            "rank": 59,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "47h 57' 30''",
            "gap": "+ 00h 38' 49''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2329.0,
            "times_seconds": 172650.0
        },
        {
            "index": 1801,
            "rank": 60,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "47h 57' 47''",
            "gap": "+ 00h 39' 06''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2346.0,
            "times_seconds": 172667.0
        },
        {
            "index": 1802,
            "rank": 61,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "47h 57' 48''",
            "gap": "+ 00h 39' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2347.0,
            "times_seconds": 172668.0
        },
        {
            "index": 1803,
            "rank": 62,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "47h 58' 35''",
            "gap": "+ 00h 39' 54''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2394.0,
            "times_seconds": 172715.0
        },
        {
            "index": 1804,
            "rank": 63,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "47h 59' 18''",
            "gap": "+ 00h 40' 37''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2437.0,
            "times_seconds": 172758.0
        },
        {
            "index": 1805,
            "rank": 64,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "47h 59' 28''",
            "gap": "+ 00h 40' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2447.0,
            "times_seconds": 172768.0
        },
        {
            "index": 1806,
            "rank": 65,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "48h 00' 09''",
            "gap": "+ 00h 41' 28''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2488.0,
            "times_seconds": 172809.0
        },
        {
            "index": 1807,
            "rank": 66,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "48h 00' 52''",
            "gap": "+ 00h 42' 11''",
            "b": "B : 11''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2531.0,
            "times_seconds": 172852.0
        },
        {
            "index": 1808,
            "rank": 67,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "48h 03' 32''",
            "gap": "+ 00h 44' 51''",
            "b": "B : 4''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2691.0,
            "times_seconds": 173012.0
        },
        {
            "index": 1809,
            "rank": 68,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "48h 03' 39''",
            "gap": "+ 00h 44' 58''",
            "b": "B : 18''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2698.0,
            "times_seconds": 173019.0
        },
        {
            "index": 1810,
            "rank": 69,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "48h 03' 46''",
            "gap": "+ 00h 45' 05''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2705.0,
            "times_seconds": 173026.0
        },
        {
            "index": 1811,
            "rank": 70,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "48h 04' 12''",
            "gap": "+ 00h 45' 31''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2731.0,
            "times_seconds": 173052.0
        },
        {
            "index": 1812,
            "rank": 71,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "48h 04' 30''",
            "gap": "+ 00h 45' 49''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2749.0,
            "times_seconds": 173070.0
        },
        {
            "index": 1813,
            "rank": 72,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "48h 05' 11''",
            "gap": "+ 00h 46' 30''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 11,
            "gap_seconds": 2790.0,
            "times_seconds": 173111.0
        },
        {
            "index": 1814,
            "rank": 73,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "48h 05' 13''",
            "gap": "+ 00h 46' 32''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2792.0,
            "times_seconds": 173113.0
        },
        {
            "index": 1815,
            "rank": 74,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "48h 06' 10''",
            "gap": "+ 00h 47' 29''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2849.0,
            "times_seconds": 173170.0
        },
        {
            "index": 1816,
            "rank": 75,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "48h 06' 32''",
            "gap": "+ 00h 47' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2871.0,
            "times_seconds": 173192.0
        },
        {
            "index": 1817,
            "rank": 76,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "48h 06' 44''",
            "gap": "+ 00h 48' 03''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2883.0,
            "times_seconds": 173204.0
        },
        {
            "index": 1818,
            "rank": 77,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "48h 07' 59''",
            "gap": "+ 00h 49' 18''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 2958.0,
            "times_seconds": 173279.0
        },
        {
            "index": 1819,
            "rank": 78,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "48h 09' 40''",
            "gap": "+ 00h 50' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3059.0,
            "times_seconds": 173380.0
        },
        {
            "index": 1820,
            "rank": 79,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "48h 10' 01''",
            "gap": "+ 00h 51' 20''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3080.0,
            "times_seconds": 173401.0
        },
        {
            "index": 1821,
            "rank": 80,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "48h 11' 49''",
            "gap": "+ 00h 53' 08''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3188.0,
            "times_seconds": 173509.0
        },
        {
            "index": 1822,
            "rank": 81,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "48h 15' 28''",
            "gap": "+ 00h 56' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3407.0,
            "times_seconds": 173728.0
        },
        {
            "index": 1823,
            "rank": 82,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "48h 16' 32''",
            "gap": "+ 00h 57' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3471.0,
            "times_seconds": 173792.0
        },
        {
            "index": 1824,
            "rank": 83,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "48h 17' 50''",
            "gap": "+ 00h 59' 09''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3549.0,
            "times_seconds": 173870.0
        },
        {
            "index": 1825,
            "rank": 84,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "48h 18' 27''",
            "gap": "+ 00h 59' 46''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3586.0,
            "times_seconds": 173907.0
        },
        {
            "index": 1826,
            "rank": 85,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "48h 21' 07''",
            "gap": "+ 01h 02' 26''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3746.0,
            "times_seconds": 174067.0
        },
        {
            "index": 1827,
            "rank": 86,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "48h 21' 28''",
            "gap": "+ 01h 02' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3767.0,
            "times_seconds": 174088.0
        },
        {
            "index": 1828,
            "rank": 87,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "48h 22' 11''",
            "gap": "+ 01h 03' 30''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3810.0,
            "times_seconds": 174131.0
        },
        {
            "index": 1829,
            "rank": 88,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "48h 22' 44''",
            "gap": "+ 01h 04' 03''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3843.0,
            "times_seconds": 174164.0
        },
        {
            "index": 1830,
            "rank": 89,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "48h 22' 59''",
            "gap": "+ 01h 04' 18''",
            "b": "B : 10''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3858.0,
            "times_seconds": 174179.0
        },
        {
            "index": 1831,
            "rank": 90,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "48h 23' 53''",
            "gap": "+ 01h 05' 12''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3912.0,
            "times_seconds": 174233.0
        },
        {
            "index": 1832,
            "rank": 91,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "48h 24' 00''",
            "gap": "+ 01h 05' 19''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3919.0,
            "times_seconds": 174240.0
        },
        {
            "index": 1833,
            "rank": 92,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "48h 24' 10''",
            "gap": "+ 01h 05' 29''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3929.0,
            "times_seconds": 174250.0
        },
        {
            "index": 1834,
            "rank": 93,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "48h 25' 14''",
            "gap": "+ 01h 06' 33''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 3993.0,
            "times_seconds": 174314.0
        },
        {
            "index": 1835,
            "rank": 94,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "48h 25' 32''",
            "gap": "+ 01h 06' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4011.0,
            "times_seconds": 174332.0
        },
        {
            "index": 1836,
            "rank": 95,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "48h 25' 46''",
            "gap": "+ 01h 07' 05''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4025.0,
            "times_seconds": 174346.0
        },
        {
            "index": 1837,
            "rank": 96,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "48h 26' 48''",
            "gap": "+ 01h 08' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4087.0,
            "times_seconds": 174408.0
        },
        {
            "index": 1838,
            "rank": 97,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "48h 27' 00''",
            "gap": "+ 01h 08' 19''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4099.0,
            "times_seconds": 174420.0
        },
        {
            "index": 1839,
            "rank": 98,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "48h 27' 01''",
            "gap": "+ 01h 08' 20''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4100.0,
            "times_seconds": 174421.0
        },
        {
            "index": 1840,
            "rank": 99,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "48h 28' 15''",
            "gap": "+ 01h 09' 34''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4174.0,
            "times_seconds": 174495.0
        },
        {
            "index": 1841,
            "rank": 100,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "48h 28' 51''",
            "gap": "+ 01h 10' 10''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4210.0,
            "times_seconds": 174531.0
        },
        {
            "index": 1842,
            "rank": 101,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "48h 28' 55''",
            "gap": "+ 01h 10' 14''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4214.0,
            "times_seconds": 174535.0
        },
        {
            "index": 1843,
            "rank": 102,
            "rider": "Rohan Dennis",
            "rider no.": 44,
            "team": "Bahrain - Merida",
            "times": "48h 29' 27''",
            "gap": "+ 01h 10' 46''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4246.0,
            "times_seconds": 174567.0
        },
        {
            "index": 1844,
            "rank": 103,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "48h 29' 45''",
            "gap": "+ 01h 11' 04''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4264.0,
            "times_seconds": 174585.0
        },
        {
            "index": 1845,
            "rank": 104,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "48h 30' 26''",
            "gap": "+ 01h 11' 45''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4305.0,
            "times_seconds": 174626.0
        },
        {
            "index": 1846,
            "rank": 105,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "48h 30' 31''",
            "gap": "+ 01h 11' 50''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4310.0,
            "times_seconds": 174631.0
        },
        {
            "index": 1847,
            "rank": 106,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "48h 30' 35''",
            "gap": "+ 01h 11' 54''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4314.0,
            "times_seconds": 174635.0
        },
        {
            "index": 1848,
            "rank": 107,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "48h 30' 46''",
            "gap": "+ 01h 12' 05''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4325.0,
            "times_seconds": 174646.0
        },
        {
            "index": 1849,
            "rank": 108,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "48h 31' 28''",
            "gap": "+ 01h 12' 47''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4367.0,
            "times_seconds": 174688.0
        },
        {
            "index": 1850,
            "rank": 109,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "48h 31' 54''",
            "gap": "+ 01h 13' 13''",
            "b": "B : 10''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4393.0,
            "times_seconds": 174714.0
        },
        {
            "index": 1851,
            "rank": 110,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "48h 32' 48''",
            "gap": "+ 01h 14' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4447.0,
            "times_seconds": 174768.0
        },
        {
            "index": 1852,
            "rank": 111,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 33' 00''",
            "gap": "+ 01h 14' 19''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4459.0,
            "times_seconds": 174780.0
        },
        {
            "index": 1853,
            "rank": 112,
            "rider": "Jasper Philipsen",
            "rider no.": 128,
            "team": "Uae Team Emirates",
            "times": "48h 33' 24''",
            "gap": "+ 01h 14' 43''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4483.0,
            "times_seconds": 174804.0
        },
        {
            "index": 1854,
            "rank": 113,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "48h 33' 40''",
            "gap": "+ 01h 14' 59''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4499.0,
            "times_seconds": 174820.0
        },
        {
            "index": 1855,
            "rank": 114,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "48h 34' 32''",
            "gap": "+ 01h 15' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4551.0,
            "times_seconds": 174872.0
        },
        {
            "index": 1856,
            "rank": 115,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "48h 35' 53''",
            "gap": "+ 01h 17' 12''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4632.0,
            "times_seconds": 174953.0
        },
        {
            "index": 1857,
            "rank": 116,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "48h 36' 17''",
            "gap": "+ 01h 17' 36''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4656.0,
            "times_seconds": 174977.0
        },
        {
            "index": 1858,
            "rank": 117,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "48h 37' 41''",
            "gap": "+ 01h 19' 00''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4740.0,
            "times_seconds": 175061.0
        },
        {
            "index": 1859,
            "rank": 118,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "48h 37' 52''",
            "gap": "+ 01h 19' 11''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4751.0,
            "times_seconds": 175072.0
        },
        {
            "index": 1860,
            "rank": 119,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 38' 43''",
            "gap": "+ 01h 20' 02''",
            "b": "B : 20''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4802.0,
            "times_seconds": 175123.0
        },
        {
            "index": 1861,
            "rank": 120,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "48h 38' 54''",
            "gap": "+ 01h 20' 13''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4813.0,
            "times_seconds": 175134.0
        },
        {
            "index": 1862,
            "rank": 121,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "48h 39' 30''",
            "gap": "+ 01h 20' 49''",
            "b": "B : 28''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4849.0,
            "times_seconds": 175170.0
        },
        {
            "index": 1863,
            "rank": 122,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 40' 34''",
            "gap": "+ 01h 21' 53''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 11,
            "gap_seconds": 4913.0,
            "times_seconds": 175234.0
        },
        {
            "index": 1864,
            "rank": 123,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "48h 40' 53''",
            "gap": "+ 01h 22' 12''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4932.0,
            "times_seconds": 175253.0
        },
        {
            "index": 1865,
            "rank": 124,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "48h 41' 12''",
            "gap": "+ 01h 22' 31''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 4951.0,
            "times_seconds": 175272.0
        },
        {
            "index": 1866,
            "rank": 125,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "48h 42' 17''",
            "gap": "+ 01h 23' 36''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5016.0,
            "times_seconds": 175337.0
        },
        {
            "index": 1867,
            "rank": 126,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "48h 42' 33''",
            "gap": "+ 01h 23' 52''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5032.0,
            "times_seconds": 175353.0
        },
        {
            "index": 1868,
            "rank": 127,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "48h 42' 59''",
            "gap": "+ 01h 24' 18''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5058.0,
            "times_seconds": 175379.0
        },
        {
            "index": 1869,
            "rank": 128,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "48h 43' 32''",
            "gap": "+ 01h 24' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5091.0,
            "times_seconds": 175412.0
        },
        {
            "index": 1870,
            "rank": 129,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "48h 44' 23''",
            "gap": "+ 01h 25' 42''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5142.0,
            "times_seconds": 175463.0
        },
        {
            "index": 1871,
            "rank": 130,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "48h 45' 30''",
            "gap": "+ 01h 26' 49''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5209.0,
            "times_seconds": 175530.0
        },
        {
            "index": 1872,
            "rank": 131,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "48h 46' 46''",
            "gap": "+ 01h 28' 05''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5285.0,
            "times_seconds": 175606.0
        },
        {
            "index": 1873,
            "rank": 132,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "48h 46' 49''",
            "gap": "+ 01h 28' 08''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5288.0,
            "times_seconds": 175609.0
        },
        {
            "index": 1874,
            "rank": 133,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "48h 47' 15''",
            "gap": "+ 01h 28' 34''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5314.0,
            "times_seconds": 175635.0
        },
        {
            "index": 1875,
            "rank": 134,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "48h 47' 34''",
            "gap": "+ 01h 28' 53''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5333.0,
            "times_seconds": 175654.0
        },
        {
            "index": 1876,
            "rank": 135,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "48h 48' 32''",
            "gap": "+ 01h 29' 51''",
            "b": "B : 6''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5391.0,
            "times_seconds": 175712.0
        },
        {
            "index": 1877,
            "rank": 136,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "48h 48' 48''",
            "gap": "+ 01h 30' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5407.0,
            "times_seconds": 175728.0
        },
        {
            "index": 1878,
            "rank": 137,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "48h 49' 10''",
            "gap": "+ 01h 30' 29''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 11,
            "gap_seconds": 5429.0,
            "times_seconds": 175750.0
        },
        {
            "index": 1879,
            "rank": 138,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "48h 49' 32''",
            "gap": "+ 01h 30' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5451.0,
            "times_seconds": 175772.0
        },
        {
            "index": 1880,
            "rank": 139,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "48h 49' 35''",
            "gap": "+ 01h 30' 54''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5454.0,
            "times_seconds": 175775.0
        },
        {
            "index": 1881,
            "rank": 140,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "48h 49' 36''",
            "gap": "+ 01h 30' 55''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5455.0,
            "times_seconds": 175776.0
        },
        {
            "index": 1882,
            "rank": 141,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "48h 49' 39''",
            "gap": "+ 01h 30' 58''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5458.0,
            "times_seconds": 175779.0
        },
        {
            "index": 1883,
            "rank": 142,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 49' 43''",
            "gap": "+ 01h 31' 02''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5462.0,
            "times_seconds": 175783.0
        },
        {
            "index": 1884,
            "rank": 143,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "48h 51' 03''",
            "gap": "+ 01h 32' 22''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5542.0,
            "times_seconds": 175863.0
        },
        {
            "index": 1885,
            "rank": 144,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "48h 51' 49''",
            "gap": "+ 01h 33' 08''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5588.0,
            "times_seconds": 175909.0
        },
        {
            "index": 1886,
            "rank": 145,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "48h 52' 01''",
            "gap": "+ 01h 33' 20''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5600.0,
            "times_seconds": 175921.0
        },
        {
            "index": 1887,
            "rank": 146,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "48h 52' 13''",
            "gap": "+ 01h 33' 32''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5612.0,
            "times_seconds": 175933.0
        },
        {
            "index": 1888,
            "rank": 147,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "48h 52' 38''",
            "gap": "+ 01h 33' 57''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5637.0,
            "times_seconds": 175958.0
        },
        {
            "index": 1889,
            "rank": 148,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "48h 52' 44''",
            "gap": "+ 01h 34' 03''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5643.0,
            "times_seconds": 175964.0
        },
        {
            "index": 1890,
            "rank": 149,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "48h 53' 10''",
            "gap": "+ 01h 34' 29''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5669.0,
            "times_seconds": 175990.0
        },
        {
            "index": 1891,
            "rank": 150,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "48h 53' 27''",
            "gap": "+ 01h 34' 46''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5686.0,
            "times_seconds": 176007.0
        },
        {
            "index": 1892,
            "rank": 151,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "48h 53' 36''",
            "gap": "+ 01h 34' 55''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5695.0,
            "times_seconds": 176016.0
        },
        {
            "index": 1893,
            "rank": 152,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "48h 54' 33''",
            "gap": "+ 01h 35' 52''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5752.0,
            "times_seconds": 176073.0
        },
        {
            "index": 1894,
            "rank": 153,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "48h 54' 36''",
            "gap": "+ 01h 35' 55''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5755.0,
            "times_seconds": 176076.0
        },
        {
            "index": 1895,
            "rank": 154,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "48h 54' 42''",
            "gap": "+ 01h 36' 01''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5761.0,
            "times_seconds": 176082.0
        },
        {
            "index": 1896,
            "rank": 155,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "48h 55' 01''",
            "gap": "+ 01h 36' 20''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5780.0,
            "times_seconds": 176101.0
        },
        {
            "index": 1897,
            "rank": 156,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "48h 55' 15''",
            "gap": "+ 01h 36' 34''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5794.0,
            "times_seconds": 176115.0
        },
        {
            "index": 1898,
            "rank": 157,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "48h 55' 16''",
            "gap": "+ 01h 36' 35''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5795.0,
            "times_seconds": 176116.0
        },
        {
            "index": 1899,
            "rank": 158,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 56' 23''",
            "gap": "+ 01h 37' 42''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 11,
            "gap_seconds": 5862.0,
            "times_seconds": 176183.0
        },
        {
            "index": 1900,
            "rank": 159,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "48h 58' 18''",
            "gap": "+ 01h 39' 37''",
            "b": "B : 16''",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5977.0,
            "times_seconds": 176298.0
        },
        {
            "index": 1901,
            "rank": 160,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "48h 58' 32''",
            "gap": "+ 01h 39' 51''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 5991.0,
            "times_seconds": 176312.0
        },
        {
            "index": 1902,
            "rank": 161,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "48h 59' 02''",
            "gap": "+ 01h 40' 21''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6021.0,
            "times_seconds": 176342.0
        },
        {
            "index": 1903,
            "rank": 162,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "48h 59' 07''",
            "gap": "+ 01h 40' 26''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6026.0,
            "times_seconds": 176347.0
        },
        {
            "index": 1904,
            "rank": 163,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "48h 59' 38''",
            "gap": "+ 01h 40' 57''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6057.0,
            "times_seconds": 176378.0
        },
        {
            "index": 1905,
            "rank": 164,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "49h 01' 46''",
            "gap": "+ 01h 43' 05''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6185.0,
            "times_seconds": 176506.0
        },
        {
            "index": 1906,
            "rank": 165,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "49h 02' 07''",
            "gap": "+ 01h 43' 26''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6206.0,
            "times_seconds": 176527.0
        },
        {
            "index": 1907,
            "rank": 166,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "49h 03' 48''",
            "gap": "+ 01h 45' 07''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6307.0,
            "times_seconds": 176628.0
        },
        {
            "index": 1908,
            "rank": 167,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "49h 05' 36''",
            "gap": "+ 01h 46' 55''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6415.0,
            "times_seconds": 176736.0
        },
        {
            "index": 1909,
            "rank": 168,
            "rider": "Giacomo Nizzolo",
            "rider no.": 207,
            "team": "Team Dimension Data",
            "times": "49h 07' 13''",
            "gap": "+ 01h 48' 32''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 6512.0,
            "times_seconds": 176833.0
        },
        {
            "index": 1910,
            "rank": 169,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "49h 23' 53''",
            "gap": "+ 02h 05' 12''",
            "b": "-",
            "p": "-",
            "stage": 11,
            "gap_seconds": 7512.0,
            "times_seconds": 177833.0
        },
        {
            "index": 1911,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "52h 26' 09''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 0.0,
            "times_seconds": 188769.0
        },
        {
            "index": 1912,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "52h 27' 21''",
            "gap": "+ 00h 01' 12''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 72.0,
            "times_seconds": 188841.0
        },
        {
            "index": 1913,
            "rank": 3,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "52h 27' 25''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 76.0,
            "times_seconds": 188845.0
        },
        {
            "index": 1914,
            "rank": 4,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "52h 27' 36''",
            "gap": "+ 00h 01' 27''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 87.0,
            "times_seconds": 188856.0
        },
        {
            "index": 1915,
            "rank": 5,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "52h 27' 54''",
            "gap": "+ 00h 01' 45''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 105.0,
            "times_seconds": 188874.0
        },
        {
            "index": 1916,
            "rank": 6,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "52h 27' 55''",
            "gap": "+ 00h 01' 46''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 106.0,
            "times_seconds": 188875.0
        },
        {
            "index": 1917,
            "rank": 7,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "52h 27' 56''",
            "gap": "+ 00h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 107.0,
            "times_seconds": 188876.0
        },
        {
            "index": 1918,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "52h 28' 13''",
            "gap": "+ 00h 02' 04''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 124.0,
            "times_seconds": 188893.0
        },
        {
            "index": 1919,
            "rank": 9,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "52h 28' 18''",
            "gap": "+ 00h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 129.0,
            "times_seconds": 188898.0
        },
        {
            "index": 1920,
            "rank": 10,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "52h 28' 42''",
            "gap": "+ 00h 02' 33''",
            "b": "B : 8''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 153.0,
            "times_seconds": 188922.0
        },
        {
            "index": 1921,
            "rank": 11,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "52h 28' 55''",
            "gap": "+ 00h 02' 46''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 166.0,
            "times_seconds": 188935.0
        },
        {
            "index": 1922,
            "rank": 12,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "52h 29' 27''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 198.0,
            "times_seconds": 188967.0
        },
        {
            "index": 1923,
            "rank": 13,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "52h 29' 27''",
            "gap": "+ 00h 03' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 198.0,
            "times_seconds": 188967.0
        },
        {
            "index": 1924,
            "rank": 14,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "52h 29' 29''",
            "gap": "+ 00h 03' 20''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 200.0,
            "times_seconds": 188969.0
        },
        {
            "index": 1925,
            "rank": 15,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "52h 29' 31''",
            "gap": "+ 00h 03' 22''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 202.0,
            "times_seconds": 188971.0
        },
        {
            "index": 1926,
            "rank": 16,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "52h 29' 35''",
            "gap": "+ 00h 03' 26''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 206.0,
            "times_seconds": 188975.0
        },
        {
            "index": 1927,
            "rank": 17,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "52h 29' 37''",
            "gap": "+ 00h 03' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 208.0,
            "times_seconds": 188977.0
        },
        {
            "index": 1928,
            "rank": 18,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "52h 29' 51''",
            "gap": "+ 00h 03' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 222.0,
            "times_seconds": 188991.0
        },
        {
            "index": 1929,
            "rank": 19,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "52h 30' 08''",
            "gap": "+ 00h 03' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 239.0,
            "times_seconds": 189008.0
        },
        {
            "index": 1930,
            "rank": 20,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "52h 30' 24''",
            "gap": "+ 00h 04' 15''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 255.0,
            "times_seconds": 189024.0
        },
        {
            "index": 1931,
            "rank": 21,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "52h 30' 34''",
            "gap": "+ 00h 04' 25''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 265.0,
            "times_seconds": 189034.0
        },
        {
            "index": 1932,
            "rank": 22,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "52h 30' 41''",
            "gap": "+ 00h 04' 32''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 272.0,
            "times_seconds": 189041.0
        },
        {
            "index": 1933,
            "rank": 23,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "52h 30' 43''",
            "gap": "+ 00h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 274.0,
            "times_seconds": 189043.0
        },
        {
            "index": 1934,
            "rank": 24,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "52h 32' 06''",
            "gap": "+ 00h 05' 57''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 357.0,
            "times_seconds": 189126.0
        },
        {
            "index": 1935,
            "rank": 25,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "52h 32' 08''",
            "gap": "+ 00h 05' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 359.0,
            "times_seconds": 189128.0
        },
        {
            "index": 1936,
            "rank": 26,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "52h 32' 27''",
            "gap": "+ 00h 06' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 378.0,
            "times_seconds": 189147.0
        },
        {
            "index": 1937,
            "rank": 27,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "52h 35' 59''",
            "gap": "+ 00h 09' 50''",
            "b": "B : 2''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 590.0,
            "times_seconds": 189359.0
        },
        {
            "index": 1938,
            "rank": 28,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "52h 37' 29''",
            "gap": "+ 00h 11' 20''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 12,
            "gap_seconds": 680.0,
            "times_seconds": 189449.0
        },
        {
            "index": 1939,
            "rank": 29,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "52h 38' 56''",
            "gap": "+ 00h 12' 47''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 767.0,
            "times_seconds": 189536.0
        },
        {
            "index": 1940,
            "rank": 30,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "52h 40' 44''",
            "gap": "+ 00h 14' 35''",
            "b": "B : 14''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 875.0,
            "times_seconds": 189644.0
        },
        {
            "index": 1941,
            "rank": 31,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "52h 40' 45''",
            "gap": "+ 00h 14' 36''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 12,
            "gap_seconds": 876.0,
            "times_seconds": 189645.0
        },
        {
            "index": 1942,
            "rank": 32,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "52h 40' 54''",
            "gap": "+ 00h 14' 45''",
            "b": "B : 4''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 885.0,
            "times_seconds": 189654.0
        },
        {
            "index": 1943,
            "rank": 33,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "52h 44' 08''",
            "gap": "+ 00h 17' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1079.0,
            "times_seconds": 189848.0
        },
        {
            "index": 1944,
            "rank": 34,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "52h 45' 48''",
            "gap": "+ 00h 19' 39''",
            "b": "B : 4''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1179.0,
            "times_seconds": 189948.0
        },
        {
            "index": 1945,
            "rank": 35,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "52h 47' 26''",
            "gap": "+ 00h 21' 17''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1277.0,
            "times_seconds": 190046.0
        },
        {
            "index": 1946,
            "rank": 36,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "52h 48' 09''",
            "gap": "+ 00h 22' 00''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1320.0,
            "times_seconds": 190089.0
        },
        {
            "index": 1947,
            "rank": 37,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "52h 48' 50''",
            "gap": "+ 00h 22' 41''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1361.0,
            "times_seconds": 190130.0
        },
        {
            "index": 1948,
            "rank": 38,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "52h 49' 15''",
            "gap": "+ 00h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1386.0,
            "times_seconds": 190155.0
        },
        {
            "index": 1949,
            "rank": 39,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "52h 49' 17''",
            "gap": "+ 00h 23' 08''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1388.0,
            "times_seconds": 190157.0
        },
        {
            "index": 1950,
            "rank": 40,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "52h 51' 02''",
            "gap": "+ 00h 24' 53''",
            "b": "B : 6''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1493.0,
            "times_seconds": 190262.0
        },
        {
            "index": 1951,
            "rank": 41,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "52h 51' 19''",
            "gap": "+ 00h 25' 10''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1510.0,
            "times_seconds": 190279.0
        },
        {
            "index": 1952,
            "rank": 42,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "52h 51' 24''",
            "gap": "+ 00h 25' 15''",
            "b": "B : 9''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1515.0,
            "times_seconds": 190284.0
        },
        {
            "index": 1953,
            "rank": 43,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "52h 52' 08''",
            "gap": "+ 00h 25' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1559.0,
            "times_seconds": 190328.0
        },
        {
            "index": 1954,
            "rank": 44,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "52h 52' 12''",
            "gap": "+ 00h 26' 03''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1563.0,
            "times_seconds": 190332.0
        },
        {
            "index": 1955,
            "rank": 45,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "52h 52' 37''",
            "gap": "+ 00h 26' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1588.0,
            "times_seconds": 190357.0
        },
        {
            "index": 1956,
            "rank": 46,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "52h 52' 52''",
            "gap": "+ 00h 26' 43''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1603.0,
            "times_seconds": 190372.0
        },
        {
            "index": 1957,
            "rank": 47,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "52h 55' 08''",
            "gap": "+ 00h 28' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1739.0,
            "times_seconds": 190508.0
        },
        {
            "index": 1958,
            "rank": 48,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "52h 55' 36''",
            "gap": "+ 00h 29' 27''",
            "b": "B : 15''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1767.0,
            "times_seconds": 190536.0
        },
        {
            "index": 1959,
            "rank": 49,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "52h 56' 06''",
            "gap": "+ 00h 29' 57''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1797.0,
            "times_seconds": 190566.0
        },
        {
            "index": 1960,
            "rank": 50,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "52h 56' 15''",
            "gap": "+ 00h 30' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1806.0,
            "times_seconds": 190575.0
        },
        {
            "index": 1961,
            "rank": 51,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "52h 57' 03''",
            "gap": "+ 00h 30' 54''",
            "b": "B : 2''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1854.0,
            "times_seconds": 190623.0
        },
        {
            "index": 1962,
            "rank": 52,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "52h 57' 56''",
            "gap": "+ 00h 31' 47''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1907.0,
            "times_seconds": 190676.0
        },
        {
            "index": 1963,
            "rank": 53,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "52h 59' 07''",
            "gap": "+ 00h 32' 58''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 1978.0,
            "times_seconds": 190747.0
        },
        {
            "index": 1964,
            "rank": 54,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "52h 59' 30''",
            "gap": "+ 00h 33' 21''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2001.0,
            "times_seconds": 190770.0
        },
        {
            "index": 1965,
            "rank": 55,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "53h 00' 08''",
            "gap": "+ 00h 33' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2039.0,
            "times_seconds": 190808.0
        },
        {
            "index": 1966,
            "rank": 56,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "53h 00' 13''",
            "gap": "+ 00h 34' 04''",
            "b": "B : 11''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2044.0,
            "times_seconds": 190813.0
        },
        {
            "index": 1967,
            "rank": 57,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "53h 02' 15''",
            "gap": "+ 00h 36' 06''",
            "b": "B : 8''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2166.0,
            "times_seconds": 190935.0
        },
        {
            "index": 1968,
            "rank": 58,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "53h 02' 34''",
            "gap": "+ 00h 36' 25''",
            "b": "B : 20''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2185.0,
            "times_seconds": 190954.0
        },
        {
            "index": 1969,
            "rank": 59,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "53h 03' 33''",
            "gap": "+ 00h 37' 24''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2244.0,
            "times_seconds": 191013.0
        },
        {
            "index": 1970,
            "rank": 60,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "53h 04' 22''",
            "gap": "+ 00h 38' 13''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2293.0,
            "times_seconds": 191062.0
        },
        {
            "index": 1971,
            "rank": 61,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "53h 05' 16''",
            "gap": "+ 00h 39' 07''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2347.0,
            "times_seconds": 191116.0
        },
        {
            "index": 1972,
            "rank": 62,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "53h 06' 03''",
            "gap": "+ 00h 39' 54''",
            "b": "B : 18''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2394.0,
            "times_seconds": 191163.0
        },
        {
            "index": 1973,
            "rank": 63,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "53h 06' 46''",
            "gap": "+ 00h 40' 37''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2437.0,
            "times_seconds": 191206.0
        },
        {
            "index": 1974,
            "rank": 64,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "53h 09' 20''",
            "gap": "+ 00h 43' 11''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2591.0,
            "times_seconds": 191360.0
        },
        {
            "index": 1975,
            "rank": 65,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "53h 09' 38''",
            "gap": "+ 00h 43' 29''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2609.0,
            "times_seconds": 191378.0
        },
        {
            "index": 1976,
            "rank": 66,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "53h 11' 14''",
            "gap": "+ 00h 45' 05''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2705.0,
            "times_seconds": 191474.0
        },
        {
            "index": 1977,
            "rank": 67,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "53h 11' 15''",
            "gap": "+ 00h 45' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2706.0,
            "times_seconds": 191475.0
        },
        {
            "index": 1978,
            "rank": 68,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "53h 12' 39''",
            "gap": "+ 00h 46' 30''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 12,
            "gap_seconds": 2790.0,
            "times_seconds": 191559.0
        },
        {
            "index": 1979,
            "rank": 69,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "53h 14' 12''",
            "gap": "+ 00h 48' 03''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2883.0,
            "times_seconds": 191652.0
        },
        {
            "index": 1980,
            "rank": 70,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "53h 14' 38''",
            "gap": "+ 00h 48' 29''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2909.0,
            "times_seconds": 191678.0
        },
        {
            "index": 1981,
            "rank": 71,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "53h 15' 27''",
            "gap": "+ 00h 49' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 2958.0,
            "times_seconds": 191727.0
        },
        {
            "index": 1982,
            "rank": 72,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "53h 16' 30''",
            "gap": "+ 00h 50' 21''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3021.0,
            "times_seconds": 191790.0
        },
        {
            "index": 1983,
            "rank": 73,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "53h 17' 02''",
            "gap": "+ 00h 50' 53''",
            "b": "B : 18''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3053.0,
            "times_seconds": 191822.0
        },
        {
            "index": 1984,
            "rank": 74,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "53h 17' 08''",
            "gap": "+ 00h 50' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3059.0,
            "times_seconds": 191828.0
        },
        {
            "index": 1985,
            "rank": 75,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "53h 17' 29''",
            "gap": "+ 00h 51' 20''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3080.0,
            "times_seconds": 191849.0
        },
        {
            "index": 1986,
            "rank": 76,
            "rider": "Wout Van Aert",
            "rider no.": 88,
            "team": "Team Jumbo - Visma",
            "times": "53h 18' 00''",
            "gap": "+ 00h 51' 51''",
            "b": "B : 16''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3111.0,
            "times_seconds": 191880.0
        },
        {
            "index": 1987,
            "rank": 77,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "53h 20' 23''",
            "gap": "+ 00h 54' 14''",
            "b": "B : 4''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3254.0,
            "times_seconds": 192023.0
        },
        {
            "index": 1988,
            "rank": 78,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "53h 20' 55''",
            "gap": "+ 00h 54' 46''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3286.0,
            "times_seconds": 192055.0
        },
        {
            "index": 1989,
            "rank": 79,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "53h 22' 04''",
            "gap": "+ 00h 55' 55''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3355.0,
            "times_seconds": 192124.0
        },
        {
            "index": 1990,
            "rank": 80,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "53h 22' 56''",
            "gap": "+ 00h 56' 47''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3407.0,
            "times_seconds": 192176.0
        },
        {
            "index": 1991,
            "rank": 81,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "53h 23' 01''",
            "gap": "+ 00h 56' 52''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3412.0,
            "times_seconds": 192181.0
        },
        {
            "index": 1992,
            "rank": 82,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "53h 23' 21''",
            "gap": "+ 00h 57' 12''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3432.0,
            "times_seconds": 192201.0
        },
        {
            "index": 1993,
            "rank": 83,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "53h 24' 34''",
            "gap": "+ 00h 58' 25''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3505.0,
            "times_seconds": 192274.0
        },
        {
            "index": 1994,
            "rank": 84,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "53h 24' 35''",
            "gap": "+ 00h 58' 26''",
            "b": "B : 18''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3506.0,
            "times_seconds": 192275.0
        },
        {
            "index": 1995,
            "rank": 85,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "53h 25' 18''",
            "gap": "+ 00h 59' 09''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3549.0,
            "times_seconds": 192318.0
        },
        {
            "index": 1996,
            "rank": 86,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "53h 30' 49''",
            "gap": "+ 01h 04' 40''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3880.0,
            "times_seconds": 192649.0
        },
        {
            "index": 1997,
            "rank": 87,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "53h 31' 50''",
            "gap": "+ 01h 05' 41''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 3941.0,
            "times_seconds": 192710.0
        },
        {
            "index": 1998,
            "rank": 88,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "53h 33' 23''",
            "gap": "+ 01h 07' 14''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4034.0,
            "times_seconds": 192803.0
        },
        {
            "index": 1999,
            "rank": 89,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "53h 36' 22''",
            "gap": "+ 01h 10' 13''",
            "b": "B : 10''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4213.0,
            "times_seconds": 192982.0
        },
        {
            "index": 2000,
            "rank": 90,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "53h 36' 23''",
            "gap": "+ 01h 10' 14''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4214.0,
            "times_seconds": 192983.0
        },
        {
            "index": 2001,
            "rank": 91,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "53h 37' 59''",
            "gap": "+ 01h 11' 50''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4310.0,
            "times_seconds": 193079.0
        },
        {
            "index": 2002,
            "rank": 92,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "53h 38' 03''",
            "gap": "+ 01h 11' 54''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4314.0,
            "times_seconds": 193083.0
        },
        {
            "index": 2003,
            "rank": 93,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "53h 39' 22''",
            "gap": "+ 01h 13' 13''",
            "b": "B : 10''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4393.0,
            "times_seconds": 193162.0
        },
        {
            "index": 2004,
            "rank": 94,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "53h 39' 35''",
            "gap": "+ 01h 13' 26''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4406.0,
            "times_seconds": 193175.0
        },
        {
            "index": 2005,
            "rank": 95,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "53h 40' 16''",
            "gap": "+ 01h 14' 07''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4447.0,
            "times_seconds": 193216.0
        },
        {
            "index": 2006,
            "rank": 96,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "53h 40' 28''",
            "gap": "+ 01h 14' 19''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4459.0,
            "times_seconds": 193228.0
        },
        {
            "index": 2007,
            "rank": 97,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "53h 40' 44''",
            "gap": "+ 01h 14' 35''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4475.0,
            "times_seconds": 193244.0
        },
        {
            "index": 2008,
            "rank": 98,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "53h 40' 47''",
            "gap": "+ 01h 14' 38''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4478.0,
            "times_seconds": 193247.0
        },
        {
            "index": 2009,
            "rank": 99,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "53h 41' 00''",
            "gap": "+ 01h 14' 51''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4491.0,
            "times_seconds": 193260.0
        },
        {
            "index": 2010,
            "rank": 100,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "53h 41' 01''",
            "gap": "+ 01h 14' 52''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4492.0,
            "times_seconds": 193261.0
        },
        {
            "index": 2011,
            "rank": 101,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "53h 41' 08''",
            "gap": "+ 01h 14' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4499.0,
            "times_seconds": 193268.0
        },
        {
            "index": 2012,
            "rank": 102,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "53h 42' 00''",
            "gap": "+ 01h 15' 51''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4551.0,
            "times_seconds": 193320.0
        },
        {
            "index": 2013,
            "rank": 103,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "53h 42' 05''",
            "gap": "+ 01h 15' 56''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4556.0,
            "times_seconds": 193325.0
        },
        {
            "index": 2014,
            "rank": 104,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "53h 42' 23''",
            "gap": "+ 01h 16' 14''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4574.0,
            "times_seconds": 193343.0
        },
        {
            "index": 2015,
            "rank": 105,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "53h 42' 37''",
            "gap": "+ 01h 16' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4588.0,
            "times_seconds": 193357.0
        },
        {
            "index": 2016,
            "rank": 106,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "53h 43' 45''",
            "gap": "+ 01h 17' 36''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4656.0,
            "times_seconds": 193425.0
        },
        {
            "index": 2017,
            "rank": 107,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "53h 45' 34''",
            "gap": "+ 01h 19' 25''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4765.0,
            "times_seconds": 193534.0
        },
        {
            "index": 2018,
            "rank": 108,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "53h 45' 42''",
            "gap": "+ 01h 19' 33''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4773.0,
            "times_seconds": 193542.0
        },
        {
            "index": 2019,
            "rank": 109,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "53h 45' 50''",
            "gap": "+ 01h 19' 41''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4781.0,
            "times_seconds": 193550.0
        },
        {
            "index": 2020,
            "rank": 110,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "53h 46' 22''",
            "gap": "+ 01h 20' 13''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4813.0,
            "times_seconds": 193582.0
        },
        {
            "index": 2021,
            "rank": 111,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "53h 46' 36''",
            "gap": "+ 01h 20' 27''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4827.0,
            "times_seconds": 193596.0
        },
        {
            "index": 2022,
            "rank": 112,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "53h 47' 04''",
            "gap": "+ 01h 20' 55''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4855.0,
            "times_seconds": 193624.0
        },
        {
            "index": 2023,
            "rank": 113,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "53h 47' 37''",
            "gap": "+ 01h 21' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4888.0,
            "times_seconds": 193657.0
        },
        {
            "index": 2024,
            "rank": 114,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "53h 48' 21''",
            "gap": "+ 01h 22' 12''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4932.0,
            "times_seconds": 193701.0
        },
        {
            "index": 2025,
            "rank": 115,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "53h 49' 15''",
            "gap": "+ 01h 23' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 4986.0,
            "times_seconds": 193755.0
        },
        {
            "index": 2026,
            "rank": 116,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "53h 51' 00''",
            "gap": "+ 01h 24' 51''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5091.0,
            "times_seconds": 193860.0
        },
        {
            "index": 2027,
            "rank": 117,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "53h 51' 15''",
            "gap": "+ 01h 25' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5106.0,
            "times_seconds": 193875.0
        },
        {
            "index": 2028,
            "rank": 118,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "53h 52' 44''",
            "gap": "+ 01h 26' 35''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5195.0,
            "times_seconds": 193964.0
        },
        {
            "index": 2029,
            "rank": 119,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "53h 57' 07''",
            "gap": "+ 01h 30' 58''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5458.0,
            "times_seconds": 194227.0
        },
        {
            "index": 2030,
            "rank": 120,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "53h 58' 03''",
            "gap": "+ 01h 31' 54''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5514.0,
            "times_seconds": 194283.0
        },
        {
            "index": 2031,
            "rank": 121,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "53h 59' 24''",
            "gap": "+ 01h 33' 15''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5595.0,
            "times_seconds": 194364.0
        },
        {
            "index": 2032,
            "rank": 122,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "53h 59' 50''",
            "gap": "+ 01h 33' 41''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5621.0,
            "times_seconds": 194390.0
        },
        {
            "index": 2033,
            "rank": 123,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "54h 01' 17''",
            "gap": "+ 01h 35' 08''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5708.0,
            "times_seconds": 194477.0
        },
        {
            "index": 2034,
            "rank": 124,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 02' 10''",
            "gap": "+ 01h 36' 01''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5761.0,
            "times_seconds": 194530.0
        },
        {
            "index": 2035,
            "rank": 125,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "54h 02' 44''",
            "gap": "+ 01h 36' 35''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5795.0,
            "times_seconds": 194564.0
        },
        {
            "index": 2036,
            "rank": 126,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 03' 10''",
            "gap": "+ 01h 37' 01''",
            "b": "B : 20''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5821.0,
            "times_seconds": 194590.0
        },
        {
            "index": 2037,
            "rank": 127,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "54h 03' 37''",
            "gap": "+ 01h 37' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5848.0,
            "times_seconds": 194617.0
        },
        {
            "index": 2038,
            "rank": 128,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "54h 03' 40''",
            "gap": "+ 01h 37' 31''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5851.0,
            "times_seconds": 194620.0
        },
        {
            "index": 2039,
            "rank": 129,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "54h 03' 57''",
            "gap": "+ 01h 37' 48''",
            "b": "B : 28''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5868.0,
            "times_seconds": 194637.0
        },
        {
            "index": 2040,
            "rank": 130,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "54h 04' 06''",
            "gap": "+ 01h 37' 57''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5877.0,
            "times_seconds": 194646.0
        },
        {
            "index": 2041,
            "rank": 131,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "54h 04' 19''",
            "gap": "+ 01h 38' 10''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5890.0,
            "times_seconds": 194659.0
        },
        {
            "index": 2042,
            "rank": 132,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 05' 01''",
            "gap": "+ 01h 38' 52''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 12,
            "gap_seconds": 5932.0,
            "times_seconds": 194701.0
        },
        {
            "index": 2043,
            "rank": 133,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "54h 05' 23''",
            "gap": "+ 01h 39' 14''",
            "b": "B : 6''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5954.0,
            "times_seconds": 194723.0
        },
        {
            "index": 2044,
            "rank": 134,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "54h 05' 39''",
            "gap": "+ 01h 39' 30''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5970.0,
            "times_seconds": 194739.0
        },
        {
            "index": 2045,
            "rank": 135,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "54h 05' 42''",
            "gap": "+ 01h 39' 33''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 5973.0,
            "times_seconds": 194742.0
        },
        {
            "index": 2046,
            "rank": 136,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "54h 06' 27''",
            "gap": "+ 01h 40' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6018.0,
            "times_seconds": 194787.0
        },
        {
            "index": 2047,
            "rank": 137,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "54h 06' 33''",
            "gap": "+ 01h 40' 24''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6024.0,
            "times_seconds": 194793.0
        },
        {
            "index": 2048,
            "rank": 138,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "54h 07' 48''",
            "gap": "+ 01h 41' 39''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6099.0,
            "times_seconds": 194868.0
        },
        {
            "index": 2049,
            "rank": 139,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "54h 08' 21''",
            "gap": "+ 01h 42' 12''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6132.0,
            "times_seconds": 194901.0
        },
        {
            "index": 2050,
            "rank": 140,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "54h 09' 29''",
            "gap": "+ 01h 43' 20''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6200.0,
            "times_seconds": 194969.0
        },
        {
            "index": 2051,
            "rank": 141,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "54h 10' 08''",
            "gap": "+ 01h 43' 59''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6239.0,
            "times_seconds": 195008.0
        },
        {
            "index": 2052,
            "rank": 142,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "54h 10' 27''",
            "gap": "+ 01h 44' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6258.0,
            "times_seconds": 195027.0
        },
        {
            "index": 2053,
            "rank": 143,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "54h 10' 38''",
            "gap": "+ 01h 44' 29''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6269.0,
            "times_seconds": 195038.0
        },
        {
            "index": 2054,
            "rank": 144,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "54h 13' 22''",
            "gap": "+ 01h 47' 13''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6433.0,
            "times_seconds": 195202.0
        },
        {
            "index": 2055,
            "rank": 145,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "54h 13' 37''",
            "gap": "+ 01h 47' 28''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 12,
            "gap_seconds": 6448.0,
            "times_seconds": 195217.0
        },
        {
            "index": 2056,
            "rank": 146,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "54h 14' 02''",
            "gap": "+ 01h 47' 53''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6473.0,
            "times_seconds": 195242.0
        },
        {
            "index": 2057,
            "rank": 147,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 14' 04''",
            "gap": "+ 01h 47' 55''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6475.0,
            "times_seconds": 195244.0
        },
        {
            "index": 2058,
            "rank": 148,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 14' 10''",
            "gap": "+ 01h 48' 01''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6481.0,
            "times_seconds": 195250.0
        },
        {
            "index": 2059,
            "rank": 149,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "54h 15' 09''",
            "gap": "+ 01h 49' 00''",
            "b": "B : 16''",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6540.0,
            "times_seconds": 195309.0
        },
        {
            "index": 2060,
            "rank": 150,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "54h 15' 30''",
            "gap": "+ 01h 49' 21''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6561.0,
            "times_seconds": 195330.0
        },
        {
            "index": 2061,
            "rank": 151,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "54h 15' 30''",
            "gap": "+ 01h 49' 21''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6561.0,
            "times_seconds": 195330.0
        },
        {
            "index": 2062,
            "rank": 152,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 15' 53''",
            "gap": "+ 01h 49' 44''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6584.0,
            "times_seconds": 195353.0
        },
        {
            "index": 2063,
            "rank": 153,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 15' 58''",
            "gap": "+ 01h 49' 49''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6589.0,
            "times_seconds": 195358.0
        },
        {
            "index": 2064,
            "rank": 154,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "54h 16' 09''",
            "gap": "+ 01h 50' 00''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6600.0,
            "times_seconds": 195369.0
        },
        {
            "index": 2065,
            "rank": 155,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "54h 16' 28''",
            "gap": "+ 01h 50' 19''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6619.0,
            "times_seconds": 195388.0
        },
        {
            "index": 2066,
            "rank": 156,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "54h 16' 40''",
            "gap": "+ 01h 50' 31''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6631.0,
            "times_seconds": 195400.0
        },
        {
            "index": 2067,
            "rank": 157,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "54h 16' 52''",
            "gap": "+ 01h 50' 43''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6643.0,
            "times_seconds": 195412.0
        },
        {
            "index": 2068,
            "rank": 158,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "54h 18' 37''",
            "gap": "+ 01h 52' 28''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6748.0,
            "times_seconds": 195517.0
        },
        {
            "index": 2069,
            "rank": 159,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "54h 19' 03''",
            "gap": "+ 01h 52' 54''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6774.0,
            "times_seconds": 195543.0
        },
        {
            "index": 2070,
            "rank": 160,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 19' 28''",
            "gap": "+ 01h 53' 19''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6799.0,
            "times_seconds": 195568.0
        },
        {
            "index": 2071,
            "rank": 161,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 20' 50''",
            "gap": "+ 01h 54' 41''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 12,
            "gap_seconds": 6881.0,
            "times_seconds": 195650.0
        },
        {
            "index": 2072,
            "rank": 162,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "54h 22' 27''",
            "gap": "+ 01h 56' 18''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 6978.0,
            "times_seconds": 195747.0
        },
        {
            "index": 2073,
            "rank": 163,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "54h 22' 59''",
            "gap": "+ 01h 56' 50''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 7010.0,
            "times_seconds": 195779.0
        },
        {
            "index": 2074,
            "rank": 164,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "54h 24' 05''",
            "gap": "+ 01h 57' 56''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 7076.0,
            "times_seconds": 195845.0
        },
        {
            "index": 2075,
            "rank": 165,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "54h 28' 15''",
            "gap": "+ 02h 02' 06''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 7326.0,
            "times_seconds": 196095.0
        },
        {
            "index": 2076,
            "rank": 166,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 40' 44''",
            "gap": "+ 02h 14' 35''",
            "b": "-",
            "p": "-",
            "stage": 12,
            "gap_seconds": 8075.0,
            "times_seconds": 196844.0
        },
        {
            "index": 2077,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "53h 01' 09''",
            "gap": "-",
            "b": "B : 24''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 0.0,
            "times_seconds": 190869.0
        },
        {
            "index": 2078,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "53h 02' 35''",
            "gap": "+ 00h 01' 26''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 86.0,
            "times_seconds": 190955.0
        },
        {
            "index": 2079,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "53h 03' 21''",
            "gap": "+ 00h 02' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 132.0,
            "times_seconds": 191001.0
        },
        {
            "index": 2080,
            "rank": 4,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "53h 03' 53''",
            "gap": "+ 00h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 164.0,
            "times_seconds": 191033.0
        },
        {
            "index": 2081,
            "rank": 5,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "53h 04' 01''",
            "gap": "+ 00h 02' 52''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 172.0,
            "times_seconds": 191041.0
        },
        {
            "index": 2082,
            "rank": 6,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "53h 04' 13''",
            "gap": "+ 00h 03' 04''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 184.0,
            "times_seconds": 191053.0
        },
        {
            "index": 2083,
            "rank": 7,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "53h 04' 31''",
            "gap": "+ 00h 03' 22''",
            "b": "B : 8''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 202.0,
            "times_seconds": 191071.0
        },
        {
            "index": 2084,
            "rank": 8,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "53h 05' 03''",
            "gap": "+ 00h 03' 54''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 234.0,
            "times_seconds": 191103.0
        },
        {
            "index": 2085,
            "rank": 9,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "53h 05' 04''",
            "gap": "+ 00h 03' 55''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 235.0,
            "times_seconds": 191104.0
        },
        {
            "index": 2086,
            "rank": 10,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "53h 05' 04''",
            "gap": "+ 00h 03' 55''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 235.0,
            "times_seconds": 191104.0
        },
        {
            "index": 2087,
            "rank": 11,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "53h 05' 24''",
            "gap": "+ 00h 04' 15''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 255.0,
            "times_seconds": 191124.0
        },
        {
            "index": 2088,
            "rank": 12,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "53h 05' 38''",
            "gap": "+ 00h 04' 29''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 269.0,
            "times_seconds": 191138.0
        },
        {
            "index": 2089,
            "rank": 13,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "53h 05' 38''",
            "gap": "+ 00h 04' 29''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 269.0,
            "times_seconds": 191138.0
        },
        {
            "index": 2090,
            "rank": 14,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "53h 05' 43''",
            "gap": "+ 00h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 274.0,
            "times_seconds": 191143.0
        },
        {
            "index": 2091,
            "rank": 15,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "53h 05' 53''",
            "gap": "+ 00h 04' 44''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 284.0,
            "times_seconds": 191153.0
        },
        {
            "index": 2092,
            "rank": 16,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "53h 06' 43''",
            "gap": "+ 00h 05' 34''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 334.0,
            "times_seconds": 191203.0
        },
        {
            "index": 2093,
            "rank": 17,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "53h 06' 55''",
            "gap": "+ 00h 05' 46''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 346.0,
            "times_seconds": 191215.0
        },
        {
            "index": 2094,
            "rank": 18,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "53h 07' 09''",
            "gap": "+ 00h 06' 00''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 360.0,
            "times_seconds": 191229.0
        },
        {
            "index": 2095,
            "rank": 19,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "53h 07' 16''",
            "gap": "+ 00h 06' 07''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 367.0,
            "times_seconds": 191236.0
        },
        {
            "index": 2096,
            "rank": 20,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "53h 07' 19''",
            "gap": "+ 00h 06' 10''",
            "b": "B : 4''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 370.0,
            "times_seconds": 191239.0
        },
        {
            "index": 2097,
            "rank": 21,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "53h 07' 37''",
            "gap": "+ 00h 06' 28''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 388.0,
            "times_seconds": 191257.0
        },
        {
            "index": 2098,
            "rank": 22,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "53h 07' 48''",
            "gap": "+ 00h 06' 39''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 399.0,
            "times_seconds": 191268.0
        },
        {
            "index": 2099,
            "rank": 23,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "53h 08' 55''",
            "gap": "+ 00h 07' 46''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 466.0,
            "times_seconds": 191335.0
        },
        {
            "index": 2100,
            "rank": 24,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "53h 09' 43''",
            "gap": "+ 00h 08' 34''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 514.0,
            "times_seconds": 191383.0
        },
        {
            "index": 2101,
            "rank": 25,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "53h 10' 11''",
            "gap": "+ 00h 09' 02''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 542.0,
            "times_seconds": 191411.0
        },
        {
            "index": 2102,
            "rank": 26,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "53h 10' 52''",
            "gap": "+ 00h 09' 43''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 583.0,
            "times_seconds": 191452.0
        },
        {
            "index": 2103,
            "rank": 27,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "53h 15' 34''",
            "gap": "+ 00h 14' 25''",
            "b": "B : 2''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 865.0,
            "times_seconds": 191734.0
        },
        {
            "index": 2104,
            "rank": 28,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "53h 17' 04''",
            "gap": "+ 00h 15' 55''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 955.0,
            "times_seconds": 191824.0
        },
        {
            "index": 2105,
            "rank": 29,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "53h 18' 43''",
            "gap": "+ 00h 17' 34''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 13,
            "gap_seconds": 1054.0,
            "times_seconds": 191923.0
        },
        {
            "index": 2106,
            "rank": 30,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "53h 18' 59''",
            "gap": "+ 00h 17' 50''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 13,
            "gap_seconds": 1070.0,
            "times_seconds": 191939.0
        },
        {
            "index": 2107,
            "rank": 31,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "53h 20' 29''",
            "gap": "+ 00h 19' 20''",
            "b": "B : 4''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1160.0,
            "times_seconds": 192029.0
        },
        {
            "index": 2108,
            "rank": 32,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "53h 21' 00''",
            "gap": "+ 00h 19' 51''",
            "b": "B : 14''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1191.0,
            "times_seconds": 192060.0
        },
        {
            "index": 2109,
            "rank": 33,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "53h 24' 16''",
            "gap": "+ 00h 23' 07''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1387.0,
            "times_seconds": 192256.0
        },
        {
            "index": 2110,
            "rank": 34,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "53h 26' 32''",
            "gap": "+ 00h 25' 23''",
            "b": "B : 4''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1523.0,
            "times_seconds": 192392.0
        },
        {
            "index": 2111,
            "rank": 35,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "53h 26' 33''",
            "gap": "+ 00h 25' 24''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1524.0,
            "times_seconds": 192393.0
        },
        {
            "index": 2112,
            "rank": 36,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "53h 26' 50''",
            "gap": "+ 00h 25' 41''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1541.0,
            "times_seconds": 192410.0
        },
        {
            "index": 2113,
            "rank": 37,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "53h 28' 16''",
            "gap": "+ 00h 27' 07''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1627.0,
            "times_seconds": 192496.0
        },
        {
            "index": 2114,
            "rank": 38,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "53h 29' 11''",
            "gap": "+ 00h 28' 02''",
            "b": "B : 6''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1682.0,
            "times_seconds": 192551.0
        },
        {
            "index": 2115,
            "rank": 39,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "53h 29' 16''",
            "gap": "+ 00h 28' 07''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1687.0,
            "times_seconds": 192556.0
        },
        {
            "index": 2116,
            "rank": 40,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "53h 30' 04''",
            "gap": "+ 00h 28' 55''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1735.0,
            "times_seconds": 192604.0
        },
        {
            "index": 2117,
            "rank": 41,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "53h 30' 21''",
            "gap": "+ 00h 29' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1752.0,
            "times_seconds": 192621.0
        },
        {
            "index": 2118,
            "rank": 42,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "53h 30' 47''",
            "gap": "+ 00h 29' 38''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1778.0,
            "times_seconds": 192647.0
        },
        {
            "index": 2119,
            "rank": 43,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "53h 31' 30''",
            "gap": "+ 00h 30' 21''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1821.0,
            "times_seconds": 192690.0
        },
        {
            "index": 2120,
            "rank": 44,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "53h 31' 34''",
            "gap": "+ 00h 30' 25''",
            "b": "B : 9''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1825.0,
            "times_seconds": 192694.0
        },
        {
            "index": 2121,
            "rank": 45,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "53h 31' 45''",
            "gap": "+ 00h 30' 36''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1836.0,
            "times_seconds": 192705.0
        },
        {
            "index": 2122,
            "rank": 46,
            "rider": "Maximilian Schachmann",
            "rider no.": 18,
            "team": "Bora - Hansgrohe",
            "times": "53h 33' 18''",
            "gap": "+ 00h 32' 09''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1929.0,
            "times_seconds": 192798.0
        },
        {
            "index": 2123,
            "rank": 47,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "53h 34' 00''",
            "gap": "+ 00h 32' 51''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 1971.0,
            "times_seconds": 192840.0
        },
        {
            "index": 2124,
            "rank": 48,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "53h 34' 46''",
            "gap": "+ 00h 33' 37''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2017.0,
            "times_seconds": 192886.0
        },
        {
            "index": 2125,
            "rank": 49,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "53h 35' 11''",
            "gap": "+ 00h 34' 02''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2042.0,
            "times_seconds": 192911.0
        },
        {
            "index": 2126,
            "rank": 50,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "53h 35' 15''",
            "gap": "+ 00h 34' 06''",
            "b": "B : 15''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2046.0,
            "times_seconds": 192915.0
        },
        {
            "index": 2127,
            "rank": 51,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "53h 36' 13''",
            "gap": "+ 00h 35' 04''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2104.0,
            "times_seconds": 192973.0
        },
        {
            "index": 2128,
            "rank": 52,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "53h 36' 58''",
            "gap": "+ 00h 35' 49''",
            "b": "B : 2''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2149.0,
            "times_seconds": 193018.0
        },
        {
            "index": 2129,
            "rank": 53,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "53h 39' 10''",
            "gap": "+ 00h 38' 01''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2281.0,
            "times_seconds": 193150.0
        },
        {
            "index": 2130,
            "rank": 54,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "53h 39' 27''",
            "gap": "+ 00h 38' 18''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2298.0,
            "times_seconds": 193167.0
        },
        {
            "index": 2131,
            "rank": 55,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "53h 39' 53''",
            "gap": "+ 00h 38' 44''",
            "b": "B : 11''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2324.0,
            "times_seconds": 193193.0
        },
        {
            "index": 2132,
            "rank": 56,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "53h 41' 07''",
            "gap": "+ 00h 39' 58''",
            "b": "B : 20''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2398.0,
            "times_seconds": 193267.0
        },
        {
            "index": 2133,
            "rank": 57,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "53h 41' 58''",
            "gap": "+ 00h 40' 49''",
            "b": "B : 8''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2449.0,
            "times_seconds": 193318.0
        },
        {
            "index": 2134,
            "rank": 58,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "53h 42' 03''",
            "gap": "+ 00h 40' 54''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2454.0,
            "times_seconds": 193323.0
        },
        {
            "index": 2135,
            "rank": 59,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "53h 42' 47''",
            "gap": "+ 00h 41' 38''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2498.0,
            "times_seconds": 193367.0
        },
        {
            "index": 2136,
            "rank": 60,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "53h 43' 06''",
            "gap": "+ 00h 41' 57''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2517.0,
            "times_seconds": 193386.0
        },
        {
            "index": 2137,
            "rank": 61,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "53h 43' 52''",
            "gap": "+ 00h 42' 43''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2563.0,
            "times_seconds": 193432.0
        },
        {
            "index": 2138,
            "rank": 62,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "53h 44' 17''",
            "gap": "+ 00h 43' 08''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2588.0,
            "times_seconds": 193457.0
        },
        {
            "index": 2139,
            "rank": 63,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "53h 45' 48''",
            "gap": "+ 00h 44' 39''",
            "b": "B : 18''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2679.0,
            "times_seconds": 193548.0
        },
        {
            "index": 2140,
            "rank": 64,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "53h 46' 04''",
            "gap": "+ 00h 44' 55''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2695.0,
            "times_seconds": 193564.0
        },
        {
            "index": 2141,
            "rank": 65,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "53h 48' 51''",
            "gap": "+ 00h 47' 42''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2862.0,
            "times_seconds": 193731.0
        },
        {
            "index": 2142,
            "rank": 66,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "53h 49' 53''",
            "gap": "+ 00h 48' 44''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 2924.0,
            "times_seconds": 193793.0
        },
        {
            "index": 2143,
            "rank": 67,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "53h 51' 11''",
            "gap": "+ 00h 50' 02''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 13,
            "gap_seconds": 3002.0,
            "times_seconds": 193871.0
        },
        {
            "index": 2144,
            "rank": 68,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "53h 52' 13''",
            "gap": "+ 00h 51' 04''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3064.0,
            "times_seconds": 193933.0
        },
        {
            "index": 2145,
            "rank": 69,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "53h 52' 38''",
            "gap": "+ 00h 51' 29''",
            "b": "B : 18''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3089.0,
            "times_seconds": 193958.0
        },
        {
            "index": 2146,
            "rank": 70,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "53h 53' 21''",
            "gap": "+ 00h 52' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3132.0,
            "times_seconds": 194001.0
        },
        {
            "index": 2147,
            "rank": 71,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "53h 53' 35''",
            "gap": "+ 00h 52' 26''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3146.0,
            "times_seconds": 194015.0
        },
        {
            "index": 2148,
            "rank": 72,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "53h 54' 12''",
            "gap": "+ 00h 53' 03''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3183.0,
            "times_seconds": 194052.0
        },
        {
            "index": 2149,
            "rank": 73,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "53h 54' 50''",
            "gap": "+ 00h 53' 41''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3221.0,
            "times_seconds": 194090.0
        },
        {
            "index": 2150,
            "rank": 74,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "53h 55' 39''",
            "gap": "+ 00h 54' 30''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3270.0,
            "times_seconds": 194139.0
        },
        {
            "index": 2151,
            "rank": 75,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "53h 55' 52''",
            "gap": "+ 00h 54' 43''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3283.0,
            "times_seconds": 194152.0
        },
        {
            "index": 2152,
            "rank": 76,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "53h 56' 42''",
            "gap": "+ 00h 55' 33''",
            "b": "B : 4''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3333.0,
            "times_seconds": 194202.0
        },
        {
            "index": 2153,
            "rank": 77,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "53h 58' 08''",
            "gap": "+ 00h 56' 59''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3419.0,
            "times_seconds": 194288.0
        },
        {
            "index": 2154,
            "rank": 78,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "53h 58' 29''",
            "gap": "+ 00h 57' 20''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3440.0,
            "times_seconds": 194309.0
        },
        {
            "index": 2155,
            "rank": 79,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "54h 01' 12''",
            "gap": "+ 01h 00' 03''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3603.0,
            "times_seconds": 194472.0
        },
        {
            "index": 2156,
            "rank": 80,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "54h 01' 17''",
            "gap": "+ 01h 00' 08''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3608.0,
            "times_seconds": 194477.0
        },
        {
            "index": 2157,
            "rank": 81,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "54h 02' 45''",
            "gap": "+ 01h 01' 36''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3696.0,
            "times_seconds": 194565.0
        },
        {
            "index": 2158,
            "rank": 82,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 03' 18''",
            "gap": "+ 01h 02' 09''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3729.0,
            "times_seconds": 194598.0
        },
        {
            "index": 2159,
            "rank": 83,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "54h 04' 19''",
            "gap": "+ 01h 03' 10''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3790.0,
            "times_seconds": 194659.0
        },
        {
            "index": 2160,
            "rank": 84,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "54h 04' 30''",
            "gap": "+ 01h 03' 21''",
            "b": "B : 18''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 3801.0,
            "times_seconds": 194670.0
        },
        {
            "index": 2161,
            "rank": 85,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "54h 09' 24''",
            "gap": "+ 01h 08' 15''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4095.0,
            "times_seconds": 194964.0
        },
        {
            "index": 2162,
            "rank": 86,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "54h 10' 26''",
            "gap": "+ 01h 09' 17''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4157.0,
            "times_seconds": 195026.0
        },
        {
            "index": 2163,
            "rank": 87,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 12' 01''",
            "gap": "+ 01h 10' 52''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4252.0,
            "times_seconds": 195121.0
        },
        {
            "index": 2164,
            "rank": 88,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "54h 16' 05''",
            "gap": "+ 01h 14' 56''",
            "b": "B : 10''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4496.0,
            "times_seconds": 195365.0
        },
        {
            "index": 2165,
            "rank": 89,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "54h 16' 17''",
            "gap": "+ 01h 15' 08''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4508.0,
            "times_seconds": 195377.0
        },
        {
            "index": 2166,
            "rank": 90,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 16' 22''",
            "gap": "+ 01h 15' 13''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4513.0,
            "times_seconds": 195382.0
        },
        {
            "index": 2167,
            "rank": 91,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "54h 17' 20''",
            "gap": "+ 01h 16' 11''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4571.0,
            "times_seconds": 195440.0
        },
        {
            "index": 2168,
            "rank": 92,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "54h 17' 25''",
            "gap": "+ 01h 16' 16''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4576.0,
            "times_seconds": 195445.0
        },
        {
            "index": 2169,
            "rank": 93,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "54h 17' 31''",
            "gap": "+ 01h 16' 22''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4582.0,
            "times_seconds": 195451.0
        },
        {
            "index": 2170,
            "rank": 94,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "54h 18' 26''",
            "gap": "+ 01h 17' 17''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4637.0,
            "times_seconds": 195506.0
        },
        {
            "index": 2171,
            "rank": 95,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "54h 18' 33''",
            "gap": "+ 01h 17' 24''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4644.0,
            "times_seconds": 195513.0
        },
        {
            "index": 2172,
            "rank": 96,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "54h 18' 44''",
            "gap": "+ 01h 17' 35''",
            "b": "B : 10''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4655.0,
            "times_seconds": 195524.0
        },
        {
            "index": 2173,
            "rank": 97,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "54h 19' 09''",
            "gap": "+ 01h 18' 00''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4680.0,
            "times_seconds": 195549.0
        },
        {
            "index": 2174,
            "rank": 98,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "54h 19' 38''",
            "gap": "+ 01h 18' 29''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4709.0,
            "times_seconds": 195578.0
        },
        {
            "index": 2175,
            "rank": 99,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 19' 38''",
            "gap": "+ 01h 18' 29''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4709.0,
            "times_seconds": 195578.0
        },
        {
            "index": 2176,
            "rank": 100,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "54h 20' 02''",
            "gap": "+ 01h 18' 53''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4733.0,
            "times_seconds": 195602.0
        },
        {
            "index": 2177,
            "rank": 101,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "54h 20' 29''",
            "gap": "+ 01h 19' 20''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4760.0,
            "times_seconds": 195629.0
        },
        {
            "index": 2178,
            "rank": 102,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "54h 20' 37''",
            "gap": "+ 01h 19' 28''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4768.0,
            "times_seconds": 195637.0
        },
        {
            "index": 2179,
            "rank": 103,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "54h 21' 10''",
            "gap": "+ 01h 20' 01''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4801.0,
            "times_seconds": 195670.0
        },
        {
            "index": 2180,
            "rank": 104,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "54h 21' 24''",
            "gap": "+ 01h 20' 15''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4815.0,
            "times_seconds": 195684.0
        },
        {
            "index": 2181,
            "rank": 105,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "54h 21' 48''",
            "gap": "+ 01h 20' 39''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4839.0,
            "times_seconds": 195708.0
        },
        {
            "index": 2182,
            "rank": 106,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "54h 22' 34''",
            "gap": "+ 01h 21' 25''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4885.0,
            "times_seconds": 195754.0
        },
        {
            "index": 2183,
            "rank": 107,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "54h 23' 07''",
            "gap": "+ 01h 21' 58''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 4918.0,
            "times_seconds": 195787.0
        },
        {
            "index": 2184,
            "rank": 108,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "54h 24' 41''",
            "gap": "+ 01h 23' 32''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5012.0,
            "times_seconds": 195881.0
        },
        {
            "index": 2185,
            "rank": 109,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "54h 25' 13''",
            "gap": "+ 01h 24' 04''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5044.0,
            "times_seconds": 195913.0
        },
        {
            "index": 2186,
            "rank": 110,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "54h 25' 17''",
            "gap": "+ 01h 24' 08''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5048.0,
            "times_seconds": 195917.0
        },
        {
            "index": 2187,
            "rank": 111,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "54h 26' 05''",
            "gap": "+ 01h 24' 56''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5096.0,
            "times_seconds": 195965.0
        },
        {
            "index": 2188,
            "rank": 112,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "54h 26' 26''",
            "gap": "+ 01h 25' 17''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5117.0,
            "times_seconds": 195986.0
        },
        {
            "index": 2189,
            "rank": 113,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 26' 50''",
            "gap": "+ 01h 25' 41''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5141.0,
            "times_seconds": 196010.0
        },
        {
            "index": 2190,
            "rank": 114,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 28' 06''",
            "gap": "+ 01h 26' 57''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5217.0,
            "times_seconds": 196086.0
        },
        {
            "index": 2191,
            "rank": 115,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "54h 30' 46''",
            "gap": "+ 01h 29' 37''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5377.0,
            "times_seconds": 196246.0
        },
        {
            "index": 2192,
            "rank": 116,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "54h 31' 20''",
            "gap": "+ 01h 30' 11''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5411.0,
            "times_seconds": 196280.0
        },
        {
            "index": 2193,
            "rank": 117,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "54h 31' 34''",
            "gap": "+ 01h 30' 25''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5425.0,
            "times_seconds": 196294.0
        },
        {
            "index": 2194,
            "rank": 118,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 34' 48''",
            "gap": "+ 01h 33' 39''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5619.0,
            "times_seconds": 196488.0
        },
        {
            "index": 2195,
            "rank": 119,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "54h 36' 56''",
            "gap": "+ 01h 35' 47''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5747.0,
            "times_seconds": 196616.0
        },
        {
            "index": 2196,
            "rank": 120,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "54h 38' 38''",
            "gap": "+ 01h 37' 29''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5849.0,
            "times_seconds": 196718.0
        },
        {
            "index": 2197,
            "rank": 121,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "54h 39' 03''",
            "gap": "+ 01h 37' 54''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5874.0,
            "times_seconds": 196743.0
        },
        {
            "index": 2198,
            "rank": 122,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "54h 39' 33''",
            "gap": "+ 01h 38' 24''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5904.0,
            "times_seconds": 196773.0
        },
        {
            "index": 2199,
            "rank": 123,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "54h 40' 15''",
            "gap": "+ 01h 39' 06''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5946.0,
            "times_seconds": 196815.0
        },
        {
            "index": 2200,
            "rank": 124,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "54h 41' 08''",
            "gap": "+ 01h 39' 59''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 5999.0,
            "times_seconds": 196868.0
        },
        {
            "index": 2201,
            "rank": 125,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 42' 17''",
            "gap": "+ 01h 41' 08''",
            "b": "B : 20''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6068.0,
            "times_seconds": 196937.0
        },
        {
            "index": 2202,
            "rank": 126,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "54h 43' 05''",
            "gap": "+ 01h 41' 56''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6116.0,
            "times_seconds": 196985.0
        },
        {
            "index": 2203,
            "rank": 127,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 43' 05''",
            "gap": "+ 01h 41' 56''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 13,
            "gap_seconds": 6116.0,
            "times_seconds": 196985.0
        },
        {
            "index": 2204,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "54h 43' 42''",
            "gap": "+ 01h 42' 33''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6153.0,
            "times_seconds": 197022.0
        },
        {
            "index": 2205,
            "rank": 129,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "54h 44' 09''",
            "gap": "+ 01h 43' 00''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6180.0,
            "times_seconds": 197049.0
        },
        {
            "index": 2206,
            "rank": 130,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "54h 44' 31''",
            "gap": "+ 01h 43' 22''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6202.0,
            "times_seconds": 197071.0
        },
        {
            "index": 2207,
            "rank": 131,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "54h 44' 51''",
            "gap": "+ 01h 43' 42''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6222.0,
            "times_seconds": 197091.0
        },
        {
            "index": 2208,
            "rank": 132,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "54h 45' 28''",
            "gap": "+ 01h 44' 19''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6259.0,
            "times_seconds": 197128.0
        },
        {
            "index": 2209,
            "rank": 133,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "54h 45' 50''",
            "gap": "+ 01h 44' 41''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6281.0,
            "times_seconds": 197150.0
        },
        {
            "index": 2210,
            "rank": 134,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "54h 45' 52''",
            "gap": "+ 01h 44' 43''",
            "b": "B : 28''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6283.0,
            "times_seconds": 197152.0
        },
        {
            "index": 2211,
            "rank": 135,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "54h 46' 12''",
            "gap": "+ 01h 45' 03''",
            "b": "B : 6''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6303.0,
            "times_seconds": 197172.0
        },
        {
            "index": 2212,
            "rank": 136,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "54h 46' 40''",
            "gap": "+ 01h 45' 31''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6331.0,
            "times_seconds": 197200.0
        },
        {
            "index": 2213,
            "rank": 137,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "54h 47' 21''",
            "gap": "+ 01h 46' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6372.0,
            "times_seconds": 197241.0
        },
        {
            "index": 2214,
            "rank": 138,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "54h 47' 27''",
            "gap": "+ 01h 46' 18''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6378.0,
            "times_seconds": 197247.0
        },
        {
            "index": 2215,
            "rank": 139,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "54h 47' 33''",
            "gap": "+ 01h 46' 24''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6384.0,
            "times_seconds": 197253.0
        },
        {
            "index": 2216,
            "rank": 140,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "54h 48' 01''",
            "gap": "+ 01h 46' 52''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6412.0,
            "times_seconds": 197281.0
        },
        {
            "index": 2217,
            "rank": 141,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "54h 49' 09''",
            "gap": "+ 01h 48' 00''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6480.0,
            "times_seconds": 197349.0
        },
        {
            "index": 2218,
            "rank": 142,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "54h 51' 23''",
            "gap": "+ 01h 50' 14''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6614.0,
            "times_seconds": 197483.0
        },
        {
            "index": 2219,
            "rank": 143,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "54h 53' 15''",
            "gap": "+ 01h 52' 06''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6726.0,
            "times_seconds": 197595.0
        },
        {
            "index": 2220,
            "rank": 144,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "54h 53' 24''",
            "gap": "+ 01h 52' 15''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6735.0,
            "times_seconds": 197604.0
        },
        {
            "index": 2221,
            "rank": 145,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 53' 25''",
            "gap": "+ 01h 52' 16''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6736.0,
            "times_seconds": 197605.0
        },
        {
            "index": 2222,
            "rank": 146,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 53' 30''",
            "gap": "+ 01h 52' 21''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6741.0,
            "times_seconds": 197610.0
        },
        {
            "index": 2223,
            "rank": 147,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "54h 54' 00''",
            "gap": "+ 01h 52' 51''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 13,
            "gap_seconds": 6771.0,
            "times_seconds": 197640.0
        },
        {
            "index": 2224,
            "rank": 148,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 54' 02''",
            "gap": "+ 01h 52' 53''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6773.0,
            "times_seconds": 197642.0
        },
        {
            "index": 2225,
            "rank": 149,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "54h 54' 12''",
            "gap": "+ 01h 53' 03''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6783.0,
            "times_seconds": 197652.0
        },
        {
            "index": 2226,
            "rank": 150,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 55' 20''",
            "gap": "+ 01h 54' 11''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6851.0,
            "times_seconds": 197720.0
        },
        {
            "index": 2227,
            "rank": 151,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "54h 55' 21''",
            "gap": "+ 01h 54' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6852.0,
            "times_seconds": 197721.0
        },
        {
            "index": 2228,
            "rank": 152,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "54h 55' 22''",
            "gap": "+ 01h 54' 13''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6853.0,
            "times_seconds": 197722.0
        },
        {
            "index": 2229,
            "rank": 153,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "54h 55' 31''",
            "gap": "+ 01h 54' 22''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6862.0,
            "times_seconds": 197731.0
        },
        {
            "index": 2230,
            "rank": 154,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "54h 55' 44''",
            "gap": "+ 01h 54' 35''",
            "b": "B : 16''",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6875.0,
            "times_seconds": 197744.0
        },
        {
            "index": 2231,
            "rank": 155,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "54h 56' 28''",
            "gap": "+ 01h 55' 19''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6919.0,
            "times_seconds": 197788.0
        },
        {
            "index": 2232,
            "rank": 156,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "54h 56' 42''",
            "gap": "+ 01h 55' 33''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 13,
            "gap_seconds": 6933.0,
            "times_seconds": 197802.0
        },
        {
            "index": 2233,
            "rank": 157,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "54h 57' 00''",
            "gap": "+ 01h 55' 51''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6951.0,
            "times_seconds": 197820.0
        },
        {
            "index": 2234,
            "rank": 158,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "54h 57' 02''",
            "gap": "+ 01h 55' 53''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6953.0,
            "times_seconds": 197822.0
        },
        {
            "index": 2235,
            "rank": 159,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "54h 57' 18''",
            "gap": "+ 01h 56' 09''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 6969.0,
            "times_seconds": 197838.0
        },
        {
            "index": 2236,
            "rank": 160,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "54h 58' 49''",
            "gap": "+ 01h 57' 40''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 7060.0,
            "times_seconds": 197929.0
        },
        {
            "index": 2237,
            "rank": 161,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "54h 58' 54''",
            "gap": "+ 01h 57' 45''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 7065.0,
            "times_seconds": 197934.0
        },
        {
            "index": 2238,
            "rank": 162,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "55h 04' 44''",
            "gap": "+ 02h 03' 35''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 7415.0,
            "times_seconds": 198284.0
        },
        {
            "index": 2239,
            "rank": 163,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "55h 04' 58''",
            "gap": "+ 02h 03' 49''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 7429.0,
            "times_seconds": 198298.0
        },
        {
            "index": 2240,
            "rank": 164,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "55h 09' 21''",
            "gap": "+ 02h 08' 12''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 7692.0,
            "times_seconds": 198561.0
        },
        {
            "index": 2241,
            "rank": 165,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "55h 20' 54''",
            "gap": "+ 02h 19' 45''",
            "b": "-",
            "p": "-",
            "stage": 13,
            "gap_seconds": 8385.0,
            "times_seconds": 199254.0
        },
        {
            "index": 2242,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "56h 11' 29''",
            "gap": "-",
            "b": "B : 30''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 0.0,
            "times_seconds": 202289.0
        },
        {
            "index": 2243,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "56h 13' 31''",
            "gap": "+ 00h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 122.0,
            "times_seconds": 202411.0
        },
        {
            "index": 2244,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "56h 13' 43''",
            "gap": "+ 00h 02' 14''",
            "b": "B : 4''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 134.0,
            "times_seconds": 202423.0
        },
        {
            "index": 2245,
            "rank": 4,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "56h 14' 29''",
            "gap": "+ 00h 03' 00''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 180.0,
            "times_seconds": 202469.0
        },
        {
            "index": 2246,
            "rank": 5,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "56h 14' 41''",
            "gap": "+ 00h 03' 12''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 192.0,
            "times_seconds": 202481.0
        },
        {
            "index": 2247,
            "rank": 6,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "56h 14' 41''",
            "gap": "+ 00h 03' 12''",
            "b": "B : 18''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 192.0,
            "times_seconds": 202481.0
        },
        {
            "index": 2248,
            "rank": 7,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "56h 15' 53''",
            "gap": "+ 00h 04' 24''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 264.0,
            "times_seconds": 202553.0
        },
        {
            "index": 2249,
            "rank": 8,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "56h 16' 51''",
            "gap": "+ 00h 05' 22''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 322.0,
            "times_seconds": 202611.0
        },
        {
            "index": 2250,
            "rank": 9,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "56h 16' 56''",
            "gap": "+ 00h 05' 27''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 327.0,
            "times_seconds": 202616.0
        },
        {
            "index": 2251,
            "rank": 10,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "56h 17' 07''",
            "gap": "+ 00h 05' 38''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 338.0,
            "times_seconds": 202627.0
        },
        {
            "index": 2252,
            "rank": 11,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "56h 17' 43''",
            "gap": "+ 00h 06' 14''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 374.0,
            "times_seconds": 202663.0
        },
        {
            "index": 2253,
            "rank": 12,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "56h 18' 18''",
            "gap": "+ 00h 06' 49''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 409.0,
            "times_seconds": 202698.0
        },
        {
            "index": 2254,
            "rank": 13,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "56h 18' 46''",
            "gap": "+ 00h 07' 17''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 437.0,
            "times_seconds": 202726.0
        },
        {
            "index": 2255,
            "rank": 14,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "56h 18' 48''",
            "gap": "+ 00h 07' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 439.0,
            "times_seconds": 202728.0
        },
        {
            "index": 2256,
            "rank": 15,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "56h 20' 32''",
            "gap": "+ 00h 09' 03''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 543.0,
            "times_seconds": 202832.0
        },
        {
            "index": 2257,
            "rank": 16,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "56h 21' 19''",
            "gap": "+ 00h 09' 50''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 590.0,
            "times_seconds": 202879.0
        },
        {
            "index": 2258,
            "rank": 17,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "56h 21' 24''",
            "gap": "+ 00h 09' 55''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 595.0,
            "times_seconds": 202884.0
        },
        {
            "index": 2259,
            "rank": 18,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "56h 22' 06''",
            "gap": "+ 00h 10' 37''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 637.0,
            "times_seconds": 202926.0
        },
        {
            "index": 2260,
            "rank": 19,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "56h 22' 29''",
            "gap": "+ 00h 11' 00''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 660.0,
            "times_seconds": 202949.0
        },
        {
            "index": 2261,
            "rank": 20,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "56h 22' 48''",
            "gap": "+ 00h 11' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 679.0,
            "times_seconds": 202968.0
        },
        {
            "index": 2262,
            "rank": 21,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "56h 24' 52''",
            "gap": "+ 00h 13' 23''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 803.0,
            "times_seconds": 203092.0
        },
        {
            "index": 2263,
            "rank": 22,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "56h 28' 42''",
            "gap": "+ 00h 17' 13''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1033.0,
            "times_seconds": 203322.0
        },
        {
            "index": 2264,
            "rank": 23,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "56h 30' 01''",
            "gap": "+ 00h 18' 32''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 14,
            "gap_seconds": 1112.0,
            "times_seconds": 203401.0
        },
        {
            "index": 2265,
            "rank": 24,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "56h 35' 08''",
            "gap": "+ 00h 23' 39''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1419.0,
            "times_seconds": 203708.0
        },
        {
            "index": 2266,
            "rank": 25,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "56h 37' 23''",
            "gap": "+ 00h 25' 54''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1554.0,
            "times_seconds": 203843.0
        },
        {
            "index": 2267,
            "rank": 26,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "56h 37' 34''",
            "gap": "+ 00h 26' 05''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1565.0,
            "times_seconds": 203854.0
        },
        {
            "index": 2268,
            "rank": 27,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "56h 37' 58''",
            "gap": "+ 00h 26' 29''",
            "b": "B : 4''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1589.0,
            "times_seconds": 203878.0
        },
        {
            "index": 2269,
            "rank": 28,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "56h 40' 40''",
            "gap": "+ 00h 29' 11''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 14,
            "gap_seconds": 1751.0,
            "times_seconds": 204040.0
        },
        {
            "index": 2270,
            "rank": 29,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "56h 41' 31''",
            "gap": "+ 00h 30' 02''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 1802.0,
            "times_seconds": 204091.0
        },
        {
            "index": 2271,
            "rank": 30,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "56h 46' 13''",
            "gap": "+ 00h 34' 44''",
            "b": "B : 2''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2084.0,
            "times_seconds": 204373.0
        },
        {
            "index": 2272,
            "rank": 31,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "56h 46' 15''",
            "gap": "+ 00h 34' 46''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2086.0,
            "times_seconds": 204375.0
        },
        {
            "index": 2273,
            "rank": 32,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "56h 46' 25''",
            "gap": "+ 00h 34' 56''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2096.0,
            "times_seconds": 204385.0
        },
        {
            "index": 2274,
            "rank": 33,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "56h 48' 19''",
            "gap": "+ 00h 36' 50''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2210.0,
            "times_seconds": 204499.0
        },
        {
            "index": 2275,
            "rank": 34,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "56h 48' 32''",
            "gap": "+ 00h 37' 03''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2223.0,
            "times_seconds": 204512.0
        },
        {
            "index": 2276,
            "rank": 35,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "56h 51' 39''",
            "gap": "+ 00h 40' 10''",
            "b": "B : 14''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2410.0,
            "times_seconds": 204699.0
        },
        {
            "index": 2277,
            "rank": 36,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "56h 54' 04''",
            "gap": "+ 00h 42' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2555.0,
            "times_seconds": 204844.0
        },
        {
            "index": 2278,
            "rank": 37,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "56h 54' 25''",
            "gap": "+ 00h 42' 56''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2576.0,
            "times_seconds": 204865.0
        },
        {
            "index": 2279,
            "rank": 38,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "56h 54' 33''",
            "gap": "+ 00h 43' 04''",
            "b": "B : 9''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2584.0,
            "times_seconds": 204873.0
        },
        {
            "index": 2280,
            "rank": 39,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "56h 54' 51''",
            "gap": "+ 00h 43' 22''",
            "b": "B : 4''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2602.0,
            "times_seconds": 204891.0
        },
        {
            "index": 2281,
            "rank": 40,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "56h 57' 11''",
            "gap": "+ 00h 45' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2742.0,
            "times_seconds": 205031.0
        },
        {
            "index": 2282,
            "rank": 41,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "56h 57' 55''",
            "gap": "+ 00h 46' 26''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2786.0,
            "times_seconds": 205075.0
        },
        {
            "index": 2283,
            "rank": 42,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "56h 58' 55''",
            "gap": "+ 00h 47' 26''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2846.0,
            "times_seconds": 205135.0
        },
        {
            "index": 2284,
            "rank": 43,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "56h 59' 55''",
            "gap": "+ 00h 48' 26''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2906.0,
            "times_seconds": 205195.0
        },
        {
            "index": 2285,
            "rank": 44,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "57h 00' 24''",
            "gap": "+ 00h 48' 55''",
            "b": "B : 6''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2935.0,
            "times_seconds": 205224.0
        },
        {
            "index": 2286,
            "rank": 45,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "57h 00' 43''",
            "gap": "+ 00h 49' 14''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2954.0,
            "times_seconds": 205243.0
        },
        {
            "index": 2287,
            "rank": 46,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "57h 01' 00''",
            "gap": "+ 00h 49' 31''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 2971.0,
            "times_seconds": 205260.0
        },
        {
            "index": 2288,
            "rank": 47,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "57h 02' 09''",
            "gap": "+ 00h 50' 40''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3040.0,
            "times_seconds": 205329.0
        },
        {
            "index": 2289,
            "rank": 48,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "57h 03' 46''",
            "gap": "+ 00h 52' 17''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3137.0,
            "times_seconds": 205426.0
        },
        {
            "index": 2290,
            "rank": 49,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "57h 03' 57''",
            "gap": "+ 00h 52' 28''",
            "b": "B : 8''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3148.0,
            "times_seconds": 205437.0
        },
        {
            "index": 2291,
            "rank": 50,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "57h 04' 39''",
            "gap": "+ 00h 53' 10''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3190.0,
            "times_seconds": 205479.0
        },
        {
            "index": 2292,
            "rank": 51,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "57h 06' 28''",
            "gap": "+ 00h 54' 59''",
            "b": "B : 11''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3299.0,
            "times_seconds": 205588.0
        },
        {
            "index": 2293,
            "rank": 52,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "57h 06' 48''",
            "gap": "+ 00h 55' 19''",
            "b": "B : 15''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3319.0,
            "times_seconds": 205608.0
        },
        {
            "index": 2294,
            "rank": 53,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "57h 06' 52''",
            "gap": "+ 00h 55' 23''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3323.0,
            "times_seconds": 205612.0
        },
        {
            "index": 2295,
            "rank": 54,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "57h 07' 37''",
            "gap": "+ 00h 56' 08''",
            "b": "B : 2''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3368.0,
            "times_seconds": 205657.0
        },
        {
            "index": 2296,
            "rank": 55,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "57h 07' 51''",
            "gap": "+ 00h 56' 22''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3382.0,
            "times_seconds": 205671.0
        },
        {
            "index": 2297,
            "rank": 56,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "57h 09' 49''",
            "gap": "+ 00h 58' 20''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3500.0,
            "times_seconds": 205789.0
        },
        {
            "index": 2298,
            "rank": 57,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "57h 11' 48''",
            "gap": "+ 01h 00' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3619.0,
            "times_seconds": 205908.0
        },
        {
            "index": 2299,
            "rank": 58,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "57h 12' 42''",
            "gap": "+ 01h 01' 13''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3673.0,
            "times_seconds": 205962.0
        },
        {
            "index": 2300,
            "rank": 59,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "57h 13' 29''",
            "gap": "+ 01h 02' 00''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3720.0,
            "times_seconds": 206009.0
        },
        {
            "index": 2301,
            "rank": 60,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "57h 13' 45''",
            "gap": "+ 01h 02' 16''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3736.0,
            "times_seconds": 206025.0
        },
        {
            "index": 2302,
            "rank": 61,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "57h 14' 26''",
            "gap": "+ 01h 02' 57''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3777.0,
            "times_seconds": 206066.0
        },
        {
            "index": 2303,
            "rank": 62,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "57h 15' 17''",
            "gap": "+ 01h 03' 48''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3828.0,
            "times_seconds": 206117.0
        },
        {
            "index": 2304,
            "rank": 63,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "57h 16' 57''",
            "gap": "+ 01h 05' 28''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3928.0,
            "times_seconds": 206217.0
        },
        {
            "index": 2305,
            "rank": 64,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "57h 17' 20''",
            "gap": "+ 01h 05' 51''",
            "b": "B : 20''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 3951.0,
            "times_seconds": 206240.0
        },
        {
            "index": 2306,
            "rank": 65,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "57h 18' 36''",
            "gap": "+ 01h 07' 07''",
            "b": "B : 18''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4027.0,
            "times_seconds": 206316.0
        },
        {
            "index": 2307,
            "rank": 66,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "57h 18' 42''",
            "gap": "+ 01h 07' 13''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 14,
            "gap_seconds": 4033.0,
            "times_seconds": 206322.0
        },
        {
            "index": 2308,
            "rank": 67,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "57h 19' 50''",
            "gap": "+ 01h 08' 21''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4101.0,
            "times_seconds": 206390.0
        },
        {
            "index": 2309,
            "rank": 68,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "57h 20' 32''",
            "gap": "+ 01h 09' 03''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4143.0,
            "times_seconds": 206432.0
        },
        {
            "index": 2310,
            "rank": 69,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "57h 21' 36''",
            "gap": "+ 01h 10' 07''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4207.0,
            "times_seconds": 206496.0
        },
        {
            "index": 2311,
            "rank": 70,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "57h 21' 48''",
            "gap": "+ 01h 10' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4219.0,
            "times_seconds": 206508.0
        },
        {
            "index": 2312,
            "rank": 71,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "57h 23' 17''",
            "gap": "+ 01h 11' 48''",
            "b": "B : 18''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4308.0,
            "times_seconds": 206597.0
        },
        {
            "index": 2313,
            "rank": 72,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "57h 26' 28''",
            "gap": "+ 01h 14' 59''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4499.0,
            "times_seconds": 206788.0
        },
        {
            "index": 2314,
            "rank": 73,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "57h 28' 19''",
            "gap": "+ 01h 16' 50''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4610.0,
            "times_seconds": 206899.0
        },
        {
            "index": 2315,
            "rank": 74,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "57h 28' 56''",
            "gap": "+ 01h 17' 27''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4647.0,
            "times_seconds": 206936.0
        },
        {
            "index": 2316,
            "rank": 75,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "57h 29' 12''",
            "gap": "+ 01h 17' 43''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4663.0,
            "times_seconds": 206952.0
        },
        {
            "index": 2317,
            "rank": 76,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "57h 30' 08''",
            "gap": "+ 01h 18' 39''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4719.0,
            "times_seconds": 207008.0
        },
        {
            "index": 2318,
            "rank": 77,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "57h 30' 43''",
            "gap": "+ 01h 19' 14''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4754.0,
            "times_seconds": 207043.0
        },
        {
            "index": 2319,
            "rank": 78,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "57h 31' 04''",
            "gap": "+ 01h 19' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4775.0,
            "times_seconds": 207064.0
        },
        {
            "index": 2320,
            "rank": 79,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "57h 31' 21''",
            "gap": "+ 01h 19' 52''",
            "b": "B : 18''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4792.0,
            "times_seconds": 207081.0
        },
        {
            "index": 2321,
            "rank": 80,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "57h 31' 26''",
            "gap": "+ 01h 19' 57''",
            "b": "B : 4''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4797.0,
            "times_seconds": 207086.0
        },
        {
            "index": 2322,
            "rank": 81,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "57h 31' 41''",
            "gap": "+ 01h 20' 12''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4812.0,
            "times_seconds": 207101.0
        },
        {
            "index": 2323,
            "rank": 82,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "57h 33' 24''",
            "gap": "+ 01h 21' 55''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4915.0,
            "times_seconds": 207204.0
        },
        {
            "index": 2324,
            "rank": 83,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "57h 33' 47''",
            "gap": "+ 01h 22' 18''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 4938.0,
            "times_seconds": 207227.0
        },
        {
            "index": 2325,
            "rank": 84,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "57h 37' 52''",
            "gap": "+ 01h 26' 23''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5183.0,
            "times_seconds": 207472.0
        },
        {
            "index": 2326,
            "rank": 85,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "57h 40' 03''",
            "gap": "+ 01h 28' 34''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5314.0,
            "times_seconds": 207603.0
        },
        {
            "index": 2327,
            "rank": 86,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "57h 40' 44''",
            "gap": "+ 01h 29' 15''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5355.0,
            "times_seconds": 207644.0
        },
        {
            "index": 2328,
            "rank": 87,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "57h 41' 05''",
            "gap": "+ 01h 29' 36''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5376.0,
            "times_seconds": 207665.0
        },
        {
            "index": 2329,
            "rank": 88,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "57h 41' 44''",
            "gap": "+ 01h 30' 15''",
            "b": "B : 10''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5415.0,
            "times_seconds": 207704.0
        },
        {
            "index": 2330,
            "rank": 89,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "57h 42' 02''",
            "gap": "+ 01h 30' 33''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5433.0,
            "times_seconds": 207722.0
        },
        {
            "index": 2331,
            "rank": 90,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "57h 44' 00''",
            "gap": "+ 01h 32' 31''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5551.0,
            "times_seconds": 207840.0
        },
        {
            "index": 2332,
            "rank": 91,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "57h 47' 33''",
            "gap": "+ 01h 36' 04''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5764.0,
            "times_seconds": 208053.0
        },
        {
            "index": 2333,
            "rank": 92,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "57h 48' 04''",
            "gap": "+ 01h 36' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5795.0,
            "times_seconds": 208084.0
        },
        {
            "index": 2334,
            "rank": 93,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "57h 49' 05''",
            "gap": "+ 01h 37' 36''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5856.0,
            "times_seconds": 208145.0
        },
        {
            "index": 2335,
            "rank": 94,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "57h 49' 12''",
            "gap": "+ 01h 37' 43''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5863.0,
            "times_seconds": 208152.0
        },
        {
            "index": 2336,
            "rank": 95,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "57h 49' 23''",
            "gap": "+ 01h 37' 54''",
            "b": "B : 10''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5874.0,
            "times_seconds": 208163.0
        },
        {
            "index": 2337,
            "rank": 96,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "57h 49' 43''",
            "gap": "+ 01h 38' 14''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5894.0,
            "times_seconds": 208183.0
        },
        {
            "index": 2338,
            "rank": 97,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "57h 50' 09''",
            "gap": "+ 01h 38' 40''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5920.0,
            "times_seconds": 208209.0
        },
        {
            "index": 2339,
            "rank": 98,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "57h 50' 17''",
            "gap": "+ 01h 38' 48''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5928.0,
            "times_seconds": 208217.0
        },
        {
            "index": 2340,
            "rank": 99,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "57h 51' 06''",
            "gap": "+ 01h 39' 37''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5977.0,
            "times_seconds": 208266.0
        },
        {
            "index": 2341,
            "rank": 100,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "57h 51' 12''",
            "gap": "+ 01h 39' 43''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 5983.0,
            "times_seconds": 208272.0
        },
        {
            "index": 2342,
            "rank": 101,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "57h 51' 58''",
            "gap": "+ 01h 40' 29''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6029.0,
            "times_seconds": 208318.0
        },
        {
            "index": 2343,
            "rank": 102,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "57h 52' 27''",
            "gap": "+ 01h 40' 58''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6058.0,
            "times_seconds": 208347.0
        },
        {
            "index": 2344,
            "rank": 103,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "57h 53' 10''",
            "gap": "+ 01h 41' 41''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6101.0,
            "times_seconds": 208390.0
        },
        {
            "index": 2345,
            "rank": 104,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "57h 53' 25''",
            "gap": "+ 01h 41' 56''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6116.0,
            "times_seconds": 208405.0
        },
        {
            "index": 2346,
            "rank": 105,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "57h 54' 49''",
            "gap": "+ 01h 43' 20''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6200.0,
            "times_seconds": 208489.0
        },
        {
            "index": 2347,
            "rank": 106,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "57h 55' 20''",
            "gap": "+ 01h 43' 51''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6231.0,
            "times_seconds": 208520.0
        },
        {
            "index": 2348,
            "rank": 107,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "57h 57' 18''",
            "gap": "+ 01h 45' 49''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6349.0,
            "times_seconds": 208638.0
        },
        {
            "index": 2349,
            "rank": 108,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "57h 57' 29''",
            "gap": "+ 01h 46' 00''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6360.0,
            "times_seconds": 208649.0
        },
        {
            "index": 2350,
            "rank": 109,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "57h 57' 40''",
            "gap": "+ 01h 46' 11''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6371.0,
            "times_seconds": 208660.0
        },
        {
            "index": 2351,
            "rank": 110,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "57h 57' 51''",
            "gap": "+ 01h 46' 22''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6382.0,
            "times_seconds": 208671.0
        },
        {
            "index": 2352,
            "rank": 111,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "57h 58' 45''",
            "gap": "+ 01h 47' 16''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6436.0,
            "times_seconds": 208725.0
        },
        {
            "index": 2353,
            "rank": 112,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "57h 59' 52''",
            "gap": "+ 01h 48' 23''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6503.0,
            "times_seconds": 208792.0
        },
        {
            "index": 2354,
            "rank": 113,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "58h 00' 21''",
            "gap": "+ 01h 48' 52''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6532.0,
            "times_seconds": 208821.0
        },
        {
            "index": 2355,
            "rank": 114,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "58h 01' 25''",
            "gap": "+ 01h 49' 56''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6596.0,
            "times_seconds": 208885.0
        },
        {
            "index": 2356,
            "rank": 115,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "58h 02' 13''",
            "gap": "+ 01h 50' 44''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6644.0,
            "times_seconds": 208933.0
        },
        {
            "index": 2357,
            "rank": 116,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "58h 05' 27''",
            "gap": "+ 01h 53' 58''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6838.0,
            "times_seconds": 209127.0
        },
        {
            "index": 2358,
            "rank": 117,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "58h 07' 27''",
            "gap": "+ 01h 55' 58''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6958.0,
            "times_seconds": 209247.0
        },
        {
            "index": 2359,
            "rank": 118,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "58h 07' 35''",
            "gap": "+ 01h 56' 06''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 6966.0,
            "times_seconds": 209255.0
        },
        {
            "index": 2360,
            "rank": 119,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "58h 09' 17''",
            "gap": "+ 01h 57' 48''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7068.0,
            "times_seconds": 209357.0
        },
        {
            "index": 2361,
            "rank": 120,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "58h 10' 27''",
            "gap": "+ 01h 58' 58''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7138.0,
            "times_seconds": 209427.0
        },
        {
            "index": 2362,
            "rank": 121,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "58h 14' 04''",
            "gap": "+ 02h 02' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7355.0,
            "times_seconds": 209644.0
        },
        {
            "index": 2363,
            "rank": 122,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "58h 14' 17''",
            "gap": "+ 02h 02' 48''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7368.0,
            "times_seconds": 209657.0
        },
        {
            "index": 2364,
            "rank": 123,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "58h 15' 05''",
            "gap": "+ 02h 03' 36''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7416.0,
            "times_seconds": 209705.0
        },
        {
            "index": 2365,
            "rank": 124,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "58h 16' 36''",
            "gap": "+ 02h 05' 07''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 14,
            "gap_seconds": 7507.0,
            "times_seconds": 209796.0
        },
        {
            "index": 2366,
            "rank": 125,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "58h 17' 16''",
            "gap": "+ 02h 05' 47''",
            "b": "B : 28''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7547.0,
            "times_seconds": 209836.0
        },
        {
            "index": 2367,
            "rank": 126,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "58h 17' 44''",
            "gap": "+ 02h 06' 15''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7575.0,
            "times_seconds": 209864.0
        },
        {
            "index": 2368,
            "rank": 127,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "58h 18' 00''",
            "gap": "+ 02h 06' 31''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7591.0,
            "times_seconds": 209880.0
        },
        {
            "index": 2369,
            "rank": 128,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "58h 18' 03''",
            "gap": "+ 02h 06' 34''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7594.0,
            "times_seconds": 209883.0
        },
        {
            "index": 2370,
            "rank": 129,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "58h 18' 06''",
            "gap": "+ 02h 06' 37''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7597.0,
            "times_seconds": 209886.0
        },
        {
            "index": 2371,
            "rank": 130,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "58h 18' 20''",
            "gap": "+ 02h 06' 51''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7611.0,
            "times_seconds": 209900.0
        },
        {
            "index": 2372,
            "rank": 131,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "58h 18' 34''",
            "gap": "+ 02h 07' 05''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7625.0,
            "times_seconds": 209914.0
        },
        {
            "index": 2373,
            "rank": 132,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "58h 19' 35''",
            "gap": "+ 02h 08' 06''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7686.0,
            "times_seconds": 209975.0
        },
        {
            "index": 2374,
            "rank": 133,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "58h 19' 46''",
            "gap": "+ 02h 08' 17''",
            "b": "B : 20''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7697.0,
            "times_seconds": 209986.0
        },
        {
            "index": 2375,
            "rank": 134,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "58h 20' 12''",
            "gap": "+ 02h 08' 43''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7723.0,
            "times_seconds": 210012.0
        },
        {
            "index": 2376,
            "rank": 135,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "58h 20' 28''",
            "gap": "+ 02h 08' 59''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7739.0,
            "times_seconds": 210028.0
        },
        {
            "index": 2377,
            "rank": 136,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "58h 21' 48''",
            "gap": "+ 02h 10' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7819.0,
            "times_seconds": 210108.0
        },
        {
            "index": 2378,
            "rank": 137,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "58h 22' 17''",
            "gap": "+ 02h 10' 48''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7848.0,
            "times_seconds": 210137.0
        },
        {
            "index": 2379,
            "rank": 138,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "58h 24' 28''",
            "gap": "+ 02h 12' 59''",
            "b": "B : 6''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7979.0,
            "times_seconds": 210268.0
        },
        {
            "index": 2380,
            "rank": 139,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "58h 24' 41''",
            "gap": "+ 02h 13' 12''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7992.0,
            "times_seconds": 210281.0
        },
        {
            "index": 2381,
            "rank": 140,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "58h 24' 48''",
            "gap": "+ 02h 13' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 7999.0,
            "times_seconds": 210288.0
        },
        {
            "index": 2382,
            "rank": 141,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "58h 25' 36''",
            "gap": "+ 02h 14' 07''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8047.0,
            "times_seconds": 210336.0
        },
        {
            "index": 2383,
            "rank": 142,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "58h 26' 04''",
            "gap": "+ 02h 14' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8075.0,
            "times_seconds": 210364.0
        },
        {
            "index": 2384,
            "rank": 143,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "58h 27' 52''",
            "gap": "+ 02h 16' 23''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8183.0,
            "times_seconds": 210472.0
        },
        {
            "index": 2385,
            "rank": 144,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "58h 27' 59''",
            "gap": "+ 02h 16' 30''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8190.0,
            "times_seconds": 210479.0
        },
        {
            "index": 2386,
            "rank": 145,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "58h 29' 13''",
            "gap": "+ 02h 17' 44''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8264.0,
            "times_seconds": 210553.0
        },
        {
            "index": 2387,
            "rank": 146,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "58h 29' 42''",
            "gap": "+ 02h 18' 13''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8293.0,
            "times_seconds": 210582.0
        },
        {
            "index": 2388,
            "rank": 147,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "58h 29' 48''",
            "gap": "+ 02h 18' 19''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8299.0,
            "times_seconds": 210588.0
        },
        {
            "index": 2389,
            "rank": 148,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "58h 29' 53''",
            "gap": "+ 02h 18' 24''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8304.0,
            "times_seconds": 210593.0
        },
        {
            "index": 2390,
            "rank": 149,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "58h 30' 04''",
            "gap": "+ 02h 18' 35''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8315.0,
            "times_seconds": 210604.0
        },
        {
            "index": 2391,
            "rank": 150,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "58h 31' 10''",
            "gap": "+ 02h 19' 41''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8381.0,
            "times_seconds": 210670.0
        },
        {
            "index": 2392,
            "rank": 151,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "58h 31' 20''",
            "gap": "+ 02h 19' 51''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 14,
            "gap_seconds": 8391.0,
            "times_seconds": 210680.0
        },
        {
            "index": 2393,
            "rank": 152,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "58h 31' 20''",
            "gap": "+ 02h 19' 51''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8391.0,
            "times_seconds": 210680.0
        },
        {
            "index": 2394,
            "rank": 153,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "58h 31' 29''",
            "gap": "+ 02h 20' 00''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 14,
            "gap_seconds": 8400.0,
            "times_seconds": 210689.0
        },
        {
            "index": 2395,
            "rank": 154,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "58h 31' 44''",
            "gap": "+ 02h 20' 15''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8415.0,
            "times_seconds": 210704.0
        },
        {
            "index": 2396,
            "rank": 155,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "58h 32' 18''",
            "gap": "+ 02h 20' 49''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8449.0,
            "times_seconds": 210738.0
        },
        {
            "index": 2397,
            "rank": 156,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "58h 32' 51''",
            "gap": "+ 02h 21' 22''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8482.0,
            "times_seconds": 210771.0
        },
        {
            "index": 2398,
            "rank": 157,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "58h 33' 00''",
            "gap": "+ 02h 21' 31''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8491.0,
            "times_seconds": 210780.0
        },
        {
            "index": 2399,
            "rank": 158,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "58h 33' 13''",
            "gap": "+ 02h 21' 44''",
            "b": "B : 16''",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8504.0,
            "times_seconds": 210793.0
        },
        {
            "index": 2400,
            "rank": 159,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "58h 33' 38''",
            "gap": "+ 02h 22' 09''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8529.0,
            "times_seconds": 210818.0
        },
        {
            "index": 2401,
            "rank": 160,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "58h 33' 43''",
            "gap": "+ 02h 22' 14''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8534.0,
            "times_seconds": 210823.0
        },
        {
            "index": 2402,
            "rank": 161,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "58h 38' 03''",
            "gap": "+ 02h 26' 34''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 8794.0,
            "times_seconds": 211083.0
        },
        {
            "index": 2403,
            "rank": 162,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "58h 44' 29''",
            "gap": "+ 02h 33' 00''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 9180.0,
            "times_seconds": 211469.0
        },
        {
            "index": 2404,
            "rank": 163,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "58h 46' 50''",
            "gap": "+ 02h 35' 21''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 9321.0,
            "times_seconds": 211610.0
        },
        {
            "index": 2405,
            "rank": 164,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "58h 57' 44''",
            "gap": "+ 02h 46' 15''",
            "b": "-",
            "p": "-",
            "stage": 14,
            "gap_seconds": 9975.0,
            "times_seconds": 212264.0
        },
        {
            "index": 2406,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "61h 00' 22''",
            "gap": "-",
            "b": "B : 30''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 0.0,
            "times_seconds": 219622.0
        },
        {
            "index": 2407,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "61h 01' 57''",
            "gap": "+ 00h 01' 35''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 95.0,
            "times_seconds": 219717.0
        },
        {
            "index": 2408,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "61h 02' 09''",
            "gap": "+ 00h 01' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 107.0,
            "times_seconds": 219729.0
        },
        {
            "index": 2409,
            "rank": 4,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "61h 02' 12''",
            "gap": "+ 00h 01' 50''",
            "b": "B : 24''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 110.0,
            "times_seconds": 219732.0
        },
        {
            "index": 2410,
            "rank": 5,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "61h 02' 24''",
            "gap": "+ 00h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 122.0,
            "times_seconds": 219744.0
        },
        {
            "index": 2411,
            "rank": 6,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "61h 02' 36''",
            "gap": "+ 00h 02' 14''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 134.0,
            "times_seconds": 219756.0
        },
        {
            "index": 2412,
            "rank": 7,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "61h 05' 16''",
            "gap": "+ 00h 04' 54''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 294.0,
            "times_seconds": 219916.0
        },
        {
            "index": 2413,
            "rank": 8,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "61h 05' 22''",
            "gap": "+ 00h 05' 00''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 300.0,
            "times_seconds": 219922.0
        },
        {
            "index": 2414,
            "rank": 9,
            "rider": "Jakob Fuglsang",
            "rider no.": 71,
            "team": "Astana Pro Team",
            "times": "61h 05' 49''",
            "gap": "+ 00h 05' 27''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 327.0,
            "times_seconds": 219949.0
        },
        {
            "index": 2415,
            "rank": 10,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "61h 05' 55''",
            "gap": "+ 00h 05' 33''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 333.0,
            "times_seconds": 219955.0
        },
        {
            "index": 2416,
            "rank": 11,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "61h 06' 52''",
            "gap": "+ 00h 06' 30''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 390.0,
            "times_seconds": 220012.0
        },
        {
            "index": 2417,
            "rank": 12,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "61h 07' 44''",
            "gap": "+ 00h 07' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 442.0,
            "times_seconds": 220064.0
        },
        {
            "index": 2418,
            "rank": 13,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "61h 08' 50''",
            "gap": "+ 00h 08' 28''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 508.0,
            "times_seconds": 220130.0
        },
        {
            "index": 2419,
            "rank": 14,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "61h 11' 26''",
            "gap": "+ 00h 11' 04''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 664.0,
            "times_seconds": 220286.0
        },
        {
            "index": 2420,
            "rank": 15,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "61h 12' 01''",
            "gap": "+ 00h 11' 39''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 699.0,
            "times_seconds": 220321.0
        },
        {
            "index": 2421,
            "rank": 16,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "61h 14' 04''",
            "gap": "+ 00h 13' 42''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 822.0,
            "times_seconds": 220444.0
        },
        {
            "index": 2422,
            "rank": 17,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "61h 14' 37''",
            "gap": "+ 00h 14' 15''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 855.0,
            "times_seconds": 220477.0
        },
        {
            "index": 2423,
            "rank": 18,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "61h 14' 53''",
            "gap": "+ 00h 14' 31''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 871.0,
            "times_seconds": 220493.0
        },
        {
            "index": 2424,
            "rank": 19,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "61h 27' 34''",
            "gap": "+ 00h 27' 12''",
            "b": "B : 2''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 1632.0,
            "times_seconds": 221254.0
        },
        {
            "index": 2425,
            "rank": 20,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "61h 28' 47''",
            "gap": "+ 00h 28' 25''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 1705.0,
            "times_seconds": 221327.0
        },
        {
            "index": 2426,
            "rank": 21,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "61h 28' 47''",
            "gap": "+ 00h 28' 25''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 15,
            "gap_seconds": 1705.0,
            "times_seconds": 221327.0
        },
        {
            "index": 2427,
            "rank": 22,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "61h 29' 11''",
            "gap": "+ 00h 28' 49''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 1729.0,
            "times_seconds": 221351.0
        },
        {
            "index": 2428,
            "rank": 23,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "61h 30' 39''",
            "gap": "+ 00h 30' 17''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 15,
            "gap_seconds": 1817.0,
            "times_seconds": 221439.0
        },
        {
            "index": 2429,
            "rank": 24,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "61h 33' 40''",
            "gap": "+ 00h 33' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 1998.0,
            "times_seconds": 221620.0
        },
        {
            "index": 2430,
            "rank": 25,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "61h 34' 33''",
            "gap": "+ 00h 34' 11''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2051.0,
            "times_seconds": 221673.0
        },
        {
            "index": 2431,
            "rank": 26,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "61h 35' 40''",
            "gap": "+ 00h 35' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2118.0,
            "times_seconds": 221740.0
        },
        {
            "index": 2432,
            "rank": 27,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "61h 36' 16''",
            "gap": "+ 00h 35' 54''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2154.0,
            "times_seconds": 221776.0
        },
        {
            "index": 2433,
            "rank": 28,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "61h 39' 43''",
            "gap": "+ 00h 39' 21''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2361.0,
            "times_seconds": 221983.0
        },
        {
            "index": 2434,
            "rank": 29,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "61h 42' 34''",
            "gap": "+ 00h 42' 12''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2532.0,
            "times_seconds": 222154.0
        },
        {
            "index": 2435,
            "rank": 30,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "61h 45' 44''",
            "gap": "+ 00h 45' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2722.0,
            "times_seconds": 222344.0
        },
        {
            "index": 2436,
            "rank": 31,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "61h 47' 50''",
            "gap": "+ 00h 47' 28''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2848.0,
            "times_seconds": 222470.0
        },
        {
            "index": 2437,
            "rank": 32,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "61h 48' 44''",
            "gap": "+ 00h 48' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 2902.0,
            "times_seconds": 222524.0
        },
        {
            "index": 2438,
            "rank": 33,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "61h 51' 40''",
            "gap": "+ 00h 51' 18''",
            "b": "B : 14''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3078.0,
            "times_seconds": 222700.0
        },
        {
            "index": 2439,
            "rank": 34,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "61h 53' 19''",
            "gap": "+ 00h 52' 57''",
            "b": "B : 9''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3177.0,
            "times_seconds": 222799.0
        },
        {
            "index": 2440,
            "rank": 35,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "61h 54' 19''",
            "gap": "+ 00h 53' 57''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3237.0,
            "times_seconds": 222859.0
        },
        {
            "index": 2441,
            "rank": 36,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "61h 56' 44''",
            "gap": "+ 00h 56' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3382.0,
            "times_seconds": 223004.0
        },
        {
            "index": 2442,
            "rank": 37,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "61h 57' 47''",
            "gap": "+ 00h 57' 25''",
            "b": "B : 2''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3445.0,
            "times_seconds": 223067.0
        },
        {
            "index": 2443,
            "rank": 38,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "61h 59' 05''",
            "gap": "+ 00h 58' 43''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3523.0,
            "times_seconds": 223145.0
        },
        {
            "index": 2444,
            "rank": 39,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "61h 59' 19''",
            "gap": "+ 00h 58' 57''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3537.0,
            "times_seconds": 223159.0
        },
        {
            "index": 2445,
            "rank": 40,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "62h 00' 44''",
            "gap": "+ 01h 00' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3622.0,
            "times_seconds": 223244.0
        },
        {
            "index": 2446,
            "rank": 41,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "62h 01' 40''",
            "gap": "+ 01h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3678.0,
            "times_seconds": 223300.0
        },
        {
            "index": 2447,
            "rank": 42,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "62h 03' 58''",
            "gap": "+ 01h 03' 36''",
            "b": "B : 8''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3816.0,
            "times_seconds": 223438.0
        },
        {
            "index": 2448,
            "rank": 43,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "62h 06' 23''",
            "gap": "+ 01h 06' 01''",
            "b": "B : 2''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 3961.0,
            "times_seconds": 223583.0
        },
        {
            "index": 2449,
            "rank": 44,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "62h 10' 32''",
            "gap": "+ 01h 10' 10''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4210.0,
            "times_seconds": 223832.0
        },
        {
            "index": 2450,
            "rank": 45,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "62h 11' 03''",
            "gap": "+ 01h 10' 41''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4241.0,
            "times_seconds": 223863.0
        },
        {
            "index": 2451,
            "rank": 46,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "62h 11' 38''",
            "gap": "+ 01h 11' 16''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4276.0,
            "times_seconds": 223898.0
        },
        {
            "index": 2452,
            "rank": 47,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "62h 12' 03''",
            "gap": "+ 01h 11' 41''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4301.0,
            "times_seconds": 223923.0
        },
        {
            "index": 2453,
            "rank": 48,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "62h 12' 47''",
            "gap": "+ 01h 12' 25''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4345.0,
            "times_seconds": 223967.0
        },
        {
            "index": 2454,
            "rank": 49,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "62h 13' 47''",
            "gap": "+ 01h 13' 25''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4405.0,
            "times_seconds": 224027.0
        },
        {
            "index": 2455,
            "rank": 50,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "62h 14' 16''",
            "gap": "+ 01h 13' 54''",
            "b": "B : 6''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4434.0,
            "times_seconds": 224056.0
        },
        {
            "index": 2456,
            "rank": 51,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "62h 18' 09''",
            "gap": "+ 01h 17' 47''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4667.0,
            "times_seconds": 224289.0
        },
        {
            "index": 2457,
            "rank": 52,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "62h 18' 10''",
            "gap": "+ 01h 17' 48''",
            "b": "B : 33''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4668.0,
            "times_seconds": 224290.0
        },
        {
            "index": 2458,
            "rank": 53,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "62h 18' 12''",
            "gap": "+ 01h 17' 50''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4670.0,
            "times_seconds": 224292.0
        },
        {
            "index": 2459,
            "rank": 54,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "62h 18' 50''",
            "gap": "+ 01h 18' 28''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4708.0,
            "times_seconds": 224330.0
        },
        {
            "index": 2460,
            "rank": 55,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "62h 19' 45''",
            "gap": "+ 01h 19' 23''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4763.0,
            "times_seconds": 224385.0
        },
        {
            "index": 2461,
            "rank": 56,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "62h 20' 20''",
            "gap": "+ 01h 19' 58''",
            "b": "B : 11''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4798.0,
            "times_seconds": 224420.0
        },
        {
            "index": 2462,
            "rank": 57,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "62h 20' 44''",
            "gap": "+ 01h 20' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4822.0,
            "times_seconds": 224444.0
        },
        {
            "index": 2463,
            "rank": 58,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "62h 20' 58''",
            "gap": "+ 01h 20' 36''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4836.0,
            "times_seconds": 224458.0
        },
        {
            "index": 2464,
            "rank": 59,
            "rider": "Wilco Kelderman",
            "rider no.": 146,
            "team": "Team Sunweb",
            "times": "62h 22' 13''",
            "gap": "+ 01h 21' 51''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4911.0,
            "times_seconds": 224533.0
        },
        {
            "index": 2465,
            "rank": 60,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "62h 22' 17''",
            "gap": "+ 01h 21' 55''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 4915.0,
            "times_seconds": 224537.0
        },
        {
            "index": 2466,
            "rank": 61,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "62h 23' 48''",
            "gap": "+ 01h 23' 26''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5006.0,
            "times_seconds": 224628.0
        },
        {
            "index": 2467,
            "rank": 62,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "62h 24' 04''",
            "gap": "+ 01h 23' 42''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5022.0,
            "times_seconds": 224644.0
        },
        {
            "index": 2468,
            "rank": 63,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "62h 24' 22''",
            "gap": "+ 01h 24' 00''",
            "b": "B : 15''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5040.0,
            "times_seconds": 224662.0
        },
        {
            "index": 2469,
            "rank": 64,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "62h 24' 30''",
            "gap": "+ 01h 24' 08''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5048.0,
            "times_seconds": 224670.0
        },
        {
            "index": 2470,
            "rank": 65,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "62h 25' 07''",
            "gap": "+ 01h 24' 45''",
            "b": "B : 8''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5085.0,
            "times_seconds": 224707.0
        },
        {
            "index": 2471,
            "rank": 66,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "62h 25' 40''",
            "gap": "+ 01h 25' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5118.0,
            "times_seconds": 224740.0
        },
        {
            "index": 2472,
            "rank": 67,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "62h 26' 13''",
            "gap": "+ 01h 25' 51''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5151.0,
            "times_seconds": 224773.0
        },
        {
            "index": 2473,
            "rank": 68,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "62h 30' 49''",
            "gap": "+ 01h 30' 27''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5427.0,
            "times_seconds": 225049.0
        },
        {
            "index": 2474,
            "rank": 69,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "62h 31' 02''",
            "gap": "+ 01h 30' 40''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5440.0,
            "times_seconds": 225062.0
        },
        {
            "index": 2475,
            "rank": 70,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "62h 32' 28''",
            "gap": "+ 01h 32' 06''",
            "b": "B : 18''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5526.0,
            "times_seconds": 225148.0
        },
        {
            "index": 2476,
            "rank": 71,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "62h 32' 34''",
            "gap": "+ 01h 32' 12''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 15,
            "gap_seconds": 5532.0,
            "times_seconds": 225154.0
        },
        {
            "index": 2477,
            "rank": 72,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "62h 35' 40''",
            "gap": "+ 01h 35' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5718.0,
            "times_seconds": 225340.0
        },
        {
            "index": 2478,
            "rank": 73,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "62h 35' 58''",
            "gap": "+ 01h 35' 36''",
            "b": "B : 20''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5736.0,
            "times_seconds": 225358.0
        },
        {
            "index": 2479,
            "rank": 74,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "62h 36' 08''",
            "gap": "+ 01h 35' 46''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5746.0,
            "times_seconds": 225368.0
        },
        {
            "index": 2480,
            "rank": 75,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "62h 37' 09''",
            "gap": "+ 01h 36' 47''",
            "b": "B : 18''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5807.0,
            "times_seconds": 225429.0
        },
        {
            "index": 2481,
            "rank": 76,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "62h 37' 22''",
            "gap": "+ 01h 37' 00''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5820.0,
            "times_seconds": 225442.0
        },
        {
            "index": 2482,
            "rank": 77,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "62h 37' 53''",
            "gap": "+ 01h 37' 31''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5851.0,
            "times_seconds": 225473.0
        },
        {
            "index": 2483,
            "rank": 78,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "62h 39' 53''",
            "gap": "+ 01h 39' 31''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5971.0,
            "times_seconds": 225593.0
        },
        {
            "index": 2484,
            "rank": 79,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "62h 40' 20''",
            "gap": "+ 01h 39' 58''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 5998.0,
            "times_seconds": 225620.0
        },
        {
            "index": 2485,
            "rank": 80,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "62h 44' 56''",
            "gap": "+ 01h 44' 34''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6274.0,
            "times_seconds": 225896.0
        },
        {
            "index": 2486,
            "rank": 81,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "62h 45' 18''",
            "gap": "+ 01h 44' 56''",
            "b": "B : 4''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6296.0,
            "times_seconds": 225918.0
        },
        {
            "index": 2487,
            "rank": 82,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "62h 45' 33''",
            "gap": "+ 01h 45' 11''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6311.0,
            "times_seconds": 225933.0
        },
        {
            "index": 2488,
            "rank": 83,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "62h 46' 08''",
            "gap": "+ 01h 45' 46''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6346.0,
            "times_seconds": 225968.0
        },
        {
            "index": 2489,
            "rank": 84,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "62h 51' 20''",
            "gap": "+ 01h 50' 58''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6658.0,
            "times_seconds": 226280.0
        },
        {
            "index": 2490,
            "rank": 85,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "62h 51' 44''",
            "gap": "+ 01h 51' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6682.0,
            "times_seconds": 226304.0
        },
        {
            "index": 2491,
            "rank": 86,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "62h 53' 55''",
            "gap": "+ 01h 53' 33''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6813.0,
            "times_seconds": 226435.0
        },
        {
            "index": 2492,
            "rank": 87,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "62h 54' 36''",
            "gap": "+ 01h 54' 14''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6854.0,
            "times_seconds": 226476.0
        },
        {
            "index": 2493,
            "rank": 88,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "62h 54' 49''",
            "gap": "+ 01h 54' 27''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6867.0,
            "times_seconds": 226489.0
        },
        {
            "index": 2494,
            "rank": 89,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "62h 54' 57''",
            "gap": "+ 01h 54' 35''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 6875.0,
            "times_seconds": 226497.0
        },
        {
            "index": 2495,
            "rank": 90,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "62h 57' 51''",
            "gap": "+ 01h 57' 29''",
            "b": "B : 10''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7049.0,
            "times_seconds": 226671.0
        },
        {
            "index": 2496,
            "rank": 91,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "62h 57' 52''",
            "gap": "+ 01h 57' 30''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7050.0,
            "times_seconds": 226672.0
        },
        {
            "index": 2497,
            "rank": 92,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "62h 58' 33''",
            "gap": "+ 01h 58' 11''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7091.0,
            "times_seconds": 226713.0
        },
        {
            "index": 2498,
            "rank": 93,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "62h 59' 07''",
            "gap": "+ 01h 58' 45''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7125.0,
            "times_seconds": 226747.0
        },
        {
            "index": 2499,
            "rank": 94,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "62h 59' 29''",
            "gap": "+ 01h 59' 07''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7147.0,
            "times_seconds": 226769.0
        },
        {
            "index": 2500,
            "rank": 95,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "62h 59' 58''",
            "gap": "+ 01h 59' 36''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7176.0,
            "times_seconds": 226798.0
        },
        {
            "index": 2501,
            "rank": 96,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "63h 00' 39''",
            "gap": "+ 02h 00' 17''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7217.0,
            "times_seconds": 226839.0
        },
        {
            "index": 2502,
            "rank": 97,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "63h 01' 51''",
            "gap": "+ 02h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7289.0,
            "times_seconds": 226911.0
        },
        {
            "index": 2503,
            "rank": 98,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "63h 04' 01''",
            "gap": "+ 02h 03' 39''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7419.0,
            "times_seconds": 227041.0
        },
        {
            "index": 2504,
            "rank": 99,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "63h 05' 11''",
            "gap": "+ 02h 04' 49''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7489.0,
            "times_seconds": 227111.0
        },
        {
            "index": 2505,
            "rank": 100,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "63h 05' 50''",
            "gap": "+ 02h 05' 28''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7528.0,
            "times_seconds": 227150.0
        },
        {
            "index": 2506,
            "rank": 101,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "63h 06' 57''",
            "gap": "+ 02h 06' 35''",
            "b": "B : 10''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7595.0,
            "times_seconds": 227217.0
        },
        {
            "index": 2507,
            "rank": 102,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "63h 07' 17''",
            "gap": "+ 02h 06' 55''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7615.0,
            "times_seconds": 227237.0
        },
        {
            "index": 2508,
            "rank": 103,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "63h 07' 17''",
            "gap": "+ 02h 06' 55''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7615.0,
            "times_seconds": 227237.0
        },
        {
            "index": 2509,
            "rank": 104,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "63h 08' 32''",
            "gap": "+ 02h 08' 10''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7690.0,
            "times_seconds": 227312.0
        },
        {
            "index": 2510,
            "rank": 105,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "63h 08' 40''",
            "gap": "+ 02h 08' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7698.0,
            "times_seconds": 227320.0
        },
        {
            "index": 2511,
            "rank": 106,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "63h 08' 43''",
            "gap": "+ 02h 08' 21''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7701.0,
            "times_seconds": 227323.0
        },
        {
            "index": 2512,
            "rank": 107,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "63h 08' 46''",
            "gap": "+ 02h 08' 24''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7704.0,
            "times_seconds": 227326.0
        },
        {
            "index": 2513,
            "rank": 108,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "63h 09' 12''",
            "gap": "+ 02h 08' 50''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7730.0,
            "times_seconds": 227352.0
        },
        {
            "index": 2514,
            "rank": 109,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "63h 11' 43''",
            "gap": "+ 02h 11' 21''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7881.0,
            "times_seconds": 227503.0
        },
        {
            "index": 2515,
            "rank": 110,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "63h 12' 23''",
            "gap": "+ 02h 12' 01''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 7921.0,
            "times_seconds": 227543.0
        },
        {
            "index": 2516,
            "rank": 111,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "63h 13' 44''",
            "gap": "+ 02h 13' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8002.0,
            "times_seconds": 227624.0
        },
        {
            "index": 2517,
            "rank": 112,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "63h 14' 52''",
            "gap": "+ 02h 14' 30''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8070.0,
            "times_seconds": 227692.0
        },
        {
            "index": 2518,
            "rank": 113,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "63h 15' 03''",
            "gap": "+ 02h 14' 41''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8081.0,
            "times_seconds": 227703.0
        },
        {
            "index": 2519,
            "rank": 114,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "63h 15' 14''",
            "gap": "+ 02h 14' 52''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8092.0,
            "times_seconds": 227714.0
        },
        {
            "index": 2520,
            "rank": 115,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "63h 16' 19''",
            "gap": "+ 02h 15' 57''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8157.0,
            "times_seconds": 227779.0
        },
        {
            "index": 2521,
            "rank": 116,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "63h 17' 55''",
            "gap": "+ 02h 17' 33''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8253.0,
            "times_seconds": 227875.0
        },
        {
            "index": 2522,
            "rank": 117,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "63h 18' 59''",
            "gap": "+ 02h 18' 37''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8317.0,
            "times_seconds": 227939.0
        },
        {
            "index": 2523,
            "rank": 118,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "63h 23' 12''",
            "gap": "+ 02h 22' 50''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8570.0,
            "times_seconds": 228192.0
        },
        {
            "index": 2524,
            "rank": 119,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "63h 24' 19''",
            "gap": "+ 02h 23' 57''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8637.0,
            "times_seconds": 228259.0
        },
        {
            "index": 2525,
            "rank": 120,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "63h 25' 09''",
            "gap": "+ 02h 24' 47''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8687.0,
            "times_seconds": 228309.0
        },
        {
            "index": 2526,
            "rank": 121,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "63h 25' 28''",
            "gap": "+ 02h 25' 06''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8706.0,
            "times_seconds": 228328.0
        },
        {
            "index": 2527,
            "rank": 122,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "63h 26' 51''",
            "gap": "+ 02h 26' 29''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8789.0,
            "times_seconds": 228411.0
        },
        {
            "index": 2528,
            "rank": 123,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "63h 29' 34''",
            "gap": "+ 02h 29' 12''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 8952.0,
            "times_seconds": 228574.0
        },
        {
            "index": 2529,
            "rank": 124,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "63h 30' 28''",
            "gap": "+ 02h 30' 06''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 15,
            "gap_seconds": 9006.0,
            "times_seconds": 228628.0
        },
        {
            "index": 2530,
            "rank": 125,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "63h 31' 38''",
            "gap": "+ 02h 31' 16''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9076.0,
            "times_seconds": 228698.0
        },
        {
            "index": 2531,
            "rank": 126,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "63h 31' 58''",
            "gap": "+ 02h 31' 36''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9096.0,
            "times_seconds": 228718.0
        },
        {
            "index": 2532,
            "rank": 127,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "63h 32' 12''",
            "gap": "+ 02h 31' 50''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9110.0,
            "times_seconds": 228732.0
        },
        {
            "index": 2533,
            "rank": 128,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "63h 32' 26''",
            "gap": "+ 02h 32' 04''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9124.0,
            "times_seconds": 228746.0
        },
        {
            "index": 2534,
            "rank": 129,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "63h 33' 27''",
            "gap": "+ 02h 33' 05''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9185.0,
            "times_seconds": 228807.0
        },
        {
            "index": 2535,
            "rank": 130,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "63h 34' 20''",
            "gap": "+ 02h 33' 58''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9238.0,
            "times_seconds": 228860.0
        },
        {
            "index": 2536,
            "rank": 131,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "63h 34' 49''",
            "gap": "+ 02h 34' 27''",
            "b": "B : 20''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9267.0,
            "times_seconds": 228889.0
        },
        {
            "index": 2537,
            "rank": 132,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "63h 35' 18''",
            "gap": "+ 02h 34' 56''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9296.0,
            "times_seconds": 228918.0
        },
        {
            "index": 2538,
            "rank": 133,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "63h 35' 37''",
            "gap": "+ 02h 35' 15''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9315.0,
            "times_seconds": 228937.0
        },
        {
            "index": 2539,
            "rank": 134,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "63h 35' 40''",
            "gap": "+ 02h 35' 18''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9318.0,
            "times_seconds": 228940.0
        },
        {
            "index": 2540,
            "rank": 135,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "63h 35' 51''",
            "gap": "+ 02h 35' 29''",
            "b": "B : 28''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9329.0,
            "times_seconds": 228951.0
        },
        {
            "index": 2541,
            "rank": 136,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "63h 36' 09''",
            "gap": "+ 02h 35' 47''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9347.0,
            "times_seconds": 228969.0
        },
        {
            "index": 2542,
            "rank": 137,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "63h 37' 46''",
            "gap": "+ 02h 37' 24''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9444.0,
            "times_seconds": 229066.0
        },
        {
            "index": 2543,
            "rank": 138,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "63h 38' 33''",
            "gap": "+ 02h 38' 11''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9491.0,
            "times_seconds": 229113.0
        },
        {
            "index": 2544,
            "rank": 139,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "63h 41' 51''",
            "gap": "+ 02h 41' 29''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9689.0,
            "times_seconds": 229311.0
        },
        {
            "index": 2545,
            "rank": 140,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "63h 42' 02''",
            "gap": "+ 02h 41' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9700.0,
            "times_seconds": 229322.0
        },
        {
            "index": 2546,
            "rank": 141,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "63h 43' 10''",
            "gap": "+ 02h 42' 48''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9768.0,
            "times_seconds": 229390.0
        },
        {
            "index": 2547,
            "rank": 142,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "63h 43' 23''",
            "gap": "+ 02h 43' 01''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9781.0,
            "times_seconds": 229403.0
        },
        {
            "index": 2548,
            "rank": 143,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "63h 43' 34''",
            "gap": "+ 02h 43' 12''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9792.0,
            "times_seconds": 229414.0
        },
        {
            "index": 2549,
            "rank": 144,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "63h 43' 38''",
            "gap": "+ 02h 43' 16''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9796.0,
            "times_seconds": 229418.0
        },
        {
            "index": 2550,
            "rank": 145,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "63h 45' 26''",
            "gap": "+ 02h 45' 04''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9904.0,
            "times_seconds": 229526.0
        },
        {
            "index": 2551,
            "rank": 146,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "63h 46' 47''",
            "gap": "+ 02h 46' 25''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 9985.0,
            "times_seconds": 229607.0
        },
        {
            "index": 2552,
            "rank": 147,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "63h 47' 27''",
            "gap": "+ 02h 47' 05''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10025.0,
            "times_seconds": 229647.0
        },
        {
            "index": 2553,
            "rank": 148,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "63h 48' 03''",
            "gap": "+ 02h 47' 41''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10061.0,
            "times_seconds": 229683.0
        },
        {
            "index": 2554,
            "rank": 149,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "63h 48' 21''",
            "gap": "+ 02h 47' 59''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 15,
            "gap_seconds": 10079.0,
            "times_seconds": 229701.0
        },
        {
            "index": 2555,
            "rank": 150,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "63h 48' 23''",
            "gap": "+ 02h 48' 01''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10081.0,
            "times_seconds": 229703.0
        },
        {
            "index": 2556,
            "rank": 151,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "63h 48' 42''",
            "gap": "+ 02h 48' 20''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10100.0,
            "times_seconds": 229722.0
        },
        {
            "index": 2557,
            "rank": 152,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "63h 48' 44''",
            "gap": "+ 02h 48' 22''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10102.0,
            "times_seconds": 229724.0
        },
        {
            "index": 2558,
            "rank": 153,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "63h 49' 03''",
            "gap": "+ 02h 48' 41''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 15,
            "gap_seconds": 10121.0,
            "times_seconds": 229743.0
        },
        {
            "index": 2559,
            "rank": 154,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "63h 49' 18''",
            "gap": "+ 02h 48' 56''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10136.0,
            "times_seconds": 229758.0
        },
        {
            "index": 2560,
            "rank": 155,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "63h 50' 25''",
            "gap": "+ 02h 50' 03''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10203.0,
            "times_seconds": 229825.0
        },
        {
            "index": 2561,
            "rank": 156,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "63h 50' 34''",
            "gap": "+ 02h 50' 12''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10212.0,
            "times_seconds": 229834.0
        },
        {
            "index": 2562,
            "rank": 157,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "63h 50' 47''",
            "gap": "+ 02h 50' 25''",
            "b": "B : 16''",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10225.0,
            "times_seconds": 229847.0
        },
        {
            "index": 2563,
            "rank": 158,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "63h 50' 50''",
            "gap": "+ 02h 50' 28''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10228.0,
            "times_seconds": 229850.0
        },
        {
            "index": 2564,
            "rank": 159,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "63h 51' 12''",
            "gap": "+ 02h 50' 50''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10250.0,
            "times_seconds": 229872.0
        },
        {
            "index": 2565,
            "rank": 160,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "63h 51' 17''",
            "gap": "+ 02h 50' 55''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10255.0,
            "times_seconds": 229877.0
        },
        {
            "index": 2566,
            "rank": 161,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "63h 55' 37''",
            "gap": "+ 02h 55' 15''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10515.0,
            "times_seconds": 230137.0
        },
        {
            "index": 2567,
            "rank": 162,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "64h 02' 03''",
            "gap": "+ 03h 01' 41''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 10901.0,
            "times_seconds": 230523.0
        },
        {
            "index": 2568,
            "rank": 163,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "64h 04' 24''",
            "gap": "+ 03h 04' 02''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 11042.0,
            "times_seconds": 230664.0
        },
        {
            "index": 2569,
            "rank": 164,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "64h 15' 18''",
            "gap": "+ 03h 14' 56''",
            "b": "-",
            "p": "-",
            "stage": 15,
            "gap_seconds": 11696.0,
            "times_seconds": 231318.0
        },
        {
            "index": 2570,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "64h 57' 30''",
            "gap": "-",
            "b": "B : 30''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 0.0,
            "times_seconds": 233850.0
        },
        {
            "index": 2571,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "64h 59' 05''",
            "gap": "+ 00h 01' 35''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 95.0,
            "times_seconds": 233945.0
        },
        {
            "index": 2572,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "64h 59' 17''",
            "gap": "+ 00h 01' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 107.0,
            "times_seconds": 233957.0
        },
        {
            "index": 2573,
            "rank": 4,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "64h 59' 20''",
            "gap": "+ 00h 01' 50''",
            "b": "B : 24''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 110.0,
            "times_seconds": 233960.0
        },
        {
            "index": 2574,
            "rank": 5,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "64h 59' 32''",
            "gap": "+ 00h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 122.0,
            "times_seconds": 233972.0
        },
        {
            "index": 2575,
            "rank": 6,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "64h 59' 44''",
            "gap": "+ 00h 02' 14''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 134.0,
            "times_seconds": 233984.0
        },
        {
            "index": 2576,
            "rank": 7,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "65h 02' 24''",
            "gap": "+ 00h 04' 54''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 294.0,
            "times_seconds": 234144.0
        },
        {
            "index": 2577,
            "rank": 8,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "65h 02' 30''",
            "gap": "+ 00h 05' 00''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 300.0,
            "times_seconds": 234150.0
        },
        {
            "index": 2578,
            "rank": 9,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "65h 03' 03''",
            "gap": "+ 00h 05' 33''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 333.0,
            "times_seconds": 234183.0
        },
        {
            "index": 2579,
            "rank": 10,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "65h 04' 00''",
            "gap": "+ 00h 06' 30''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 390.0,
            "times_seconds": 234240.0
        },
        {
            "index": 2580,
            "rank": 11,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "65h 04' 52''",
            "gap": "+ 00h 07' 22''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 442.0,
            "times_seconds": 234292.0
        },
        {
            "index": 2581,
            "rank": 12,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "65h 07' 00''",
            "gap": "+ 00h 09' 30''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 570.0,
            "times_seconds": 234420.0
        },
        {
            "index": 2582,
            "rank": 13,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "65h 09' 09''",
            "gap": "+ 00h 11' 39''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 699.0,
            "times_seconds": 234549.0
        },
        {
            "index": 2583,
            "rank": 14,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "65h 09' 36''",
            "gap": "+ 00h 12' 06''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 726.0,
            "times_seconds": 234576.0
        },
        {
            "index": 2584,
            "rank": 15,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "65h 11' 12''",
            "gap": "+ 00h 13' 42''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 822.0,
            "times_seconds": 234672.0
        },
        {
            "index": 2585,
            "rank": 16,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "65h 11' 45''",
            "gap": "+ 00h 14' 15''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 855.0,
            "times_seconds": 234705.0
        },
        {
            "index": 2586,
            "rank": 17,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "65h 13' 03''",
            "gap": "+ 00h 15' 33''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 933.0,
            "times_seconds": 234783.0
        },
        {
            "index": 2587,
            "rank": 18,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "65h 25' 03''",
            "gap": "+ 00h 27' 33''",
            "b": "B : 2''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 1653.0,
            "times_seconds": 235503.0
        },
        {
            "index": 2588,
            "rank": 19,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "65h 25' 55''",
            "gap": "+ 00h 28' 25''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 1705.0,
            "times_seconds": 235555.0
        },
        {
            "index": 2589,
            "rank": 20,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "65h 28' 03''",
            "gap": "+ 00h 30' 33''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 16,
            "gap_seconds": 1833.0,
            "times_seconds": 235683.0
        },
        {
            "index": 2590,
            "rank": 21,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "65h 29' 47''",
            "gap": "+ 00h 32' 17''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 16,
            "gap_seconds": 1937.0,
            "times_seconds": 235787.0
        },
        {
            "index": 2591,
            "rank": 22,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "65h 31' 41''",
            "gap": "+ 00h 34' 11''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2051.0,
            "times_seconds": 235901.0
        },
        {
            "index": 2592,
            "rank": 23,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "65h 32' 48''",
            "gap": "+ 00h 35' 18''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2118.0,
            "times_seconds": 235968.0
        },
        {
            "index": 2593,
            "rank": 24,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "65h 35' 24''",
            "gap": "+ 00h 37' 54''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2274.0,
            "times_seconds": 236124.0
        },
        {
            "index": 2594,
            "rank": 25,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "65h 36' 53''",
            "gap": "+ 00h 39' 23''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2363.0,
            "times_seconds": 236213.0
        },
        {
            "index": 2595,
            "rank": 26,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "65h 40' 40''",
            "gap": "+ 00h 43' 10''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2590.0,
            "times_seconds": 236440.0
        },
        {
            "index": 2596,
            "rank": 27,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "65h 41' 32''",
            "gap": "+ 00h 44' 02''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2642.0,
            "times_seconds": 236492.0
        },
        {
            "index": 2597,
            "rank": 28,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "65h 43' 31''",
            "gap": "+ 00h 46' 01''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2761.0,
            "times_seconds": 236611.0
        },
        {
            "index": 2598,
            "rank": 29,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "65h 43' 54''",
            "gap": "+ 00h 46' 24''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2784.0,
            "times_seconds": 236634.0
        },
        {
            "index": 2599,
            "rank": 30,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "65h 46' 13''",
            "gap": "+ 00h 48' 43''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 2923.0,
            "times_seconds": 236773.0
        },
        {
            "index": 2600,
            "rank": 31,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "65h 48' 47''",
            "gap": "+ 00h 51' 17''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3077.0,
            "times_seconds": 236927.0
        },
        {
            "index": 2601,
            "rank": 32,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "65h 50' 56''",
            "gap": "+ 00h 53' 26''",
            "b": "B : 14''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3206.0,
            "times_seconds": 237056.0
        },
        {
            "index": 2602,
            "rank": 33,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "65h 51' 21''",
            "gap": "+ 00h 53' 51''",
            "b": "B : 9''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3231.0,
            "times_seconds": 237081.0
        },
        {
            "index": 2603,
            "rank": 34,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "65h 56' 13''",
            "gap": "+ 00h 58' 43''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3523.0,
            "times_seconds": 237373.0
        },
        {
            "index": 2604,
            "rank": 35,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "65h 56' 48''",
            "gap": "+ 00h 59' 18''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3558.0,
            "times_seconds": 237408.0
        },
        {
            "index": 2605,
            "rank": 36,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "65h 56' 55''",
            "gap": "+ 00h 59' 25''",
            "b": "B : 2''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3565.0,
            "times_seconds": 237415.0
        },
        {
            "index": 2606,
            "rank": 37,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "65h 57' 41''",
            "gap": "+ 01h 00' 11''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3611.0,
            "times_seconds": 237461.0
        },
        {
            "index": 2607,
            "rank": 38,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "65h 58' 54''",
            "gap": "+ 01h 01' 24''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3684.0,
            "times_seconds": 237534.0
        },
        {
            "index": 2608,
            "rank": 39,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "65h 59' 07''",
            "gap": "+ 01h 01' 37''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3697.0,
            "times_seconds": 237547.0
        },
        {
            "index": 2609,
            "rank": 40,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "66h 00' 11''",
            "gap": "+ 01h 02' 41''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 3761.0,
            "times_seconds": 237611.0
        },
        {
            "index": 2610,
            "rank": 41,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "66h 05' 39''",
            "gap": "+ 01h 08' 09''",
            "b": "B : 2''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4089.0,
            "times_seconds": 237939.0
        },
        {
            "index": 2611,
            "rank": 42,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "66h 07' 38''",
            "gap": "+ 01h 10' 08''",
            "b": "B : 8''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4208.0,
            "times_seconds": 238058.0
        },
        {
            "index": 2612,
            "rank": 43,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "66h 08' 11''",
            "gap": "+ 01h 10' 41''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4241.0,
            "times_seconds": 238091.0
        },
        {
            "index": 2613,
            "rank": 44,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "66h 08' 46''",
            "gap": "+ 01h 11' 16''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4276.0,
            "times_seconds": 238126.0
        },
        {
            "index": 2614,
            "rank": 45,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "66h 09' 11''",
            "gap": "+ 01h 11' 41''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4301.0,
            "times_seconds": 238151.0
        },
        {
            "index": 2615,
            "rank": 46,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "66h 09' 40''",
            "gap": "+ 01h 12' 10''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4330.0,
            "times_seconds": 238180.0
        },
        {
            "index": 2616,
            "rank": 47,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "66h 11' 17''",
            "gap": "+ 01h 13' 47''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4427.0,
            "times_seconds": 238277.0
        },
        {
            "index": 2617,
            "rank": 48,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "66h 11' 24''",
            "gap": "+ 01h 13' 54''",
            "b": "B : 6''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4434.0,
            "times_seconds": 238284.0
        },
        {
            "index": 2618,
            "rank": 49,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "66h 11' 57''",
            "gap": "+ 01h 14' 27''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4467.0,
            "times_seconds": 238317.0
        },
        {
            "index": 2619,
            "rank": 50,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "66h 15' 17''",
            "gap": "+ 01h 17' 47''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4667.0,
            "times_seconds": 238517.0
        },
        {
            "index": 2620,
            "rank": 51,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "66h 16' 53''",
            "gap": "+ 01h 19' 23''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4763.0,
            "times_seconds": 238613.0
        },
        {
            "index": 2621,
            "rank": 52,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "66h 17' 18''",
            "gap": "+ 01h 19' 48''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4788.0,
            "times_seconds": 238638.0
        },
        {
            "index": 2622,
            "rank": 53,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "66h 17' 20''",
            "gap": "+ 01h 19' 50''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4790.0,
            "times_seconds": 238640.0
        },
        {
            "index": 2623,
            "rank": 54,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "66h 18' 27''",
            "gap": "+ 01h 20' 57''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4857.0,
            "times_seconds": 238707.0
        },
        {
            "index": 2624,
            "rank": 55,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "66h 19' 07''",
            "gap": "+ 01h 21' 37''",
            "b": "B : 33''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4897.0,
            "times_seconds": 238747.0
        },
        {
            "index": 2625,
            "rank": 56,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "66h 20' 35''",
            "gap": "+ 01h 23' 05''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 4985.0,
            "times_seconds": 238835.0
        },
        {
            "index": 2626,
            "rank": 57,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "66h 21' 17''",
            "gap": "+ 01h 23' 47''",
            "b": "B : 11''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5027.0,
            "times_seconds": 238877.0
        },
        {
            "index": 2627,
            "rank": 58,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "66h 23' 14''",
            "gap": "+ 01h 25' 44''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5144.0,
            "times_seconds": 238994.0
        },
        {
            "index": 2628,
            "rank": 59,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "66h 23' 21''",
            "gap": "+ 01h 25' 51''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5151.0,
            "times_seconds": 239001.0
        },
        {
            "index": 2629,
            "rank": 60,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "66h 23' 30''",
            "gap": "+ 01h 26' 00''",
            "b": "B : 15''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5160.0,
            "times_seconds": 239010.0
        },
        {
            "index": 2630,
            "rank": 61,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "66h 23' 38''",
            "gap": "+ 01h 26' 08''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5168.0,
            "times_seconds": 239018.0
        },
        {
            "index": 2631,
            "rank": 62,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "66h 24' 15''",
            "gap": "+ 01h 26' 45''",
            "b": "B : 8''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5205.0,
            "times_seconds": 239055.0
        },
        {
            "index": 2632,
            "rank": 63,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "66h 24' 48''",
            "gap": "+ 01h 27' 18''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5238.0,
            "times_seconds": 239088.0
        },
        {
            "index": 2633,
            "rank": 64,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "66h 25' 01''",
            "gap": "+ 01h 27' 31''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5251.0,
            "times_seconds": 239101.0
        },
        {
            "index": 2634,
            "rank": 65,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "66h 27' 57''",
            "gap": "+ 01h 30' 27''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5427.0,
            "times_seconds": 239277.0
        },
        {
            "index": 2635,
            "rank": 66,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "66h 31' 59''",
            "gap": "+ 01h 34' 29''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5669.0,
            "times_seconds": 239519.0
        },
        {
            "index": 2636,
            "rank": 67,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "66h 33' 06''",
            "gap": "+ 01h 35' 36''",
            "b": "B : 20''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5736.0,
            "times_seconds": 239586.0
        },
        {
            "index": 2637,
            "rank": 68,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "66h 33' 25''",
            "gap": "+ 01h 35' 55''",
            "b": "B : 18''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5755.0,
            "times_seconds": 239605.0
        },
        {
            "index": 2638,
            "rank": 69,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "66h 33' 30''",
            "gap": "+ 01h 36' 00''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5760.0,
            "times_seconds": 239610.0
        },
        {
            "index": 2639,
            "rank": 70,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "66h 34' 30''",
            "gap": "+ 01h 37' 00''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5820.0,
            "times_seconds": 239670.0
        },
        {
            "index": 2640,
            "rank": 71,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "66h 34' 56''",
            "gap": "+ 01h 37' 26''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5846.0,
            "times_seconds": 239696.0
        },
        {
            "index": 2641,
            "rank": 72,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "66h 35' 01''",
            "gap": "+ 01h 37' 31''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5851.0,
            "times_seconds": 239701.0
        },
        {
            "index": 2642,
            "rank": 73,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "66h 36' 17''",
            "gap": "+ 01h 38' 47''",
            "b": "B : 18''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5927.0,
            "times_seconds": 239777.0
        },
        {
            "index": 2643,
            "rank": 74,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "66h 37' 28''",
            "gap": "+ 01h 39' 58''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 5998.0,
            "times_seconds": 239848.0
        },
        {
            "index": 2644,
            "rank": 75,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "66h 38' 03''",
            "gap": "+ 01h 40' 33''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6033.0,
            "times_seconds": 239883.0
        },
        {
            "index": 2645,
            "rank": 76,
            "rider": "Luis Le\u00f3n Sanchez",
            "rider no.": 78,
            "team": "Astana Pro Team",
            "times": "66h 40' 16''",
            "gap": "+ 01h 42' 46''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 16,
            "gap_seconds": 6166.0,
            "times_seconds": 240016.0
        },
        {
            "index": 2646,
            "rank": 77,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "66h 42' 00''",
            "gap": "+ 01h 44' 30''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6270.0,
            "times_seconds": 240120.0
        },
        {
            "index": 2647,
            "rank": 78,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "66h 42' 04''",
            "gap": "+ 01h 44' 34''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6274.0,
            "times_seconds": 240124.0
        },
        {
            "index": 2648,
            "rank": 79,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "66h 43' 16''",
            "gap": "+ 01h 45' 46''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6346.0,
            "times_seconds": 240196.0
        },
        {
            "index": 2649,
            "rank": 80,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "66h 43' 35''",
            "gap": "+ 01h 46' 05''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6365.0,
            "times_seconds": 240215.0
        },
        {
            "index": 2650,
            "rank": 81,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "66h 44' 26''",
            "gap": "+ 01h 46' 56''",
            "b": "B : 4''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6416.0,
            "times_seconds": 240266.0
        },
        {
            "index": 2651,
            "rank": 82,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "66h 50' 06''",
            "gap": "+ 01h 52' 36''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6756.0,
            "times_seconds": 240606.0
        },
        {
            "index": 2652,
            "rank": 83,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "66h 50' 52''",
            "gap": "+ 01h 53' 22''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6802.0,
            "times_seconds": 240652.0
        },
        {
            "index": 2653,
            "rank": 84,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "66h 51' 40''",
            "gap": "+ 01h 54' 10''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6850.0,
            "times_seconds": 240700.0
        },
        {
            "index": 2654,
            "rank": 85,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "66h 53' 44''",
            "gap": "+ 01h 56' 14''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6974.0,
            "times_seconds": 240824.0
        },
        {
            "index": 2655,
            "rank": 86,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "66h 54' 05''",
            "gap": "+ 01h 56' 35''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6995.0,
            "times_seconds": 240845.0
        },
        {
            "index": 2656,
            "rank": 87,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "66h 54' 05''",
            "gap": "+ 01h 56' 35''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 6995.0,
            "times_seconds": 240845.0
        },
        {
            "index": 2657,
            "rank": 88,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "66h 55' 00''",
            "gap": "+ 01h 57' 30''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7050.0,
            "times_seconds": 240900.0
        },
        {
            "index": 2658,
            "rank": 89,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "66h 56' 59''",
            "gap": "+ 01h 59' 29''",
            "b": "B : 10''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7169.0,
            "times_seconds": 241019.0
        },
        {
            "index": 2659,
            "rank": 90,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "66h 58' 08''",
            "gap": "+ 02h 00' 38''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7238.0,
            "times_seconds": 241088.0
        },
        {
            "index": 2660,
            "rank": 91,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "66h 58' 19''",
            "gap": "+ 02h 00' 49''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7249.0,
            "times_seconds": 241099.0
        },
        {
            "index": 2661,
            "rank": 92,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "66h 58' 24''",
            "gap": "+ 02h 00' 54''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7254.0,
            "times_seconds": 241104.0
        },
        {
            "index": 2662,
            "rank": 93,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "66h 58' 59''",
            "gap": "+ 02h 01' 29''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7289.0,
            "times_seconds": 241139.0
        },
        {
            "index": 2663,
            "rank": 94,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "67h 02' 13''",
            "gap": "+ 02h 04' 43''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7483.0,
            "times_seconds": 241333.0
        },
        {
            "index": 2664,
            "rank": 95,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "67h 03' 09''",
            "gap": "+ 02h 05' 39''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7539.0,
            "times_seconds": 241389.0
        },
        {
            "index": 2665,
            "rank": 96,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "67h 04' 25''",
            "gap": "+ 02h 06' 55''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7615.0,
            "times_seconds": 241465.0
        },
        {
            "index": 2666,
            "rank": 97,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "67h 04' 27''",
            "gap": "+ 02h 06' 57''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7617.0,
            "times_seconds": 241467.0
        },
        {
            "index": 2667,
            "rank": 98,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "67h 04' 32''",
            "gap": "+ 02h 07' 02''",
            "b": "B : 10''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7622.0,
            "times_seconds": 241472.0
        },
        {
            "index": 2668,
            "rank": 99,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "67h 05' 06''",
            "gap": "+ 02h 07' 36''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7656.0,
            "times_seconds": 241506.0
        },
        {
            "index": 2669,
            "rank": 100,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "67h 05' 25''",
            "gap": "+ 02h 07' 55''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7675.0,
            "times_seconds": 241525.0
        },
        {
            "index": 2670,
            "rank": 101,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "67h 05' 48''",
            "gap": "+ 02h 08' 18''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7698.0,
            "times_seconds": 241548.0
        },
        {
            "index": 2671,
            "rank": 102,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "67h 06' 49''",
            "gap": "+ 02h 09' 19''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7759.0,
            "times_seconds": 241609.0
        },
        {
            "index": 2672,
            "rank": 103,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "67h 06' 55''",
            "gap": "+ 02h 09' 25''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7765.0,
            "times_seconds": 241615.0
        },
        {
            "index": 2673,
            "rank": 104,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "67h 07' 48''",
            "gap": "+ 02h 10' 18''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7818.0,
            "times_seconds": 241668.0
        },
        {
            "index": 2674,
            "rank": 105,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "67h 08' 33''",
            "gap": "+ 02h 11' 03''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7863.0,
            "times_seconds": 241713.0
        },
        {
            "index": 2675,
            "rank": 106,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "67h 09' 15''",
            "gap": "+ 02h 11' 45''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7905.0,
            "times_seconds": 241755.0
        },
        {
            "index": 2676,
            "rank": 107,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "67h 09' 31''",
            "gap": "+ 02h 12' 01''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7921.0,
            "times_seconds": 241771.0
        },
        {
            "index": 2677,
            "rank": 108,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "67h 09' 43''",
            "gap": "+ 02h 12' 13''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 7933.0,
            "times_seconds": 241783.0
        },
        {
            "index": 2678,
            "rank": 109,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "67h 12' 37''",
            "gap": "+ 02h 15' 07''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8107.0,
            "times_seconds": 241957.0
        },
        {
            "index": 2679,
            "rank": 110,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "67h 13' 00''",
            "gap": "+ 02h 15' 30''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8130.0,
            "times_seconds": 241980.0
        },
        {
            "index": 2680,
            "rank": 111,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "67h 14' 29''",
            "gap": "+ 02h 16' 59''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8219.0,
            "times_seconds": 242069.0
        },
        {
            "index": 2681,
            "rank": 112,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "67h 16' 07''",
            "gap": "+ 02h 18' 37''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8317.0,
            "times_seconds": 242167.0
        },
        {
            "index": 2682,
            "rank": 113,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "67h 17' 11''",
            "gap": "+ 02h 19' 41''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8381.0,
            "times_seconds": 242231.0
        },
        {
            "index": 2683,
            "rank": 114,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "67h 18' 11''",
            "gap": "+ 02h 20' 41''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8441.0,
            "times_seconds": 242291.0
        },
        {
            "index": 2684,
            "rank": 115,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "67h 18' 22''",
            "gap": "+ 02h 20' 52''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8452.0,
            "times_seconds": 242302.0
        },
        {
            "index": 2685,
            "rank": 116,
            "rider": "Luke Rowe",
            "rider no.": 7,
            "team": "Team Ineos",
            "times": "67h 20' 57''",
            "gap": "+ 02h 23' 27''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8607.0,
            "times_seconds": 242457.0
        },
        {
            "index": 2686,
            "rank": 117,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "67h 22' 17''",
            "gap": "+ 02h 24' 47''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8687.0,
            "times_seconds": 242537.0
        },
        {
            "index": 2687,
            "rank": 118,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "67h 23' 35''",
            "gap": "+ 02h 26' 05''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8765.0,
            "times_seconds": 242615.0
        },
        {
            "index": 2688,
            "rank": 119,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "67h 25' 01''",
            "gap": "+ 02h 27' 31''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 8851.0,
            "times_seconds": 242701.0
        },
        {
            "index": 2689,
            "rank": 120,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "67h 28' 26''",
            "gap": "+ 02h 30' 56''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 16,
            "gap_seconds": 9056.0,
            "times_seconds": 242906.0
        },
        {
            "index": 2690,
            "rank": 121,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "67h 28' 39''",
            "gap": "+ 02h 31' 09''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9069.0,
            "times_seconds": 242919.0
        },
        {
            "index": 2691,
            "rank": 122,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "67h 30' 08''",
            "gap": "+ 02h 32' 38''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9158.0,
            "times_seconds": 243008.0
        },
        {
            "index": 2692,
            "rank": 123,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "67h 30' 54''",
            "gap": "+ 02h 33' 24''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9204.0,
            "times_seconds": 243054.0
        },
        {
            "index": 2693,
            "rank": 124,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "67h 31' 12''",
            "gap": "+ 02h 33' 42''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9222.0,
            "times_seconds": 243072.0
        },
        {
            "index": 2694,
            "rank": 125,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "67h 31' 20''",
            "gap": "+ 02h 33' 50''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9230.0,
            "times_seconds": 243080.0
        },
        {
            "index": 2695,
            "rank": 126,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "67h 31' 34''",
            "gap": "+ 02h 34' 04''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9244.0,
            "times_seconds": 243094.0
        },
        {
            "index": 2696,
            "rank": 127,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "67h 31' 51''",
            "gap": "+ 02h 34' 21''",
            "b": "B : 26''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9261.0,
            "times_seconds": 243111.0
        },
        {
            "index": 2697,
            "rank": 128,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "67h 32' 26''",
            "gap": "+ 02h 34' 56''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9296.0,
            "times_seconds": 243146.0
        },
        {
            "index": 2698,
            "rank": 129,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "67h 32' 49''",
            "gap": "+ 02h 35' 19''",
            "b": "B : 38''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9319.0,
            "times_seconds": 243169.0
        },
        {
            "index": 2699,
            "rank": 130,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "67h 33' 10''",
            "gap": "+ 02h 35' 40''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9340.0,
            "times_seconds": 243190.0
        },
        {
            "index": 2700,
            "rank": 131,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "67h 34' 03''",
            "gap": "+ 02h 36' 33''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9393.0,
            "times_seconds": 243243.0
        },
        {
            "index": 2701,
            "rank": 132,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "67h 34' 45''",
            "gap": "+ 02h 37' 15''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9435.0,
            "times_seconds": 243285.0
        },
        {
            "index": 2702,
            "rank": 133,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "67h 34' 59''",
            "gap": "+ 02h 37' 29''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9449.0,
            "times_seconds": 243299.0
        },
        {
            "index": 2703,
            "rank": 134,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "67h 36' 33''",
            "gap": "+ 02h 39' 03''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9543.0,
            "times_seconds": 243393.0
        },
        {
            "index": 2704,
            "rank": 135,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "67h 36' 37''",
            "gap": "+ 02h 39' 07''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9547.0,
            "times_seconds": 243397.0
        },
        {
            "index": 2705,
            "rank": 136,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "67h 37' 02''",
            "gap": "+ 02h 39' 32''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9572.0,
            "times_seconds": 243422.0
        },
        {
            "index": 2706,
            "rank": 137,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "67h 39' 10''",
            "gap": "+ 02h 41' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9700.0,
            "times_seconds": 243550.0
        },
        {
            "index": 2707,
            "rank": 138,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "67h 42' 42''",
            "gap": "+ 02h 45' 12''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9912.0,
            "times_seconds": 243762.0
        },
        {
            "index": 2708,
            "rank": 139,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "67h 43' 02''",
            "gap": "+ 02h 45' 32''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9932.0,
            "times_seconds": 243782.0
        },
        {
            "index": 2709,
            "rank": 140,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "67h 43' 41''",
            "gap": "+ 02h 46' 11''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 9971.0,
            "times_seconds": 243821.0
        },
        {
            "index": 2710,
            "rank": 141,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "67h 45' 11''",
            "gap": "+ 02h 47' 41''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10061.0,
            "times_seconds": 243911.0
        },
        {
            "index": 2711,
            "rank": 142,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "67h 45' 50''",
            "gap": "+ 02h 48' 20''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10100.0,
            "times_seconds": 243950.0
        },
        {
            "index": 2712,
            "rank": 143,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "67h 45' 58''",
            "gap": "+ 02h 48' 28''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10108.0,
            "times_seconds": 243958.0
        },
        {
            "index": 2713,
            "rank": 144,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "67h 46' 26''",
            "gap": "+ 02h 48' 56''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10136.0,
            "times_seconds": 243986.0
        },
        {
            "index": 2714,
            "rank": 145,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "67h 47' 18''",
            "gap": "+ 02h 49' 48''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10188.0,
            "times_seconds": 244038.0
        },
        {
            "index": 2715,
            "rank": 146,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "67h 47' 51''",
            "gap": "+ 02h 50' 21''",
            "b": "B : 20''",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10221.0,
            "times_seconds": 244071.0
        },
        {
            "index": 2716,
            "rank": 147,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "67h 47' 52''",
            "gap": "+ 02h 50' 22''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10222.0,
            "times_seconds": 244072.0
        },
        {
            "index": 2717,
            "rank": 148,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "67h 47' 58''",
            "gap": "+ 02h 50' 28''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10228.0,
            "times_seconds": 244078.0
        },
        {
            "index": 2718,
            "rank": 149,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "67h 48' 11''",
            "gap": "+ 02h 50' 41''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 16,
            "gap_seconds": 10241.0,
            "times_seconds": 244091.0
        },
        {
            "index": 2719,
            "rank": 150,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "67h 48' 33''",
            "gap": "+ 02h 51' 03''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10263.0,
            "times_seconds": 244113.0
        },
        {
            "index": 2720,
            "rank": 151,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "67h 48' 57''",
            "gap": "+ 02h 51' 27''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10287.0,
            "times_seconds": 244137.0
        },
        {
            "index": 2721,
            "rank": 152,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "67h 49' 02''",
            "gap": "+ 02h 51' 32''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10292.0,
            "times_seconds": 244142.0
        },
        {
            "index": 2722,
            "rank": 153,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "67h 49' 18''",
            "gap": "+ 02h 51' 48''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 16,
            "gap_seconds": 10308.0,
            "times_seconds": 244158.0
        },
        {
            "index": 2723,
            "rank": 154,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "67h 50' 03''",
            "gap": "+ 02h 52' 33''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10353.0,
            "times_seconds": 244203.0
        },
        {
            "index": 2724,
            "rank": 155,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "67h 50' 28''",
            "gap": "+ 02h 52' 58''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10378.0,
            "times_seconds": 244228.0
        },
        {
            "index": 2725,
            "rank": 156,
            "rider": "Cees Bol",
            "rider no.": 143,
            "team": "Team Sunweb",
            "times": "67h 52' 50''",
            "gap": "+ 02h 55' 20''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10520.0,
            "times_seconds": 244370.0
        },
        {
            "index": 2726,
            "rank": 157,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "67h 53' 08''",
            "gap": "+ 02h 55' 38''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10538.0,
            "times_seconds": 244388.0
        },
        {
            "index": 2727,
            "rank": 158,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "67h 53' 19''",
            "gap": "+ 02h 55' 49''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10549.0,
            "times_seconds": 244399.0
        },
        {
            "index": 2728,
            "rank": 159,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "67h 59' 11''",
            "gap": "+ 03h 01' 41''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 10901.0,
            "times_seconds": 244751.0
        },
        {
            "index": 2729,
            "rank": 160,
            "rider": "Tony Martin",
            "rider no.": 86,
            "team": "Team Jumbo - Visma",
            "times": "68h 05' 16''",
            "gap": "+ 03h 07' 46''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 11266.0,
            "times_seconds": 245116.0
        },
        {
            "index": 2730,
            "rank": 161,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "68h 10' 16''",
            "gap": "+ 03h 12' 46''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 11566.0,
            "times_seconds": 245416.0
        },
        {
            "index": 2731,
            "rank": 162,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "68h 13' 22''",
            "gap": "+ 03h 15' 52''",
            "b": "-",
            "p": "-",
            "stage": 16,
            "gap_seconds": 11752.0,
            "times_seconds": 245602.0
        },
        {
            "index": 2732,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "69h 39' 16''",
            "gap": "-",
            "b": "B : 30''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 0.0,
            "times_seconds": 250756.0
        },
        {
            "index": 2733,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "69h 40' 51''",
            "gap": "+ 00h 01' 35''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 95.0,
            "times_seconds": 250851.0
        },
        {
            "index": 2734,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "69h 41' 03''",
            "gap": "+ 00h 01' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 107.0,
            "times_seconds": 250863.0
        },
        {
            "index": 2735,
            "rank": 4,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "69h 41' 06''",
            "gap": "+ 00h 01' 50''",
            "b": "B : 24''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 110.0,
            "times_seconds": 250866.0
        },
        {
            "index": 2736,
            "rank": 5,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "69h 41' 18''",
            "gap": "+ 00h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 122.0,
            "times_seconds": 250878.0
        },
        {
            "index": 2737,
            "rank": 6,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "69h 41' 30''",
            "gap": "+ 00h 02' 14''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 134.0,
            "times_seconds": 250890.0
        },
        {
            "index": 2738,
            "rank": 7,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "69h 44' 10''",
            "gap": "+ 00h 04' 54''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 294.0,
            "times_seconds": 251050.0
        },
        {
            "index": 2739,
            "rank": 8,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "69h 44' 16''",
            "gap": "+ 00h 05' 00''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 300.0,
            "times_seconds": 251056.0
        },
        {
            "index": 2740,
            "rank": 9,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "69h 44' 49''",
            "gap": "+ 00h 05' 33''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 333.0,
            "times_seconds": 251089.0
        },
        {
            "index": 2741,
            "rank": 10,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "69h 45' 46''",
            "gap": "+ 00h 06' 30''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 390.0,
            "times_seconds": 251146.0
        },
        {
            "index": 2742,
            "rank": 11,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "69h 46' 38''",
            "gap": "+ 00h 07' 22''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 442.0,
            "times_seconds": 251198.0
        },
        {
            "index": 2743,
            "rank": 12,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "69h 48' 46''",
            "gap": "+ 00h 09' 30''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 570.0,
            "times_seconds": 251326.0
        },
        {
            "index": 2744,
            "rank": 13,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "69h 50' 24''",
            "gap": "+ 00h 11' 08''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 668.0,
            "times_seconds": 251424.0
        },
        {
            "index": 2745,
            "rank": 14,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "69h 50' 55''",
            "gap": "+ 00h 11' 39''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 699.0,
            "times_seconds": 251455.0
        },
        {
            "index": 2746,
            "rank": 15,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "69h 51' 22''",
            "gap": "+ 00h 12' 06''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 726.0,
            "times_seconds": 251482.0
        },
        {
            "index": 2747,
            "rank": 16,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "69h 52' 58''",
            "gap": "+ 00h 13' 42''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 822.0,
            "times_seconds": 251578.0
        },
        {
            "index": 2748,
            "rank": 17,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "69h 53' 31''",
            "gap": "+ 00h 14' 15''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 855.0,
            "times_seconds": 251611.0
        },
        {
            "index": 2749,
            "rank": 18,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "69h 54' 49''",
            "gap": "+ 00h 15' 33''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 933.0,
            "times_seconds": 251689.0
        },
        {
            "index": 2750,
            "rank": 19,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "69h 57' 41''",
            "gap": "+ 00h 18' 25''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 1105.0,
            "times_seconds": 251861.0
        },
        {
            "index": 2751,
            "rank": 20,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "70h 06' 25''",
            "gap": "+ 00h 27' 09''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 1629.0,
            "times_seconds": 252385.0
        },
        {
            "index": 2752,
            "rank": 21,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "70h 06' 49''",
            "gap": "+ 00h 27' 33''",
            "b": "B : 2''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 1653.0,
            "times_seconds": 252409.0
        },
        {
            "index": 2753,
            "rank": 22,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "70h 09' 49''",
            "gap": "+ 00h 30' 33''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 17,
            "gap_seconds": 1833.0,
            "times_seconds": 252589.0
        },
        {
            "index": 2754,
            "rank": 23,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "70h 11' 33''",
            "gap": "+ 00h 32' 17''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 17,
            "gap_seconds": 1937.0,
            "times_seconds": 252693.0
        },
        {
            "index": 2755,
            "rank": 24,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "70h 13' 27''",
            "gap": "+ 00h 34' 11''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2051.0,
            "times_seconds": 252807.0
        },
        {
            "index": 2756,
            "rank": 25,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "70h 18' 26''",
            "gap": "+ 00h 39' 10''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2350.0,
            "times_seconds": 253106.0
        },
        {
            "index": 2757,
            "rank": 26,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "70h 18' 39''",
            "gap": "+ 00h 39' 23''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2363.0,
            "times_seconds": 253119.0
        },
        {
            "index": 2758,
            "rank": 27,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "70h 20' 15''",
            "gap": "+ 00h 40' 59''",
            "b": "B : 2''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2459.0,
            "times_seconds": 253215.0
        },
        {
            "index": 2759,
            "rank": 28,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "70h 20' 58''",
            "gap": "+ 00h 41' 42''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2502.0,
            "times_seconds": 253258.0
        },
        {
            "index": 2760,
            "rank": 29,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "70h 23' 18''",
            "gap": "+ 00h 44' 02''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2642.0,
            "times_seconds": 253398.0
        },
        {
            "index": 2761,
            "rank": 30,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "70h 25' 17''",
            "gap": "+ 00h 46' 01''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2761.0,
            "times_seconds": 253517.0
        },
        {
            "index": 2762,
            "rank": 31,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "70h 27' 59''",
            "gap": "+ 00h 48' 43''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2923.0,
            "times_seconds": 253679.0
        },
        {
            "index": 2763,
            "rank": 32,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "70h 28' 11''",
            "gap": "+ 00h 48' 55''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 2935.0,
            "times_seconds": 253691.0
        },
        {
            "index": 2764,
            "rank": 33,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "70h 30' 33''",
            "gap": "+ 00h 51' 17''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3077.0,
            "times_seconds": 253833.0
        },
        {
            "index": 2765,
            "rank": 34,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "70h 30' 37''",
            "gap": "+ 00h 51' 21''",
            "b": "B : 14''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3081.0,
            "times_seconds": 253837.0
        },
        {
            "index": 2766,
            "rank": 35,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "70h 31' 57''",
            "gap": "+ 00h 52' 41''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3161.0,
            "times_seconds": 253917.0
        },
        {
            "index": 2767,
            "rank": 36,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "70h 32' 40''",
            "gap": "+ 00h 53' 24''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3204.0,
            "times_seconds": 253960.0
        },
        {
            "index": 2768,
            "rank": 37,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "70h 32' 42''",
            "gap": "+ 00h 53' 26''",
            "b": "B : 14''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3206.0,
            "times_seconds": 253962.0
        },
        {
            "index": 2769,
            "rank": 38,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "70h 33' 07''",
            "gap": "+ 00h 53' 51''",
            "b": "B : 9''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3231.0,
            "times_seconds": 253987.0
        },
        {
            "index": 2770,
            "rank": 39,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "70h 38' 34''",
            "gap": "+ 00h 59' 18''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3558.0,
            "times_seconds": 254314.0
        },
        {
            "index": 2771,
            "rank": 40,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "70h 39' 27''",
            "gap": "+ 01h 00' 11''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3611.0,
            "times_seconds": 254367.0
        },
        {
            "index": 2772,
            "rank": 41,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "70h 40' 40''",
            "gap": "+ 01h 01' 24''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3684.0,
            "times_seconds": 254440.0
        },
        {
            "index": 2773,
            "rank": 42,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "70h 40' 44''",
            "gap": "+ 01h 01' 28''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3688.0,
            "times_seconds": 254444.0
        },
        {
            "index": 2774,
            "rank": 43,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "70h 40' 53''",
            "gap": "+ 01h 01' 37''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3697.0,
            "times_seconds": 254453.0
        },
        {
            "index": 2775,
            "rank": 44,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "70h 45' 47''",
            "gap": "+ 01h 06' 31''",
            "b": "B : 15''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 3991.0,
            "times_seconds": 254747.0
        },
        {
            "index": 2776,
            "rank": 45,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "70h 46' 20''",
            "gap": "+ 01h 07' 04''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4024.0,
            "times_seconds": 254780.0
        },
        {
            "index": 2777,
            "rank": 46,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "70h 47' 25''",
            "gap": "+ 01h 08' 09''",
            "b": "B : 2''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4089.0,
            "times_seconds": 254845.0
        },
        {
            "index": 2778,
            "rank": 47,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "70h 47' 42''",
            "gap": "+ 01h 08' 26''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4106.0,
            "times_seconds": 254862.0
        },
        {
            "index": 2779,
            "rank": 48,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "70h 50' 39''",
            "gap": "+ 01h 11' 23''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4283.0,
            "times_seconds": 255039.0
        },
        {
            "index": 2780,
            "rank": 49,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "70h 51' 26''",
            "gap": "+ 01h 12' 10''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4330.0,
            "times_seconds": 255086.0
        },
        {
            "index": 2781,
            "rank": 50,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "70h 53' 03''",
            "gap": "+ 01h 13' 47''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4427.0,
            "times_seconds": 255183.0
        },
        {
            "index": 2782,
            "rank": 51,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "70h 53' 43''",
            "gap": "+ 01h 14' 27''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4467.0,
            "times_seconds": 255223.0
        },
        {
            "index": 2783,
            "rank": 52,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "70h 55' 09''",
            "gap": "+ 01h 15' 53''",
            "b": "B : 8''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4553.0,
            "times_seconds": 255309.0
        },
        {
            "index": 2784,
            "rank": 53,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "70h 57' 32''",
            "gap": "+ 01h 18' 16''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4696.0,
            "times_seconds": 255452.0
        },
        {
            "index": 2785,
            "rank": 54,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "70h 58' 39''",
            "gap": "+ 01h 19' 23''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4763.0,
            "times_seconds": 255519.0
        },
        {
            "index": 2786,
            "rank": 55,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "70h 59' 06''",
            "gap": "+ 01h 19' 50''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4790.0,
            "times_seconds": 255546.0
        },
        {
            "index": 2787,
            "rank": 56,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "70h 59' 34''",
            "gap": "+ 01h 20' 18''",
            "b": "B : 6''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4818.0,
            "times_seconds": 255574.0
        },
        {
            "index": 2788,
            "rank": 57,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "70h 59' 54''",
            "gap": "+ 01h 20' 38''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4838.0,
            "times_seconds": 255594.0
        },
        {
            "index": 2789,
            "rank": 58,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "71h 02' 21''",
            "gap": "+ 01h 23' 05''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 4985.0,
            "times_seconds": 255741.0
        },
        {
            "index": 2790,
            "rank": 59,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "71h 02' 48''",
            "gap": "+ 01h 23' 32''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5012.0,
            "times_seconds": 255768.0
        },
        {
            "index": 2791,
            "rank": 60,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "71h 03' 42''",
            "gap": "+ 01h 24' 26''",
            "b": "B : 18''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5066.0,
            "times_seconds": 255822.0
        },
        {
            "index": 2792,
            "rank": 61,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "71h 05' 24''",
            "gap": "+ 01h 26' 08''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5168.0,
            "times_seconds": 255924.0
        },
        {
            "index": 2793,
            "rank": 62,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "71h 05' 28''",
            "gap": "+ 01h 26' 12''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5172.0,
            "times_seconds": 255928.0
        },
        {
            "index": 2794,
            "rank": 63,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "71h 06' 34''",
            "gap": "+ 01h 27' 18''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5238.0,
            "times_seconds": 255994.0
        },
        {
            "index": 2795,
            "rank": 64,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "71h 06' 40''",
            "gap": "+ 01h 27' 24''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5244.0,
            "times_seconds": 256000.0
        },
        {
            "index": 2796,
            "rank": 65,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "71h 07' 17''",
            "gap": "+ 01h 28' 01''",
            "b": "B : 33''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5281.0,
            "times_seconds": 256037.0
        },
        {
            "index": 2797,
            "rank": 66,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "71h 09' 27''",
            "gap": "+ 01h 30' 11''",
            "b": "B : 11''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5411.0,
            "times_seconds": 256167.0
        },
        {
            "index": 2798,
            "rank": 67,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "71h 09' 43''",
            "gap": "+ 01h 30' 27''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5427.0,
            "times_seconds": 256183.0
        },
        {
            "index": 2799,
            "rank": 68,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "71h 11' 40''",
            "gap": "+ 01h 32' 24''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5544.0,
            "times_seconds": 256300.0
        },
        {
            "index": 2800,
            "rank": 69,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "71h 11' 46''",
            "gap": "+ 01h 32' 30''",
            "b": "B : 8''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5550.0,
            "times_seconds": 256306.0
        },
        {
            "index": 2801,
            "rank": 70,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "71h 12' 32''",
            "gap": "+ 01h 33' 16''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5596.0,
            "times_seconds": 256352.0
        },
        {
            "index": 2802,
            "rank": 71,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "71h 13' 45''",
            "gap": "+ 01h 34' 29''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5669.0,
            "times_seconds": 256425.0
        },
        {
            "index": 2803,
            "rank": 72,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "71h 14' 35''",
            "gap": "+ 01h 35' 19''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5719.0,
            "times_seconds": 256475.0
        },
        {
            "index": 2804,
            "rank": 73,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "71h 15' 16''",
            "gap": "+ 01h 36' 00''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5760.0,
            "times_seconds": 256516.0
        },
        {
            "index": 2805,
            "rank": 74,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "71h 16' 47''",
            "gap": "+ 01h 37' 31''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 5851.0,
            "times_seconds": 256607.0
        },
        {
            "index": 2806,
            "rank": 75,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "71h 20' 31''",
            "gap": "+ 01h 41' 15''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6075.0,
            "times_seconds": 256831.0
        },
        {
            "index": 2807,
            "rank": 76,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "71h 20' 56''",
            "gap": "+ 01h 41' 40''",
            "b": "B : 18''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6100.0,
            "times_seconds": 256856.0
        },
        {
            "index": 2808,
            "rank": 77,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "71h 21' 09''",
            "gap": "+ 01h 41' 53''",
            "b": "B : 20''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6113.0,
            "times_seconds": 256869.0
        },
        {
            "index": 2809,
            "rank": 78,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "71h 22' 37''",
            "gap": "+ 01h 43' 21''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6201.0,
            "times_seconds": 256957.0
        },
        {
            "index": 2810,
            "rank": 79,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "71h 23' 02''",
            "gap": "+ 01h 43' 46''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6226.0,
            "times_seconds": 256982.0
        },
        {
            "index": 2811,
            "rank": 80,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "71h 23' 06''",
            "gap": "+ 01h 43' 50''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6230.0,
            "times_seconds": 256986.0
        },
        {
            "index": 2812,
            "rank": 81,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "71h 25' 21''",
            "gap": "+ 01h 46' 05''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6365.0,
            "times_seconds": 257121.0
        },
        {
            "index": 2813,
            "rank": 82,
            "rider": "S\u00f8ren Kragh Andersen",
            "rider no.": 147,
            "team": "Team Sunweb",
            "times": "71h 26' 13''",
            "gap": "+ 01h 46' 57''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6417.0,
            "times_seconds": 257173.0
        },
        {
            "index": 2814,
            "rank": 83,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "71h 27' 32''",
            "gap": "+ 01h 48' 16''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6496.0,
            "times_seconds": 257252.0
        },
        {
            "index": 2815,
            "rank": 84,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "71h 29' 30''",
            "gap": "+ 01h 50' 14''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6614.0,
            "times_seconds": 257370.0
        },
        {
            "index": 2816,
            "rank": 85,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "71h 32' 36''",
            "gap": "+ 01h 53' 20''",
            "b": "B : 4''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6800.0,
            "times_seconds": 257556.0
        },
        {
            "index": 2817,
            "rank": 86,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "71h 32' 38''",
            "gap": "+ 01h 53' 22''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6802.0,
            "times_seconds": 257558.0
        },
        {
            "index": 2818,
            "rank": 87,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "71h 33' 26''",
            "gap": "+ 01h 54' 10''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6850.0,
            "times_seconds": 257606.0
        },
        {
            "index": 2819,
            "rank": 88,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "71h 35' 20''",
            "gap": "+ 01h 56' 04''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6964.0,
            "times_seconds": 257720.0
        },
        {
            "index": 2820,
            "rank": 89,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "71h 35' 30''",
            "gap": "+ 01h 56' 14''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6974.0,
            "times_seconds": 257730.0
        },
        {
            "index": 2821,
            "rank": 90,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "71h 35' 51''",
            "gap": "+ 01h 56' 35''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6995.0,
            "times_seconds": 257751.0
        },
        {
            "index": 2822,
            "rank": 91,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "71h 35' 51''",
            "gap": "+ 01h 56' 35''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 6995.0,
            "times_seconds": 257751.0
        },
        {
            "index": 2823,
            "rank": 92,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "71h 38' 13''",
            "gap": "+ 01h 58' 57''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7137.0,
            "times_seconds": 257893.0
        },
        {
            "index": 2824,
            "rank": 93,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "71h 43' 42''",
            "gap": "+ 02h 04' 26''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7466.0,
            "times_seconds": 258222.0
        },
        {
            "index": 2825,
            "rank": 94,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "71h 43' 59''",
            "gap": "+ 02h 04' 43''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7483.0,
            "times_seconds": 258239.0
        },
        {
            "index": 2826,
            "rank": 95,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "71h 44' 55''",
            "gap": "+ 02h 05' 39''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7539.0,
            "times_seconds": 258295.0
        },
        {
            "index": 2827,
            "rank": 96,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "71h 45' 09''",
            "gap": "+ 02h 05' 53''",
            "b": "B : 10''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7553.0,
            "times_seconds": 258309.0
        },
        {
            "index": 2828,
            "rank": 97,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "71h 45' 50''",
            "gap": "+ 02h 06' 34''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7594.0,
            "times_seconds": 258350.0
        },
        {
            "index": 2829,
            "rank": 98,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "71h 46' 13''",
            "gap": "+ 02h 06' 57''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7617.0,
            "times_seconds": 258373.0
        },
        {
            "index": 2830,
            "rank": 99,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "71h 46' 18''",
            "gap": "+ 02h 07' 02''",
            "b": "B : 10''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7622.0,
            "times_seconds": 258378.0
        },
        {
            "index": 2831,
            "rank": 100,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "71h 46' 30''",
            "gap": "+ 02h 07' 14''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7634.0,
            "times_seconds": 258390.0
        },
        {
            "index": 2832,
            "rank": 101,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "71h 46' 46''",
            "gap": "+ 02h 07' 30''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7650.0,
            "times_seconds": 258406.0
        },
        {
            "index": 2833,
            "rank": 102,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "71h 48' 04''",
            "gap": "+ 02h 08' 48''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7728.0,
            "times_seconds": 258484.0
        },
        {
            "index": 2834,
            "rank": 103,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "71h 48' 41''",
            "gap": "+ 02h 09' 25''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7765.0,
            "times_seconds": 258521.0
        },
        {
            "index": 2835,
            "rank": 104,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "71h 50' 10''",
            "gap": "+ 02h 10' 54''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7854.0,
            "times_seconds": 258610.0
        },
        {
            "index": 2836,
            "rank": 105,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "71h 51' 17''",
            "gap": "+ 02h 12' 01''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7921.0,
            "times_seconds": 258677.0
        },
        {
            "index": 2837,
            "rank": 106,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "71h 51' 26''",
            "gap": "+ 02h 12' 10''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7930.0,
            "times_seconds": 258686.0
        },
        {
            "index": 2838,
            "rank": 107,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "71h 52' 35''",
            "gap": "+ 02h 13' 19''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 7999.0,
            "times_seconds": 258755.0
        },
        {
            "index": 2839,
            "rank": 108,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "71h 53' 56''",
            "gap": "+ 02h 14' 40''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8080.0,
            "times_seconds": 258836.0
        },
        {
            "index": 2840,
            "rank": 109,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "71h 54' 20''",
            "gap": "+ 02h 15' 04''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8104.0,
            "times_seconds": 258860.0
        },
        {
            "index": 2841,
            "rank": 110,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "71h 55' 19''",
            "gap": "+ 02h 16' 03''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8163.0,
            "times_seconds": 258919.0
        },
        {
            "index": 2842,
            "rank": 111,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "71h 55' 49''",
            "gap": "+ 02h 16' 33''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8193.0,
            "times_seconds": 258949.0
        },
        {
            "index": 2843,
            "rank": 112,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "71h 56' 15''",
            "gap": "+ 02h 16' 59''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8219.0,
            "times_seconds": 258975.0
        },
        {
            "index": 2844,
            "rank": 113,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "71h 57' 25''",
            "gap": "+ 02h 18' 09''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8289.0,
            "times_seconds": 259045.0
        },
        {
            "index": 2845,
            "rank": 114,
            "rider": "Lukas P\u00f6stlberger",
            "rider no.": 17,
            "team": "Bora - Hansgrohe",
            "times": "72h 00' 01''",
            "gap": "+ 02h 20' 45''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8445.0,
            "times_seconds": 259201.0
        },
        {
            "index": 2846,
            "rank": 115,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "72h 00' 08''",
            "gap": "+ 02h 20' 52''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8452.0,
            "times_seconds": 259208.0
        },
        {
            "index": 2847,
            "rank": 116,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "72h 03' 34''",
            "gap": "+ 02h 24' 18''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8658.0,
            "times_seconds": 259414.0
        },
        {
            "index": 2848,
            "rank": 117,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "72h 03' 43''",
            "gap": "+ 02h 24' 27''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8667.0,
            "times_seconds": 259423.0
        },
        {
            "index": 2849,
            "rank": 118,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "72h 04' 17''",
            "gap": "+ 02h 25' 01''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8701.0,
            "times_seconds": 259457.0
        },
        {
            "index": 2850,
            "rank": 119,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "72h 04' 42''",
            "gap": "+ 02h 25' 26''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8726.0,
            "times_seconds": 259482.0
        },
        {
            "index": 2851,
            "rank": 120,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "72h 06' 32''",
            "gap": "+ 02h 27' 16''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8836.0,
            "times_seconds": 259592.0
        },
        {
            "index": 2852,
            "rank": 121,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "72h 06' 47''",
            "gap": "+ 02h 27' 31''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 8851.0,
            "times_seconds": 259607.0
        },
        {
            "index": 2853,
            "rank": 122,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "72h 10' 25''",
            "gap": "+ 02h 31' 09''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9069.0,
            "times_seconds": 259825.0
        },
        {
            "index": 2854,
            "rank": 123,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "72h 11' 25''",
            "gap": "+ 02h 32' 09''",
            "b": "B : 6''",
            "p": "P : 00' 10''",
            "stage": 17,
            "gap_seconds": 9129.0,
            "times_seconds": 259885.0
        },
        {
            "index": 2855,
            "rank": 124,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "72h 12' 58''",
            "gap": "+ 02h 33' 42''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9222.0,
            "times_seconds": 259978.0
        },
        {
            "index": 2856,
            "rank": 125,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "72h 14' 12''",
            "gap": "+ 02h 34' 56''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9296.0,
            "times_seconds": 260052.0
        },
        {
            "index": 2857,
            "rank": 126,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "72h 17' 39''",
            "gap": "+ 02h 38' 23''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9503.0,
            "times_seconds": 260259.0
        },
        {
            "index": 2858,
            "rank": 127,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "72h 18' 19''",
            "gap": "+ 02h 39' 03''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9543.0,
            "times_seconds": 260299.0
        },
        {
            "index": 2859,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "72h 18' 51''",
            "gap": "+ 02h 39' 35''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9575.0,
            "times_seconds": 260331.0
        },
        {
            "index": 2860,
            "rank": 129,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "72h 19' 22''",
            "gap": "+ 02h 40' 06''",
            "b": "B : 26''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9606.0,
            "times_seconds": 260362.0
        },
        {
            "index": 2861,
            "rank": 130,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "72h 19' 44''",
            "gap": "+ 02h 40' 28''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9628.0,
            "times_seconds": 260384.0
        },
        {
            "index": 2862,
            "rank": 131,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "72h 20' 07''",
            "gap": "+ 02h 40' 51''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 17,
            "gap_seconds": 9651.0,
            "times_seconds": 260407.0
        },
        {
            "index": 2863,
            "rank": 132,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "72h 20' 41''",
            "gap": "+ 02h 41' 25''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9685.0,
            "times_seconds": 260441.0
        },
        {
            "index": 2864,
            "rank": 133,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "72h 21' 34''",
            "gap": "+ 02h 42' 18''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9738.0,
            "times_seconds": 260494.0
        },
        {
            "index": 2865,
            "rank": 134,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "72h 22' 10''",
            "gap": "+ 02h 42' 54''",
            "b": "B : 38''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9774.0,
            "times_seconds": 260530.0
        },
        {
            "index": 2866,
            "rank": 135,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "72h 24' 18''",
            "gap": "+ 02h 45' 02''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9902.0,
            "times_seconds": 260658.0
        },
        {
            "index": 2867,
            "rank": 136,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "72h 24' 47''",
            "gap": "+ 02h 45' 31''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9931.0,
            "times_seconds": 260687.0
        },
        {
            "index": 2868,
            "rank": 137,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "72h 25' 27''",
            "gap": "+ 02h 46' 11''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 9971.0,
            "times_seconds": 260727.0
        },
        {
            "index": 2869,
            "rank": 138,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "72h 27' 20''",
            "gap": "+ 02h 48' 04''",
            "b": "B : 6''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10084.0,
            "times_seconds": 260840.0
        },
        {
            "index": 2870,
            "rank": 139,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "72h 30' 52''",
            "gap": "+ 02h 51' 36''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10296.0,
            "times_seconds": 261052.0
        },
        {
            "index": 2871,
            "rank": 140,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "72h 31' 05''",
            "gap": "+ 02h 51' 49''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10309.0,
            "times_seconds": 261065.0
        },
        {
            "index": 2872,
            "rank": 141,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "72h 33' 29''",
            "gap": "+ 02h 54' 13''",
            "b": "B : 20''",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10453.0,
            "times_seconds": 261209.0
        },
        {
            "index": 2873,
            "rank": 142,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "72h 34' 36''",
            "gap": "+ 02h 55' 20''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10520.0,
            "times_seconds": 261276.0
        },
        {
            "index": 2874,
            "rank": 143,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "72h 35' 11''",
            "gap": "+ 02h 55' 55''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10555.0,
            "times_seconds": 261311.0
        },
        {
            "index": 2875,
            "rank": 144,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "72h 35' 19''",
            "gap": "+ 02h 56' 03''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10563.0,
            "times_seconds": 261319.0
        },
        {
            "index": 2876,
            "rank": 145,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "72h 35' 23''",
            "gap": "+ 02h 56' 07''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10567.0,
            "times_seconds": 261323.0
        },
        {
            "index": 2877,
            "rank": 146,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "72h 35' 28''",
            "gap": "+ 02h 56' 12''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10572.0,
            "times_seconds": 261328.0
        },
        {
            "index": 2878,
            "rank": 147,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "72h 35' 42''",
            "gap": "+ 02h 56' 26''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 17,
            "gap_seconds": 10586.0,
            "times_seconds": 261342.0
        },
        {
            "index": 2879,
            "rank": 148,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "72h 36' 04''",
            "gap": "+ 02h 56' 48''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10608.0,
            "times_seconds": 261364.0
        },
        {
            "index": 2880,
            "rank": 149,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "72h 36' 33''",
            "gap": "+ 02h 57' 17''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10637.0,
            "times_seconds": 261393.0
        },
        {
            "index": 2881,
            "rank": 150,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "72h 36' 52''",
            "gap": "+ 02h 57' 36''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10656.0,
            "times_seconds": 261412.0
        },
        {
            "index": 2882,
            "rank": 151,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "72h 37' 31''",
            "gap": "+ 02h 58' 15''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10695.0,
            "times_seconds": 261451.0
        },
        {
            "index": 2883,
            "rank": 152,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "72h 37' 59''",
            "gap": "+ 02h 58' 43''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10723.0,
            "times_seconds": 261479.0
        },
        {
            "index": 2884,
            "rank": 153,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "72h 38' 13''",
            "gap": "+ 02h 58' 57''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10737.0,
            "times_seconds": 261493.0
        },
        {
            "index": 2885,
            "rank": 154,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "72h 39' 39''",
            "gap": "+ 03h 00' 23''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10823.0,
            "times_seconds": 261579.0
        },
        {
            "index": 2886,
            "rank": 155,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "72h 42' 29''",
            "gap": "+ 03h 03' 13''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 10993.0,
            "times_seconds": 261749.0
        },
        {
            "index": 2887,
            "rank": 156,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "72h 47' 21''",
            "gap": "+ 03h 08' 05''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 11285.0,
            "times_seconds": 262041.0
        },
        {
            "index": 2888,
            "rank": 157,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "72h 57' 47''",
            "gap": "+ 03h 18' 31''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 11911.0,
            "times_seconds": 262667.0
        },
        {
            "index": 2889,
            "rank": 158,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "73h 01' 32''",
            "gap": "+ 03h 22' 16''",
            "b": "-",
            "p": "-",
            "stage": 17,
            "gap_seconds": 12136.0,
            "times_seconds": 262892.0
        },
        {
            "index": 2890,
            "rank": 1,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "75h 18' 49''",
            "gap": "-",
            "b": "B : 30''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 0.0,
            "times_seconds": 271129.0
        },
        {
            "index": 2891,
            "rank": 2,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "75h 20' 19''",
            "gap": "+ 00h 01' 30''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 90.0,
            "times_seconds": 271219.0
        },
        {
            "index": 2892,
            "rank": 3,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "75h 20' 24''",
            "gap": "+ 00h 01' 35''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 95.0,
            "times_seconds": 271224.0
        },
        {
            "index": 2893,
            "rank": 4,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "75h 20' 36''",
            "gap": "+ 00h 01' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 107.0,
            "times_seconds": 271236.0
        },
        {
            "index": 2894,
            "rank": 5,
            "rider": "Thibaut Pinot",
            "rider no.": 51,
            "team": "Groupama - Fdj",
            "times": "75h 20' 39''",
            "gap": "+ 00h 01' 50''",
            "b": "B : 24''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 110.0,
            "times_seconds": 271239.0
        },
        {
            "index": 2895,
            "rank": 6,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "75h 21' 03''",
            "gap": "+ 00h 02' 14''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 134.0,
            "times_seconds": 271263.0
        },
        {
            "index": 2896,
            "rank": 7,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "75h 22' 43''",
            "gap": "+ 00h 03' 54''",
            "b": "B : 18''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 234.0,
            "times_seconds": 271363.0
        },
        {
            "index": 2897,
            "rank": 8,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "75h 23' 43''",
            "gap": "+ 00h 04' 54''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 294.0,
            "times_seconds": 271423.0
        },
        {
            "index": 2898,
            "rank": 9,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "75h 24' 22''",
            "gap": "+ 00h 05' 33''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 333.0,
            "times_seconds": 271462.0
        },
        {
            "index": 2899,
            "rank": 10,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "75h 24' 47''",
            "gap": "+ 00h 05' 58''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 358.0,
            "times_seconds": 271487.0
        },
        {
            "index": 2900,
            "rank": 11,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "75h 25' 19''",
            "gap": "+ 00h 06' 30''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 390.0,
            "times_seconds": 271519.0
        },
        {
            "index": 2901,
            "rank": 12,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "75h 26' 36''",
            "gap": "+ 00h 07' 47''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 467.0,
            "times_seconds": 271596.0
        },
        {
            "index": 2902,
            "rank": 13,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "75h 34' 00''",
            "gap": "+ 00h 15' 11''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 911.0,
            "times_seconds": 272040.0
        },
        {
            "index": 2903,
            "rank": 14,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "75h 35' 10''",
            "gap": "+ 00h 16' 21''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 981.0,
            "times_seconds": 272110.0
        },
        {
            "index": 2904,
            "rank": 15,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "75h 35' 49''",
            "gap": "+ 00h 17' 00''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 1020.0,
            "times_seconds": 272149.0
        },
        {
            "index": 2905,
            "rank": 16,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "75h 37' 26''",
            "gap": "+ 00h 18' 37''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 1117.0,
            "times_seconds": 272246.0
        },
        {
            "index": 2906,
            "rank": 17,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "75h 41' 32''",
            "gap": "+ 00h 22' 43''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 1363.0,
            "times_seconds": 272492.0
        },
        {
            "index": 2907,
            "rank": 18,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "75h 42' 28''",
            "gap": "+ 00h 23' 39''",
            "b": "B : 13''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 1419.0,
            "times_seconds": 272548.0
        },
        {
            "index": 2908,
            "rank": 19,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "75h 53' 12''",
            "gap": "+ 00h 34' 23''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2063.0,
            "times_seconds": 273192.0
        },
        {
            "index": 2909,
            "rank": 20,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "75h 54' 41''",
            "gap": "+ 00h 35' 52''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 18,
            "gap_seconds": 2152.0,
            "times_seconds": 273281.0
        },
        {
            "index": 2910,
            "rank": 21,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "75h 55' 02''",
            "gap": "+ 00h 36' 13''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 18,
            "gap_seconds": 2173.0,
            "times_seconds": 273302.0
        },
        {
            "index": 2911,
            "rank": 22,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "75h 55' 16''",
            "gap": "+ 00h 36' 27''",
            "b": "B : 6''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2187.0,
            "times_seconds": 273316.0
        },
        {
            "index": 2912,
            "rank": 23,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "76h 01' 19''",
            "gap": "+ 00h 42' 30''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2550.0,
            "times_seconds": 273679.0
        },
        {
            "index": 2913,
            "rank": 24,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "76h 04' 34''",
            "gap": "+ 00h 45' 45''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2745.0,
            "times_seconds": 273874.0
        },
        {
            "index": 2914,
            "rank": 25,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "76h 06' 02''",
            "gap": "+ 00h 47' 13''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2833.0,
            "times_seconds": 273962.0
        },
        {
            "index": 2915,
            "rank": 26,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "76h 07' 07''",
            "gap": "+ 00h 48' 18''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2898.0,
            "times_seconds": 274027.0
        },
        {
            "index": 2916,
            "rank": 27,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "76h 08' 24''",
            "gap": "+ 00h 49' 35''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2975.0,
            "times_seconds": 274104.0
        },
        {
            "index": 2917,
            "rank": 28,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "76h 08' 30''",
            "gap": "+ 00h 49' 41''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 2981.0,
            "times_seconds": 274110.0
        },
        {
            "index": 2918,
            "rank": 29,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "76h 15' 35''",
            "gap": "+ 00h 56' 46''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3406.0,
            "times_seconds": 274535.0
        },
        {
            "index": 2919,
            "rank": 30,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "76h 17' 15''",
            "gap": "+ 00h 58' 26''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3506.0,
            "times_seconds": 274635.0
        },
        {
            "index": 2920,
            "rank": 31,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "76h 22' 12''",
            "gap": "+ 01h 03' 23''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3803.0,
            "times_seconds": 274932.0
        },
        {
            "index": 2921,
            "rank": 32,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "76h 22' 39''",
            "gap": "+ 01h 03' 50''",
            "b": "B : 9''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3830.0,
            "times_seconds": 274959.0
        },
        {
            "index": 2922,
            "rank": 33,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "76h 24' 29''",
            "gap": "+ 01h 05' 40''",
            "b": "B : 2''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3940.0,
            "times_seconds": 275069.0
        },
        {
            "index": 2923,
            "rank": 34,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "76h 25' 16''",
            "gap": "+ 01h 06' 27''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 3987.0,
            "times_seconds": 275116.0
        },
        {
            "index": 2924,
            "rank": 35,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "76h 25' 31''",
            "gap": "+ 01h 06' 42''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4002.0,
            "times_seconds": 275131.0
        },
        {
            "index": 2925,
            "rank": 36,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "76h 26' 26''",
            "gap": "+ 01h 07' 37''",
            "b": "B : 2''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4057.0,
            "times_seconds": 275186.0
        },
        {
            "index": 2926,
            "rank": 37,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "76h 29' 37''",
            "gap": "+ 01h 10' 48''",
            "b": "B : 14''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4248.0,
            "times_seconds": 275377.0
        },
        {
            "index": 2927,
            "rank": 38,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "76h 30' 14''",
            "gap": "+ 01h 11' 25''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4285.0,
            "times_seconds": 275414.0
        },
        {
            "index": 2928,
            "rank": 39,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "76h 30' 33''",
            "gap": "+ 01h 11' 44''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4304.0,
            "times_seconds": 275433.0
        },
        {
            "index": 2929,
            "rank": 40,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "76h 31' 58''",
            "gap": "+ 01h 13' 09''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4389.0,
            "times_seconds": 275518.0
        },
        {
            "index": 2930,
            "rank": 41,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "76h 35' 58''",
            "gap": "+ 01h 17' 09''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4629.0,
            "times_seconds": 275758.0
        },
        {
            "index": 2931,
            "rank": 42,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "76h 36' 54''",
            "gap": "+ 01h 18' 05''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4685.0,
            "times_seconds": 275814.0
        },
        {
            "index": 2932,
            "rank": 43,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "76h 37' 35''",
            "gap": "+ 01h 18' 46''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4726.0,
            "times_seconds": 275855.0
        },
        {
            "index": 2933,
            "rank": 44,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "76h 40' 16''",
            "gap": "+ 01h 21' 27''",
            "b": "B : 14''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4887.0,
            "times_seconds": 276016.0
        },
        {
            "index": 2934,
            "rank": 45,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "76h 40' 45''",
            "gap": "+ 01h 21' 56''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 4916.0,
            "times_seconds": 276045.0
        },
        {
            "index": 2935,
            "rank": 46,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "76h 42' 41''",
            "gap": "+ 01h 23' 52''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5032.0,
            "times_seconds": 276161.0
        },
        {
            "index": 2936,
            "rank": 47,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "76h 46' 28''",
            "gap": "+ 01h 27' 39''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5259.0,
            "times_seconds": 276388.0
        },
        {
            "index": 2937,
            "rank": 48,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "76h 48' 28''",
            "gap": "+ 01h 29' 39''",
            "b": "B : 11''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5379.0,
            "times_seconds": 276508.0
        },
        {
            "index": 2938,
            "rank": 49,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "76h 50' 01''",
            "gap": "+ 01h 31' 12''",
            "b": "B : 15''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5472.0,
            "times_seconds": 276601.0
        },
        {
            "index": 2939,
            "rank": 50,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "76h 50' 23''",
            "gap": "+ 01h 31' 34''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5494.0,
            "times_seconds": 276623.0
        },
        {
            "index": 2940,
            "rank": 51,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "76h 50' 31''",
            "gap": "+ 01h 31' 42''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5502.0,
            "times_seconds": 276631.0
        },
        {
            "index": 2941,
            "rank": 52,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "76h 50' 34''",
            "gap": "+ 01h 31' 45''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5505.0,
            "times_seconds": 276634.0
        },
        {
            "index": 2942,
            "rank": 53,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "76h 54' 43''",
            "gap": "+ 01h 35' 54''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5754.0,
            "times_seconds": 276883.0
        },
        {
            "index": 2943,
            "rank": 54,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "76h 55' 34''",
            "gap": "+ 01h 36' 45''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5805.0,
            "times_seconds": 276934.0
        },
        {
            "index": 2944,
            "rank": 55,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "76h 56' 01''",
            "gap": "+ 01h 37' 12''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 5832.0,
            "times_seconds": 276961.0
        },
        {
            "index": 2945,
            "rank": 56,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "76h 59' 12''",
            "gap": "+ 01h 40' 23''",
            "b": "B : 8''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6023.0,
            "times_seconds": 277152.0
        },
        {
            "index": 2946,
            "rank": 57,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "76h 59' 23''",
            "gap": "+ 01h 40' 34''",
            "b": "B : 8''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6034.0,
            "times_seconds": 277163.0
        },
        {
            "index": 2947,
            "rank": 58,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "76h 59' 43''",
            "gap": "+ 01h 40' 54''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6054.0,
            "times_seconds": 277183.0
        },
        {
            "index": 2948,
            "rank": 59,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "77h 02' 09''",
            "gap": "+ 01h 43' 20''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6200.0,
            "times_seconds": 277329.0
        },
        {
            "index": 2949,
            "rank": 60,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "77h 02' 19''",
            "gap": "+ 01h 43' 30''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6210.0,
            "times_seconds": 277339.0
        },
        {
            "index": 2950,
            "rank": 61,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "77h 03' 29''",
            "gap": "+ 01h 44' 40''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6280.0,
            "times_seconds": 277409.0
        },
        {
            "index": 2951,
            "rank": 62,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "77h 03' 34''",
            "gap": "+ 01h 44' 45''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6285.0,
            "times_seconds": 277414.0
        },
        {
            "index": 2952,
            "rank": 63,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "77h 03' 48''",
            "gap": "+ 01h 44' 59''",
            "b": "B : 6''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6299.0,
            "times_seconds": 277428.0
        },
        {
            "index": 2953,
            "rank": 64,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "77h 04' 41''",
            "gap": "+ 01h 45' 52''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6352.0,
            "times_seconds": 277481.0
        },
        {
            "index": 2954,
            "rank": 65,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "77h 06' 38''",
            "gap": "+ 01h 47' 49''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6469.0,
            "times_seconds": 277598.0
        },
        {
            "index": 2955,
            "rank": 66,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "77h 07' 46''",
            "gap": "+ 01h 48' 57''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6537.0,
            "times_seconds": 277666.0
        },
        {
            "index": 2956,
            "rank": 67,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "77h 07' 46''",
            "gap": "+ 01h 48' 57''",
            "b": "B : 18''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6537.0,
            "times_seconds": 277666.0
        },
        {
            "index": 2957,
            "rank": 68,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "77h 09' 53''",
            "gap": "+ 01h 51' 04''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6664.0,
            "times_seconds": 277793.0
        },
        {
            "index": 2958,
            "rank": 69,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "77h 11' 30''",
            "gap": "+ 01h 52' 41''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6761.0,
            "times_seconds": 277890.0
        },
        {
            "index": 2959,
            "rank": 70,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "77h 11' 31''",
            "gap": "+ 01h 52' 42''",
            "b": "B : 33''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6762.0,
            "times_seconds": 277891.0
        },
        {
            "index": 2960,
            "rank": 71,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "77h 12' 11''",
            "gap": "+ 01h 53' 22''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6802.0,
            "times_seconds": 277931.0
        },
        {
            "index": 2961,
            "rank": 72,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "77h 12' 33''",
            "gap": "+ 01h 53' 44''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6824.0,
            "times_seconds": 277953.0
        },
        {
            "index": 2962,
            "rank": 73,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "77h 14' 52''",
            "gap": "+ 01h 56' 03''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 6963.0,
            "times_seconds": 278092.0
        },
        {
            "index": 2963,
            "rank": 74,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "77h 17' 59''",
            "gap": "+ 01h 59' 10''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7150.0,
            "times_seconds": 278279.0
        },
        {
            "index": 2964,
            "rank": 75,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "77h 19' 32''",
            "gap": "+ 02h 00' 43''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7243.0,
            "times_seconds": 278372.0
        },
        {
            "index": 2965,
            "rank": 76,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "77h 19' 36''",
            "gap": "+ 02h 00' 47''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7247.0,
            "times_seconds": 278376.0
        },
        {
            "index": 2966,
            "rank": 77,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "77h 21' 01''",
            "gap": "+ 02h 02' 12''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7332.0,
            "times_seconds": 278461.0
        },
        {
            "index": 2967,
            "rank": 78,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "77h 25' 10''",
            "gap": "+ 02h 06' 21''",
            "b": "B : 18''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7581.0,
            "times_seconds": 278710.0
        },
        {
            "index": 2968,
            "rank": 79,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "77h 25' 12''",
            "gap": "+ 02h 06' 23''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7583.0,
            "times_seconds": 278712.0
        },
        {
            "index": 2969,
            "rank": 80,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "77h 27' 16''",
            "gap": "+ 02h 08' 27''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7707.0,
            "times_seconds": 278836.0
        },
        {
            "index": 2970,
            "rank": 81,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "77h 27' 20''",
            "gap": "+ 02h 08' 31''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7711.0,
            "times_seconds": 278840.0
        },
        {
            "index": 2971,
            "rank": 82,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "77h 27' 40''",
            "gap": "+ 02h 08' 51''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7731.0,
            "times_seconds": 278860.0
        },
        {
            "index": 2972,
            "rank": 83,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "77h 30' 21''",
            "gap": "+ 02h 11' 32''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7892.0,
            "times_seconds": 279021.0
        },
        {
            "index": 2973,
            "rank": 84,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "77h 31' 46''",
            "gap": "+ 02h 12' 57''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7977.0,
            "times_seconds": 279106.0
        },
        {
            "index": 2974,
            "rank": 85,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "77h 32' 00''",
            "gap": "+ 02h 13' 11''",
            "b": "B : 20''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 7991.0,
            "times_seconds": 279120.0
        },
        {
            "index": 2975,
            "rank": 86,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "77h 36' 39''",
            "gap": "+ 02h 17' 50''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8270.0,
            "times_seconds": 279399.0
        },
        {
            "index": 2976,
            "rank": 87,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "77h 36' 50''",
            "gap": "+ 02h 18' 01''",
            "b": "B : 4''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8281.0,
            "times_seconds": 279410.0
        },
        {
            "index": 2977,
            "rank": 88,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "77h 39' 34''",
            "gap": "+ 02h 20' 45''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8445.0,
            "times_seconds": 279574.0
        },
        {
            "index": 2978,
            "rank": 89,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "77h 39' 44''",
            "gap": "+ 02h 20' 55''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8455.0,
            "times_seconds": 279584.0
        },
        {
            "index": 2979,
            "rank": 90,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "77h 41' 09''",
            "gap": "+ 02h 22' 20''",
            "b": "B : 10''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8540.0,
            "times_seconds": 279669.0
        },
        {
            "index": 2980,
            "rank": 91,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "77h 41' 49''",
            "gap": "+ 02h 23' 00''",
            "b": "B : 10''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8580.0,
            "times_seconds": 279709.0
        },
        {
            "index": 2981,
            "rank": 92,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "77h 43' 15''",
            "gap": "+ 02h 24' 26''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8666.0,
            "times_seconds": 279795.0
        },
        {
            "index": 2982,
            "rank": 93,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "77h 43' 43''",
            "gap": "+ 02h 24' 54''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8694.0,
            "times_seconds": 279823.0
        },
        {
            "index": 2983,
            "rank": 94,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "77h 43' 47''",
            "gap": "+ 02h 24' 58''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8698.0,
            "times_seconds": 279827.0
        },
        {
            "index": 2984,
            "rank": 95,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "77h 44' 59''",
            "gap": "+ 02h 26' 10''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8770.0,
            "times_seconds": 279899.0
        },
        {
            "index": 2985,
            "rank": 96,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "77h 45' 22''",
            "gap": "+ 02h 26' 33''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8793.0,
            "times_seconds": 279922.0
        },
        {
            "index": 2986,
            "rank": 97,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "77h 47' 17''",
            "gap": "+ 02h 28' 28''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8908.0,
            "times_seconds": 280037.0
        },
        {
            "index": 2987,
            "rank": 98,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "77h 47' 56''",
            "gap": "+ 02h 29' 07''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8947.0,
            "times_seconds": 280076.0
        },
        {
            "index": 2988,
            "rank": 99,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "77h 48' 13''",
            "gap": "+ 02h 29' 24''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 8964.0,
            "times_seconds": 280093.0
        },
        {
            "index": 2989,
            "rank": 100,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "77h 49' 30''",
            "gap": "+ 02h 30' 41''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9041.0,
            "times_seconds": 280170.0
        },
        {
            "index": 2990,
            "rank": 101,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "77h 50' 44''",
            "gap": "+ 02h 31' 55''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9115.0,
            "times_seconds": 280244.0
        },
        {
            "index": 2991,
            "rank": 102,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "77h 53' 22''",
            "gap": "+ 02h 34' 33''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9273.0,
            "times_seconds": 280402.0
        },
        {
            "index": 2992,
            "rank": 103,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "77h 53' 55''",
            "gap": "+ 02h 35' 06''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9306.0,
            "times_seconds": 280435.0
        },
        {
            "index": 2993,
            "rank": 104,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "77h 54' 24''",
            "gap": "+ 02h 35' 35''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9335.0,
            "times_seconds": 280464.0
        },
        {
            "index": 2994,
            "rank": 105,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "77h 55' 54''",
            "gap": "+ 02h 37' 05''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9425.0,
            "times_seconds": 280554.0
        },
        {
            "index": 2995,
            "rank": 106,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "77h 56' 42''",
            "gap": "+ 02h 37' 53''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9473.0,
            "times_seconds": 280602.0
        },
        {
            "index": 2996,
            "rank": 107,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "77h 58' 35''",
            "gap": "+ 02h 39' 46''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9586.0,
            "times_seconds": 280715.0
        },
        {
            "index": 2997,
            "rank": 108,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "78h 00' 18''",
            "gap": "+ 02h 41' 29''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9689.0,
            "times_seconds": 280818.0
        },
        {
            "index": 2998,
            "rank": 109,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "78h 01' 05''",
            "gap": "+ 02h 42' 16''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9736.0,
            "times_seconds": 280865.0
        },
        {
            "index": 2999,
            "rank": 110,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "78h 01' 39''",
            "gap": "+ 02h 42' 50''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9770.0,
            "times_seconds": 280899.0
        },
        {
            "index": 3000,
            "rank": 111,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 03' 24''",
            "gap": "+ 02h 44' 35''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9875.0,
            "times_seconds": 281004.0
        },
        {
            "index": 3001,
            "rank": 112,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "78h 03' 50''",
            "gap": "+ 02h 45' 01''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9901.0,
            "times_seconds": 281030.0
        },
        {
            "index": 3002,
            "rank": 113,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "78h 04' 10''",
            "gap": "+ 02h 45' 21''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 9921.0,
            "times_seconds": 281050.0
        },
        {
            "index": 3003,
            "rank": 114,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "78h 07' 17''",
            "gap": "+ 02h 48' 28''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10108.0,
            "times_seconds": 281237.0
        },
        {
            "index": 3004,
            "rank": 115,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "78h 07' 30''",
            "gap": "+ 02h 48' 41''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10121.0,
            "times_seconds": 281250.0
        },
        {
            "index": 3005,
            "rank": 116,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "78h 08' 21''",
            "gap": "+ 02h 49' 32''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10172.0,
            "times_seconds": 281301.0
        },
        {
            "index": 3006,
            "rank": 117,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "78h 10' 26''",
            "gap": "+ 02h 51' 37''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10297.0,
            "times_seconds": 281426.0
        },
        {
            "index": 3007,
            "rank": 118,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "78h 10' 43''",
            "gap": "+ 02h 51' 54''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10314.0,
            "times_seconds": 281443.0
        },
        {
            "index": 3008,
            "rank": 119,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "78h 11' 51''",
            "gap": "+ 02h 53' 02''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10382.0,
            "times_seconds": 281511.0
        },
        {
            "index": 3009,
            "rank": 120,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "78h 14' 28''",
            "gap": "+ 02h 55' 39''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10539.0,
            "times_seconds": 281668.0
        },
        {
            "index": 3010,
            "rank": 121,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 18' 34''",
            "gap": "+ 02h 59' 45''",
            "b": "B : 6''",
            "p": "P : 00' 10''",
            "stage": 18,
            "gap_seconds": 10785.0,
            "times_seconds": 281914.0
        },
        {
            "index": 3011,
            "rank": 122,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "78h 20' 07''",
            "gap": "+ 03h 01' 18''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10878.0,
            "times_seconds": 282007.0
        },
        {
            "index": 3012,
            "rank": 123,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 20' 40''",
            "gap": "+ 03h 01' 51''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10911.0,
            "times_seconds": 282040.0
        },
        {
            "index": 3013,
            "rank": 124,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "78h 21' 21''",
            "gap": "+ 03h 02' 32''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10952.0,
            "times_seconds": 282081.0
        },
        {
            "index": 3014,
            "rank": 125,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "78h 21' 53''",
            "gap": "+ 03h 03' 04''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 10984.0,
            "times_seconds": 282113.0
        },
        {
            "index": 3015,
            "rank": 126,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "78h 24' 38''",
            "gap": "+ 03h 05' 49''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11149.0,
            "times_seconds": 282278.0
        },
        {
            "index": 3016,
            "rank": 127,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "78h 24' 48''",
            "gap": "+ 03h 05' 59''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11159.0,
            "times_seconds": 282288.0
        },
        {
            "index": 3017,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "78h 26' 00''",
            "gap": "+ 03h 07' 11''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11231.0,
            "times_seconds": 282360.0
        },
        {
            "index": 3018,
            "rank": 129,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 28' 03''",
            "gap": "+ 03h 09' 14''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 18,
            "gap_seconds": 11354.0,
            "times_seconds": 282483.0
        },
        {
            "index": 3019,
            "rank": 130,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "78h 28' 43''",
            "gap": "+ 03h 09' 54''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11394.0,
            "times_seconds": 282523.0
        },
        {
            "index": 3020,
            "rank": 131,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "78h 28' 45''",
            "gap": "+ 03h 09' 56''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11396.0,
            "times_seconds": 282525.0
        },
        {
            "index": 3021,
            "rank": 132,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 30' 13''",
            "gap": "+ 03h 11' 24''",
            "b": "B : 26''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11484.0,
            "times_seconds": 282613.0
        },
        {
            "index": 3022,
            "rank": 133,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "78h 30' 53''",
            "gap": "+ 03h 12' 04''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11524.0,
            "times_seconds": 282653.0
        },
        {
            "index": 3023,
            "rank": 134,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "78h 31' 11''",
            "gap": "+ 03h 12' 22''",
            "b": "B : 38''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11542.0,
            "times_seconds": 282671.0
        },
        {
            "index": 3024,
            "rank": 135,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "78h 31' 27''",
            "gap": "+ 03h 12' 38''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11558.0,
            "times_seconds": 282687.0
        },
        {
            "index": 3025,
            "rank": 136,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "78h 33' 12''",
            "gap": "+ 03h 14' 23''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11663.0,
            "times_seconds": 282792.0
        },
        {
            "index": 3026,
            "rank": 137,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "78h 34' 29''",
            "gap": "+ 03h 15' 40''",
            "b": "B : 6''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11740.0,
            "times_seconds": 282869.0
        },
        {
            "index": 3027,
            "rank": 138,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "78h 36' 11''",
            "gap": "+ 03h 17' 22''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 11842.0,
            "times_seconds": 282971.0
        },
        {
            "index": 3028,
            "rank": 139,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "78h 41' 25''",
            "gap": "+ 03h 22' 36''",
            "b": "B : 20''",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12156.0,
            "times_seconds": 283285.0
        },
        {
            "index": 3029,
            "rank": 140,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "78h 41' 45''",
            "gap": "+ 03h 22' 56''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12176.0,
            "times_seconds": 283305.0
        },
        {
            "index": 3030,
            "rank": 141,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "78h 41' 56''",
            "gap": "+ 03h 23' 07''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12187.0,
            "times_seconds": 283316.0
        },
        {
            "index": 3031,
            "rank": 142,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 42' 01''",
            "gap": "+ 03h 23' 12''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12192.0,
            "times_seconds": 283321.0
        },
        {
            "index": 3032,
            "rank": 143,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 42' 13''",
            "gap": "+ 03h 23' 24''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12204.0,
            "times_seconds": 283333.0
        },
        {
            "index": 3033,
            "rank": 144,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "78h 42' 32''",
            "gap": "+ 03h 23' 43''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12223.0,
            "times_seconds": 283352.0
        },
        {
            "index": 3034,
            "rank": 145,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "78h 42' 37''",
            "gap": "+ 03h 23' 48''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12228.0,
            "times_seconds": 283357.0
        },
        {
            "index": 3035,
            "rank": 146,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "78h 42' 51''",
            "gap": "+ 03h 24' 02''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 18,
            "gap_seconds": 12242.0,
            "times_seconds": 283371.0
        },
        {
            "index": 3036,
            "rank": 147,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 43' 42''",
            "gap": "+ 03h 24' 53''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12293.0,
            "times_seconds": 283422.0
        },
        {
            "index": 3037,
            "rank": 148,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "78h 44' 01''",
            "gap": "+ 03h 25' 12''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12312.0,
            "times_seconds": 283441.0
        },
        {
            "index": 3038,
            "rank": 149,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "78h 44' 20''",
            "gap": "+ 03h 25' 31''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12331.0,
            "times_seconds": 283460.0
        },
        {
            "index": 3039,
            "rank": 150,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "78h 45' 13''",
            "gap": "+ 03h 26' 24''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12384.0,
            "times_seconds": 283513.0
        },
        {
            "index": 3040,
            "rank": 151,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "78h 45' 22''",
            "gap": "+ 03h 26' 33''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12393.0,
            "times_seconds": 283522.0
        },
        {
            "index": 3041,
            "rank": 152,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "78h 49' 38''",
            "gap": "+ 03h 30' 49''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12649.0,
            "times_seconds": 283778.0
        },
        {
            "index": 3042,
            "rank": 153,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 53' 48''",
            "gap": "+ 03h 34' 59''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12899.0,
            "times_seconds": 284028.0
        },
        {
            "index": 3043,
            "rank": 154,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "78h 54' 30''",
            "gap": "+ 03h 35' 41''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 12941.0,
            "times_seconds": 284070.0
        },
        {
            "index": 3044,
            "rank": 155,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "79h 08' 38''",
            "gap": "+ 03h 49' 49''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 13789.0,
            "times_seconds": 284918.0
        },
        {
            "index": 3045,
            "rank": 156,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "79h 08' 41''",
            "gap": "+ 03h 49' 52''",
            "b": "-",
            "p": "-",
            "stage": 18,
            "gap_seconds": 13792.0,
            "times_seconds": 284921.0
        },
        {
            "index": 3046,
            "rank": 1,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "78h 00' 42''",
            "gap": "-",
            "b": "B : 8''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 0.0,
            "times_seconds": 280842.0
        },
        {
            "index": 3047,
            "rank": 2,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 01' 30''",
            "gap": "+ 00h 00' 48''",
            "b": "B : 30''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 48.0,
            "times_seconds": 280890.0
        },
        {
            "index": 3048,
            "rank": 3,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "78h 01' 58''",
            "gap": "+ 00h 01' 16''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 76.0,
            "times_seconds": 280918.0
        },
        {
            "index": 3049,
            "rank": 4,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "78h 02' 10''",
            "gap": "+ 00h 01' 28''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 88.0,
            "times_seconds": 280930.0
        },
        {
            "index": 3050,
            "rank": 5,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "78h 02' 37''",
            "gap": "+ 00h 01' 55''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 115.0,
            "times_seconds": 280957.0
        },
        {
            "index": 3051,
            "rank": 6,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "78h 05' 17''",
            "gap": "+ 00h 04' 35''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 275.0,
            "times_seconds": 281117.0
        },
        {
            "index": 3052,
            "rank": 7,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "78h 05' 56''",
            "gap": "+ 00h 05' 14''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 314.0,
            "times_seconds": 281156.0
        },
        {
            "index": 3053,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "78h 05' 59''",
            "gap": "+ 00h 05' 17''",
            "b": "B : 18''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 317.0,
            "times_seconds": 281159.0
        },
        {
            "index": 3054,
            "rank": 9,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "78h 07' 07''",
            "gap": "+ 00h 06' 25''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 385.0,
            "times_seconds": 281227.0
        },
        {
            "index": 3055,
            "rank": 10,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "78h 07' 10''",
            "gap": "+ 00h 06' 28''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 388.0,
            "times_seconds": 281230.0
        },
        {
            "index": 3056,
            "rank": 11,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "78h 07' 45''",
            "gap": "+ 00h 07' 03''",
            "b": "B : 2''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 423.0,
            "times_seconds": 281265.0
        },
        {
            "index": 3057,
            "rank": 12,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 17' 00''",
            "gap": "+ 00h 16' 18''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 978.0,
            "times_seconds": 281820.0
        },
        {
            "index": 3058,
            "rank": 13,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "78h 21' 27''",
            "gap": "+ 00h 20' 45''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 1245.0,
            "times_seconds": 282087.0
        },
        {
            "index": 3059,
            "rank": 14,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "78h 23' 56''",
            "gap": "+ 00h 23' 14''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 1394.0,
            "times_seconds": 282236.0
        },
        {
            "index": 3060,
            "rank": 15,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "78h 26' 52''",
            "gap": "+ 00h 26' 10''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 1570.0,
            "times_seconds": 282412.0
        },
        {
            "index": 3061,
            "rank": 16,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "78h 27' 08''",
            "gap": "+ 00h 26' 26''",
            "b": "B : 13''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 1586.0,
            "times_seconds": 282428.0
        },
        {
            "index": 3062,
            "rank": 17,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "78h 40' 59''",
            "gap": "+ 00h 40' 17''",
            "b": "B : 6''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 2417.0,
            "times_seconds": 283259.0
        },
        {
            "index": 3063,
            "rank": 18,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "78h 41' 27''",
            "gap": "+ 00h 40' 45''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 19,
            "gap_seconds": 2445.0,
            "times_seconds": 283287.0
        },
        {
            "index": 3064,
            "rank": 19,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "78h 43' 19''",
            "gap": "+ 00h 42' 37''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 2557.0,
            "times_seconds": 283399.0
        },
        {
            "index": 3065,
            "rank": 20,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "78h 45' 09''",
            "gap": "+ 00h 44' 27''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 19,
            "gap_seconds": 2667.0,
            "times_seconds": 283509.0
        },
        {
            "index": 3066,
            "rank": 21,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "78h 47' 26''",
            "gap": "+ 00h 46' 44''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 2804.0,
            "times_seconds": 283646.0
        },
        {
            "index": 3067,
            "rank": 22,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "78h 49' 14''",
            "gap": "+ 00h 48' 32''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 2912.0,
            "times_seconds": 283754.0
        },
        {
            "index": 3068,
            "rank": 23,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "78h 53' 35''",
            "gap": "+ 00h 52' 53''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 3173.0,
            "times_seconds": 284015.0
        },
        {
            "index": 3069,
            "rank": 24,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "78h 58' 49''",
            "gap": "+ 00h 58' 07''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 3487.0,
            "times_seconds": 284329.0
        },
        {
            "index": 3070,
            "rank": 25,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "79h 04' 30''",
            "gap": "+ 01h 03' 48''",
            "b": "B : 9''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 3828.0,
            "times_seconds": 284670.0
        },
        {
            "index": 3071,
            "rank": 26,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "79h 07' 08''",
            "gap": "+ 01h 06' 26''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 3986.0,
            "times_seconds": 284828.0
        },
        {
            "index": 3072,
            "rank": 27,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "79h 07' 13''",
            "gap": "+ 01h 06' 31''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 3991.0,
            "times_seconds": 284833.0
        },
        {
            "index": 3073,
            "rank": 28,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "79h 11' 56''",
            "gap": "+ 01h 11' 14''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4274.0,
            "times_seconds": 285116.0
        },
        {
            "index": 3074,
            "rank": 29,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "79h 12' 19''",
            "gap": "+ 01h 11' 37''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4297.0,
            "times_seconds": 285139.0
        },
        {
            "index": 3075,
            "rank": 30,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "79h 12' 34''",
            "gap": "+ 01h 11' 52''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4312.0,
            "times_seconds": 285154.0
        },
        {
            "index": 3076,
            "rank": 31,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "79h 13' 01''",
            "gap": "+ 01h 12' 19''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4339.0,
            "times_seconds": 285181.0
        },
        {
            "index": 3077,
            "rank": 32,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "79h 14' 02''",
            "gap": "+ 01h 13' 20''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4400.0,
            "times_seconds": 285242.0
        },
        {
            "index": 3078,
            "rank": 33,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "79h 14' 17''",
            "gap": "+ 01h 13' 35''",
            "b": "B : 14''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4415.0,
            "times_seconds": 285257.0
        },
        {
            "index": 3079,
            "rank": 34,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "79h 14' 17''",
            "gap": "+ 01h 13' 35''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4415.0,
            "times_seconds": 285257.0
        },
        {
            "index": 3080,
            "rank": 35,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "79h 15' 19''",
            "gap": "+ 01h 14' 37''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4477.0,
            "times_seconds": 285319.0
        },
        {
            "index": 3081,
            "rank": 36,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "79h 16' 33''",
            "gap": "+ 01h 15' 51''",
            "b": "B : 2''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 4551.0,
            "times_seconds": 285393.0
        },
        {
            "index": 3082,
            "rank": 37,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "79h 28' 18''",
            "gap": "+ 01h 27' 36''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5256.0,
            "times_seconds": 286098.0
        },
        {
            "index": 3083,
            "rank": 38,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "79h 28' 27''",
            "gap": "+ 01h 27' 45''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5265.0,
            "times_seconds": 286107.0
        },
        {
            "index": 3084,
            "rank": 39,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "79h 30' 23''",
            "gap": "+ 01h 29' 41''",
            "b": "B : 2''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5381.0,
            "times_seconds": 286223.0
        },
        {
            "index": 3085,
            "rank": 40,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "79h 31' 44''",
            "gap": "+ 01h 31' 02''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5462.0,
            "times_seconds": 286304.0
        },
        {
            "index": 3086,
            "rank": 41,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "79h 32' 26''",
            "gap": "+ 01h 31' 44''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5504.0,
            "times_seconds": 286346.0
        },
        {
            "index": 3087,
            "rank": 42,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "79h 33' 29''",
            "gap": "+ 01h 32' 47''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5567.0,
            "times_seconds": 286409.0
        },
        {
            "index": 3088,
            "rank": 43,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "79h 37' 35''",
            "gap": "+ 01h 36' 53''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5813.0,
            "times_seconds": 286655.0
        },
        {
            "index": 3089,
            "rank": 44,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "79h 37' 41''",
            "gap": "+ 01h 36' 59''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5819.0,
            "times_seconds": 286661.0
        },
        {
            "index": 3090,
            "rank": 45,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "79h 37' 47''",
            "gap": "+ 01h 37' 05''",
            "b": "B : 14''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5825.0,
            "times_seconds": 286667.0
        },
        {
            "index": 3091,
            "rank": 46,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "79h 37' 52''",
            "gap": "+ 01h 37' 10''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5830.0,
            "times_seconds": 286672.0
        },
        {
            "index": 3092,
            "rank": 47,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "79h 40' 38''",
            "gap": "+ 01h 39' 56''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 5996.0,
            "times_seconds": 286838.0
        },
        {
            "index": 3093,
            "rank": 48,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "79h 41' 34''",
            "gap": "+ 01h 40' 52''",
            "b": "B : 15''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6052.0,
            "times_seconds": 286894.0
        },
        {
            "index": 3094,
            "rank": 49,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "79h 42' 04''",
            "gap": "+ 01h 41' 22''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6082.0,
            "times_seconds": 286924.0
        },
        {
            "index": 3095,
            "rank": 50,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "79h 43' 59''",
            "gap": "+ 01h 43' 17''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6197.0,
            "times_seconds": 287039.0
        },
        {
            "index": 3096,
            "rank": 51,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "79h 50' 56''",
            "gap": "+ 01h 50' 14''",
            "b": "B : 8''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6614.0,
            "times_seconds": 287456.0
        },
        {
            "index": 3097,
            "rank": 52,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "79h 52' 10''",
            "gap": "+ 01h 51' 28''",
            "b": "B : 38''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6688.0,
            "times_seconds": 287530.0
        },
        {
            "index": 3098,
            "rank": 53,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "79h 52' 13''",
            "gap": "+ 01h 51' 31''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6691.0,
            "times_seconds": 287533.0
        },
        {
            "index": 3099,
            "rank": 54,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "79h 52' 14''",
            "gap": "+ 01h 51' 32''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6692.0,
            "times_seconds": 287534.0
        },
        {
            "index": 3100,
            "rank": 55,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "79h 53' 36''",
            "gap": "+ 01h 52' 54''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6774.0,
            "times_seconds": 287616.0
        },
        {
            "index": 3101,
            "rank": 56,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "79h 54' 22''",
            "gap": "+ 01h 53' 40''",
            "b": "B : 11''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6820.0,
            "times_seconds": 287662.0
        },
        {
            "index": 3102,
            "rank": 57,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "79h 55' 49''",
            "gap": "+ 01h 55' 07''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6907.0,
            "times_seconds": 287749.0
        },
        {
            "index": 3103,
            "rank": 58,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "79h 56' 28''",
            "gap": "+ 01h 55' 46''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6946.0,
            "times_seconds": 287788.0
        },
        {
            "index": 3104,
            "rank": 59,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "79h 56' 43''",
            "gap": "+ 01h 56' 01''",
            "b": "B : 8''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6961.0,
            "times_seconds": 287803.0
        },
        {
            "index": 3105,
            "rank": 60,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "79h 57' 14''",
            "gap": "+ 01h 56' 32''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 6992.0,
            "times_seconds": 287834.0
        },
        {
            "index": 3106,
            "rank": 61,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "79h 57' 53''",
            "gap": "+ 01h 57' 11''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7031.0,
            "times_seconds": 287873.0
        },
        {
            "index": 3107,
            "rank": 62,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "79h 59' 10''",
            "gap": "+ 01h 58' 28''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7108.0,
            "times_seconds": 287950.0
        },
        {
            "index": 3108,
            "rank": 63,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "80h 01' 19''",
            "gap": "+ 02h 00' 37''",
            "b": "B : 6''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7237.0,
            "times_seconds": 288079.0
        },
        {
            "index": 3109,
            "rank": 64,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "80h 01' 28''",
            "gap": "+ 02h 00' 46''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7246.0,
            "times_seconds": 288088.0
        },
        {
            "index": 3110,
            "rank": 65,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "80h 02' 13''",
            "gap": "+ 02h 01' 31''",
            "b": "B : 18''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7291.0,
            "times_seconds": 288133.0
        },
        {
            "index": 3111,
            "rank": 66,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "80h 03' 03''",
            "gap": "+ 02h 02' 21''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7341.0,
            "times_seconds": 288183.0
        },
        {
            "index": 3112,
            "rank": 67,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "80h 03' 26''",
            "gap": "+ 02h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7364.0,
            "times_seconds": 288206.0
        },
        {
            "index": 3113,
            "rank": 68,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "80h 04' 09''",
            "gap": "+ 02h 03' 27''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7407.0,
            "times_seconds": 288249.0
        },
        {
            "index": 3114,
            "rank": 69,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "80h 08' 03''",
            "gap": "+ 02h 07' 21''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7641.0,
            "times_seconds": 288483.0
        },
        {
            "index": 3115,
            "rank": 70,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "80h 09' 39''",
            "gap": "+ 02h 08' 57''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7737.0,
            "times_seconds": 288579.0
        },
        {
            "index": 3116,
            "rank": 71,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "80h 11' 24''",
            "gap": "+ 02h 10' 42''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 7842.0,
            "times_seconds": 288684.0
        },
        {
            "index": 3117,
            "rank": 72,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "80h 16' 08''",
            "gap": "+ 02h 15' 26''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8126.0,
            "times_seconds": 288968.0
        },
        {
            "index": 3118,
            "rank": 73,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "80h 17' 07''",
            "gap": "+ 02h 16' 25''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8185.0,
            "times_seconds": 289027.0
        },
        {
            "index": 3119,
            "rank": 74,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "80h 18' 05''",
            "gap": "+ 02h 17' 23''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8243.0,
            "times_seconds": 289085.0
        },
        {
            "index": 3120,
            "rank": 75,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "80h 18' 08''",
            "gap": "+ 02h 17' 26''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8246.0,
            "times_seconds": 289088.0
        },
        {
            "index": 3121,
            "rank": 76,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "80h 22' 00''",
            "gap": "+ 02h 21' 18''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8478.0,
            "times_seconds": 289320.0
        },
        {
            "index": 3122,
            "rank": 77,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "80h 22' 41''",
            "gap": "+ 02h 21' 59''",
            "b": "B : 18''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8519.0,
            "times_seconds": 289361.0
        },
        {
            "index": 3123,
            "rank": 78,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "80h 22' 49''",
            "gap": "+ 02h 22' 07''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8527.0,
            "times_seconds": 289369.0
        },
        {
            "index": 3124,
            "rank": 79,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "80h 23' 53''",
            "gap": "+ 02h 23' 11''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8591.0,
            "times_seconds": 289433.0
        },
        {
            "index": 3125,
            "rank": 80,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "80h 24' 47''",
            "gap": "+ 02h 24' 05''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8645.0,
            "times_seconds": 289487.0
        },
        {
            "index": 3126,
            "rank": 81,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "80h 26' 55''",
            "gap": "+ 02h 26' 13''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8773.0,
            "times_seconds": 289615.0
        },
        {
            "index": 3127,
            "rank": 82,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "80h 29' 31''",
            "gap": "+ 02h 28' 49''",
            "b": "B : 20''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 8929.0,
            "times_seconds": 289771.0
        },
        {
            "index": 3128,
            "rank": 83,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "80h 31' 25''",
            "gap": "+ 02h 30' 43''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9043.0,
            "times_seconds": 289885.0
        },
        {
            "index": 3129,
            "rank": 84,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "80h 33' 14''",
            "gap": "+ 02h 32' 32''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9152.0,
            "times_seconds": 289994.0
        },
        {
            "index": 3130,
            "rank": 85,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "80h 33' 34''",
            "gap": "+ 02h 32' 52''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9172.0,
            "times_seconds": 290014.0
        },
        {
            "index": 3131,
            "rank": 86,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "80h 34' 10''",
            "gap": "+ 02h 33' 28''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9208.0,
            "times_seconds": 290050.0
        },
        {
            "index": 3132,
            "rank": 87,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "80h 37' 05''",
            "gap": "+ 02h 36' 23''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9383.0,
            "times_seconds": 290225.0
        },
        {
            "index": 3133,
            "rank": 88,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "80h 38' 58''",
            "gap": "+ 02h 38' 16''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9496.0,
            "times_seconds": 290338.0
        },
        {
            "index": 3134,
            "rank": 89,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "80h 39' 29''",
            "gap": "+ 02h 38' 47''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9527.0,
            "times_seconds": 290369.0
        },
        {
            "index": 3135,
            "rank": 90,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "80h 42' 44''",
            "gap": "+ 02h 42' 02''",
            "b": "B : 4''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9722.0,
            "times_seconds": 290564.0
        },
        {
            "index": 3136,
            "rank": 91,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "80h 42' 54''",
            "gap": "+ 02h 42' 12''",
            "b": "B : 10''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9732.0,
            "times_seconds": 290574.0
        },
        {
            "index": 3137,
            "rank": 92,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "80h 43' 29''",
            "gap": "+ 02h 42' 47''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9767.0,
            "times_seconds": 290609.0
        },
        {
            "index": 3138,
            "rank": 93,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "80h 43' 49''",
            "gap": "+ 02h 43' 07''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9787.0,
            "times_seconds": 290629.0
        },
        {
            "index": 3139,
            "rank": 94,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "80h 44' 48''",
            "gap": "+ 02h 44' 06''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9846.0,
            "times_seconds": 290688.0
        },
        {
            "index": 3140,
            "rank": 95,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "80h 47' 03''",
            "gap": "+ 02h 46' 21''",
            "b": "B : 10''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 9981.0,
            "times_seconds": 290823.0
        },
        {
            "index": 3141,
            "rank": 96,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "80h 48' 15''",
            "gap": "+ 02h 47' 33''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10053.0,
            "times_seconds": 290895.0
        },
        {
            "index": 3142,
            "rank": 97,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "80h 49' 09''",
            "gap": "+ 02h 48' 27''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10107.0,
            "times_seconds": 290949.0
        },
        {
            "index": 3143,
            "rank": 98,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "80h 49' 37''",
            "gap": "+ 02h 48' 55''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10135.0,
            "times_seconds": 290977.0
        },
        {
            "index": 3144,
            "rank": 99,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "80h 51' 16''",
            "gap": "+ 02h 50' 34''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10234.0,
            "times_seconds": 291076.0
        },
        {
            "index": 3145,
            "rank": 100,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "80h 52' 23''",
            "gap": "+ 02h 51' 41''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10301.0,
            "times_seconds": 291143.0
        },
        {
            "index": 3146,
            "rank": 101,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "80h 54' 07''",
            "gap": "+ 02h 53' 25''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10405.0,
            "times_seconds": 291247.0
        },
        {
            "index": 3147,
            "rank": 102,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "80h 56' 38''",
            "gap": "+ 02h 55' 56''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10556.0,
            "times_seconds": 291398.0
        },
        {
            "index": 3148,
            "rank": 103,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "80h 59' 49''",
            "gap": "+ 02h 59' 07''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10747.0,
            "times_seconds": 291589.0
        },
        {
            "index": 3149,
            "rank": 104,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "81h 00' 18''",
            "gap": "+ 02h 59' 36''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10776.0,
            "times_seconds": 291618.0
        },
        {
            "index": 3150,
            "rank": 105,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "81h 01' 48''",
            "gap": "+ 03h 01' 06''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 10866.0,
            "times_seconds": 291708.0
        },
        {
            "index": 3151,
            "rank": 106,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "81h 04' 29''",
            "gap": "+ 03h 03' 47''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11027.0,
            "times_seconds": 291869.0
        },
        {
            "index": 3152,
            "rank": 107,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "81h 05' 01''",
            "gap": "+ 03h 04' 19''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11059.0,
            "times_seconds": 291901.0
        },
        {
            "index": 3153,
            "rank": 108,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "81h 06' 12''",
            "gap": "+ 03h 05' 30''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11130.0,
            "times_seconds": 291972.0
        },
        {
            "index": 3154,
            "rank": 109,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "81h 06' 59''",
            "gap": "+ 03h 06' 17''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11177.0,
            "times_seconds": 292019.0
        },
        {
            "index": 3155,
            "rank": 110,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "81h 07' 54''",
            "gap": "+ 03h 07' 12''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11232.0,
            "times_seconds": 292074.0
        },
        {
            "index": 3156,
            "rank": 111,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "81h 07' 57''",
            "gap": "+ 03h 07' 15''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11235.0,
            "times_seconds": 292077.0
        },
        {
            "index": 3157,
            "rank": 112,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "81h 08' 22''",
            "gap": "+ 03h 07' 40''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11260.0,
            "times_seconds": 292102.0
        },
        {
            "index": 3158,
            "rank": 113,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "81h 09' 18''",
            "gap": "+ 03h 08' 36''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11316.0,
            "times_seconds": 292158.0
        },
        {
            "index": 3159,
            "rank": 114,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "81h 09' 22''",
            "gap": "+ 03h 08' 40''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11320.0,
            "times_seconds": 292162.0
        },
        {
            "index": 3160,
            "rank": 115,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "81h 09' 44''",
            "gap": "+ 03h 09' 02''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11342.0,
            "times_seconds": 292184.0
        },
        {
            "index": 3161,
            "rank": 116,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "81h 10' 04''",
            "gap": "+ 03h 09' 22''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11362.0,
            "times_seconds": 292204.0
        },
        {
            "index": 3162,
            "rank": 117,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "81h 13' 11''",
            "gap": "+ 03h 12' 29''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11549.0,
            "times_seconds": 292391.0
        },
        {
            "index": 3163,
            "rank": 118,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "81h 14' 15''",
            "gap": "+ 03h 13' 33''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11613.0,
            "times_seconds": 292455.0
        },
        {
            "index": 3164,
            "rank": 119,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "81h 16' 37''",
            "gap": "+ 03h 15' 55''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11755.0,
            "times_seconds": 292597.0
        },
        {
            "index": 3165,
            "rank": 120,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "81h 17' 39''",
            "gap": "+ 03h 16' 57''",
            "b": "B : 6''",
            "p": "P : 00' 10''",
            "stage": 19,
            "gap_seconds": 11817.0,
            "times_seconds": 292659.0
        },
        {
            "index": 3166,
            "rank": 121,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "81h 20' 22''",
            "gap": "+ 03h 19' 40''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 11980.0,
            "times_seconds": 292822.0
        },
        {
            "index": 3167,
            "rank": 122,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "81h 26' 01''",
            "gap": "+ 03h 25' 19''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12319.0,
            "times_seconds": 293161.0
        },
        {
            "index": 3168,
            "rank": 123,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "81h 26' 14''",
            "gap": "+ 03h 25' 32''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12332.0,
            "times_seconds": 293174.0
        },
        {
            "index": 3169,
            "rank": 124,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "81h 26' 34''",
            "gap": "+ 03h 25' 52''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12352.0,
            "times_seconds": 293194.0
        },
        {
            "index": 3170,
            "rank": 125,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "81h 27' 15''",
            "gap": "+ 03h 26' 33''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12393.0,
            "times_seconds": 293235.0
        },
        {
            "index": 3171,
            "rank": 126,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "81h 27' 22''",
            "gap": "+ 03h 26' 40''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12400.0,
            "times_seconds": 293242.0
        },
        {
            "index": 3172,
            "rank": 127,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "81h 27' 47''",
            "gap": "+ 03h 27' 05''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12425.0,
            "times_seconds": 293267.0
        },
        {
            "index": 3173,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "81h 31' 54''",
            "gap": "+ 03h 31' 12''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12672.0,
            "times_seconds": 293514.0
        },
        {
            "index": 3174,
            "rank": 129,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "81h 34' 39''",
            "gap": "+ 03h 33' 57''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12837.0,
            "times_seconds": 293679.0
        },
        {
            "index": 3175,
            "rank": 130,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "81h 34' 46''",
            "gap": "+ 03h 34' 04''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 19,
            "gap_seconds": 12844.0,
            "times_seconds": 293686.0
        },
        {
            "index": 3176,
            "rank": 131,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "81h 36' 07''",
            "gap": "+ 03h 35' 25''",
            "b": "B : 26''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12925.0,
            "times_seconds": 293767.0
        },
        {
            "index": 3177,
            "rank": 132,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "81h 36' 47''",
            "gap": "+ 03h 36' 05''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12965.0,
            "times_seconds": 293807.0
        },
        {
            "index": 3178,
            "rank": 133,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "81h 37' 05''",
            "gap": "+ 03h 36' 23''",
            "b": "B : 38''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12983.0,
            "times_seconds": 293825.0
        },
        {
            "index": 3179,
            "rank": 134,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "81h 37' 21''",
            "gap": "+ 03h 36' 39''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 12999.0,
            "times_seconds": 293841.0
        },
        {
            "index": 3180,
            "rank": 135,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "81h 39' 06''",
            "gap": "+ 03h 38' 24''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13104.0,
            "times_seconds": 293946.0
        },
        {
            "index": 3181,
            "rank": 136,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "81h 39' 44''",
            "gap": "+ 03h 39' 02''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13142.0,
            "times_seconds": 293984.0
        },
        {
            "index": 3182,
            "rank": 137,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "81h 40' 23''",
            "gap": "+ 03h 39' 41''",
            "b": "B : 6''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13181.0,
            "times_seconds": 294023.0
        },
        {
            "index": 3183,
            "rank": 138,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "81h 42' 05''",
            "gap": "+ 03h 41' 23''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13283.0,
            "times_seconds": 294125.0
        },
        {
            "index": 3184,
            "rank": 139,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "81h 43' 02''",
            "gap": "+ 03h 42' 20''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13340.0,
            "times_seconds": 294182.0
        },
        {
            "index": 3185,
            "rank": 140,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "81h 44' 21''",
            "gap": "+ 03h 43' 39''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13419.0,
            "times_seconds": 294261.0
        },
        {
            "index": 3186,
            "rank": 141,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "81h 47' 19''",
            "gap": "+ 03h 46' 37''",
            "b": "B : 20''",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13597.0,
            "times_seconds": 294439.0
        },
        {
            "index": 3187,
            "rank": 142,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "81h 47' 39''",
            "gap": "+ 03h 46' 57''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13617.0,
            "times_seconds": 294459.0
        },
        {
            "index": 3188,
            "rank": 143,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "81h 48' 23''",
            "gap": "+ 03h 47' 41''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13661.0,
            "times_seconds": 294503.0
        },
        {
            "index": 3189,
            "rank": 144,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "81h 48' 31''",
            "gap": "+ 03h 47' 49''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13669.0,
            "times_seconds": 294511.0
        },
        {
            "index": 3190,
            "rank": 145,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "81h 48' 45''",
            "gap": "+ 03h 48' 03''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 19,
            "gap_seconds": 13683.0,
            "times_seconds": 294525.0
        },
        {
            "index": 3191,
            "rank": 146,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "81h 49' 36''",
            "gap": "+ 03h 48' 54''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13734.0,
            "times_seconds": 294576.0
        },
        {
            "index": 3192,
            "rank": 147,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "81h 51' 15''",
            "gap": "+ 03h 50' 33''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13833.0,
            "times_seconds": 294675.0
        },
        {
            "index": 3193,
            "rank": 148,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "81h 51' 16''",
            "gap": "+ 03h 50' 34''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13834.0,
            "times_seconds": 294676.0
        },
        {
            "index": 3194,
            "rank": 149,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "81h 51' 56''",
            "gap": "+ 03h 51' 14''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13874.0,
            "times_seconds": 294716.0
        },
        {
            "index": 3195,
            "rank": 150,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "81h 53' 57''",
            "gap": "+ 03h 53' 15''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 13995.0,
            "times_seconds": 294837.0
        },
        {
            "index": 3196,
            "rank": 151,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "81h 55' 32''",
            "gap": "+ 03h 54' 50''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 14090.0,
            "times_seconds": 294932.0
        },
        {
            "index": 3197,
            "rank": 152,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "81h 59' 42''",
            "gap": "+ 03h 59' 00''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 14340.0,
            "times_seconds": 295182.0
        },
        {
            "index": 3198,
            "rank": 153,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "82h 09' 16''",
            "gap": "+ 04h 08' 34''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 14914.0,
            "times_seconds": 295756.0
        },
        {
            "index": 3199,
            "rank": 154,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "82h 14' 32''",
            "gap": "+ 04h 13' 50''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 15230.0,
            "times_seconds": 296072.0
        },
        {
            "index": 3200,
            "rank": 155,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "82h 14' 35''",
            "gap": "+ 04h 13' 53''",
            "b": "-",
            "p": "-",
            "stage": 19,
            "gap_seconds": 15233.0,
            "times_seconds": 296075.0
        },
        {
            "index": 3201,
            "rank": 1,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "79h 52' 52''",
            "gap": "-",
            "b": "B : 8''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 0.0,
            "times_seconds": 287572.0
        },
        {
            "index": 3202,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "79h 54' 03''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 71.0,
            "times_seconds": 287643.0
        },
        {
            "index": 3203,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "79h 54' 23''",
            "gap": "+ 00h 01' 31''",
            "b": "B : 4''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 91.0,
            "times_seconds": 287663.0
        },
        {
            "index": 3204,
            "rank": 4,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "79h 54' 48''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 116.0,
            "times_seconds": 287688.0
        },
        {
            "index": 3205,
            "rank": 5,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "79h 56' 37''",
            "gap": "+ 00h 03' 45''",
            "b": "B : 30''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 225.0,
            "times_seconds": 287797.0
        },
        {
            "index": 3206,
            "rank": 6,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "79h 57' 15''",
            "gap": "+ 00h 04' 23''",
            "b": "B : 8''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 263.0,
            "times_seconds": 287835.0
        },
        {
            "index": 3207,
            "rank": 7,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "79h 58' 07''",
            "gap": "+ 00h 05' 15''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 315.0,
            "times_seconds": 287887.0
        },
        {
            "index": 3208,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "79h 58' 22''",
            "gap": "+ 00h 05' 30''",
            "b": "B : 18''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 330.0,
            "times_seconds": 287902.0
        },
        {
            "index": 3209,
            "rank": 9,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "79h 59' 04''",
            "gap": "+ 00h 06' 12''",
            "b": "B : 6''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 372.0,
            "times_seconds": 287944.0
        },
        {
            "index": 3210,
            "rank": 10,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "80h 00' 24''",
            "gap": "+ 00h 07' 32''",
            "b": "B : 2''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 452.0,
            "times_seconds": 288024.0
        },
        {
            "index": 3211,
            "rank": 11,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "80h 04' 57''",
            "gap": "+ 00h 12' 05''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 725.0,
            "times_seconds": 288297.0
        },
        {
            "index": 3212,
            "rank": 12,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "80h 15' 00''",
            "gap": "+ 00h 22' 08''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 1328.0,
            "times_seconds": 288900.0
        },
        {
            "index": 3213,
            "rank": 13,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "80h 16' 21''",
            "gap": "+ 00h 23' 29''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 1409.0,
            "times_seconds": 288981.0
        },
        {
            "index": 3214,
            "rank": 14,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "80h 19' 59''",
            "gap": "+ 00h 27' 07''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 1627.0,
            "times_seconds": 289199.0
        },
        {
            "index": 3215,
            "rank": 15,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "80h 22' 46''",
            "gap": "+ 00h 29' 54''",
            "b": "B : 13''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 1794.0,
            "times_seconds": 289366.0
        },
        {
            "index": 3216,
            "rank": 16,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "80h 28' 41''",
            "gap": "+ 00h 35' 49''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 2149.0,
            "times_seconds": 289721.0
        },
        {
            "index": 3217,
            "rank": 17,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "80h 36' 33''",
            "gap": "+ 00h 43' 41''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 20,
            "gap_seconds": 2621.0,
            "times_seconds": 290193.0
        },
        {
            "index": 3218,
            "rank": 18,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "80h 37' 22''",
            "gap": "+ 00h 44' 30''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 2670.0,
            "times_seconds": 290242.0
        },
        {
            "index": 3219,
            "rank": 19,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "80h 41' 24''",
            "gap": "+ 00h 48' 32''",
            "b": "B : 6''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 2912.0,
            "times_seconds": 290484.0
        },
        {
            "index": 3220,
            "rank": 20,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "80h 44' 08''",
            "gap": "+ 00h 51' 16''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 3076.0,
            "times_seconds": 290648.0
        },
        {
            "index": 3221,
            "rank": 21,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "80h 49' 39''",
            "gap": "+ 00h 56' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 3407.0,
            "times_seconds": 290979.0
        },
        {
            "index": 3222,
            "rank": 22,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "80h 50' 27''",
            "gap": "+ 00h 57' 35''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 3455.0,
            "times_seconds": 291027.0
        },
        {
            "index": 3223,
            "rank": 23,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "80h 55' 02''",
            "gap": "+ 01h 02' 10''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 20,
            "gap_seconds": 3730.0,
            "times_seconds": 291302.0
        },
        {
            "index": 3224,
            "rank": 24,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "80h 55' 36''",
            "gap": "+ 01h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 3764.0,
            "times_seconds": 291336.0
        },
        {
            "index": 3225,
            "rank": 25,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "80h 57' 32''",
            "gap": "+ 01h 04' 40''",
            "b": "B : 9''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 3880.0,
            "times_seconds": 291452.0
        },
        {
            "index": 3226,
            "rank": 26,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "81h 04' 57''",
            "gap": "+ 01h 12' 05''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4325.0,
            "times_seconds": 291897.0
        },
        {
            "index": 3227,
            "rank": 27,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "81h 05' 08''",
            "gap": "+ 01h 12' 16''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4336.0,
            "times_seconds": 291908.0
        },
        {
            "index": 3228,
            "rank": 28,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "81h 06' 08''",
            "gap": "+ 01h 13' 16''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4396.0,
            "times_seconds": 291968.0
        },
        {
            "index": 3229,
            "rank": 29,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "81h 09' 01''",
            "gap": "+ 01h 16' 09''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4569.0,
            "times_seconds": 292141.0
        },
        {
            "index": 3230,
            "rank": 30,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "81h 12' 59''",
            "gap": "+ 01h 20' 07''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4807.0,
            "times_seconds": 292379.0
        },
        {
            "index": 3231,
            "rank": 31,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "81h 13' 12''",
            "gap": "+ 01h 20' 20''",
            "b": "B : 14''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4820.0,
            "times_seconds": 292392.0
        },
        {
            "index": 3232,
            "rank": 32,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "81h 13' 32''",
            "gap": "+ 01h 20' 40''",
            "b": "B : 2''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4840.0,
            "times_seconds": 292412.0
        },
        {
            "index": 3233,
            "rank": 33,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "81h 13' 49''",
            "gap": "+ 01h 20' 57''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4857.0,
            "times_seconds": 292429.0
        },
        {
            "index": 3234,
            "rank": 34,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "81h 15' 05''",
            "gap": "+ 01h 22' 13''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4933.0,
            "times_seconds": 292505.0
        },
        {
            "index": 3235,
            "rank": 35,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "81h 15' 34''",
            "gap": "+ 01h 22' 42''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 4962.0,
            "times_seconds": 292534.0
        },
        {
            "index": 3236,
            "rank": 36,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "81h 20' 03''",
            "gap": "+ 01h 27' 11''",
            "b": "B : 4''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5231.0,
            "times_seconds": 292803.0
        },
        {
            "index": 3237,
            "rank": 37,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "81h 26' 55''",
            "gap": "+ 01h 34' 03''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5643.0,
            "times_seconds": 293215.0
        },
        {
            "index": 3238,
            "rank": 38,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "81h 29' 06''",
            "gap": "+ 01h 36' 14''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5774.0,
            "times_seconds": 293346.0
        },
        {
            "index": 3239,
            "rank": 39,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "81h 29' 13''",
            "gap": "+ 01h 36' 21''",
            "b": "B : 10''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5781.0,
            "times_seconds": 293353.0
        },
        {
            "index": 3240,
            "rank": 40,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "81h 31' 04''",
            "gap": "+ 01h 38' 12''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5892.0,
            "times_seconds": 293464.0
        },
        {
            "index": 3241,
            "rank": 41,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "81h 32' 30''",
            "gap": "+ 01h 39' 38''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 5978.0,
            "times_seconds": 293550.0
        },
        {
            "index": 3242,
            "rank": 42,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "81h 33' 09''",
            "gap": "+ 01h 40' 17''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6017.0,
            "times_seconds": 293589.0
        },
        {
            "index": 3243,
            "rank": 43,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "81h 36' 34''",
            "gap": "+ 01h 43' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6222.0,
            "times_seconds": 293794.0
        },
        {
            "index": 3244,
            "rank": 44,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "81h 36' 40''",
            "gap": "+ 01h 43' 48''",
            "b": "B : 15''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6228.0,
            "times_seconds": 293800.0
        },
        {
            "index": 3245,
            "rank": 45,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "81h 38' 30''",
            "gap": "+ 01h 45' 38''",
            "b": "B : 2''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6338.0,
            "times_seconds": 293910.0
        },
        {
            "index": 3246,
            "rank": 46,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "81h 43' 53''",
            "gap": "+ 01h 51' 01''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6661.0,
            "times_seconds": 294233.0
        },
        {
            "index": 3247,
            "rank": 47,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "81h 45' 01''",
            "gap": "+ 01h 52' 09''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6729.0,
            "times_seconds": 294301.0
        },
        {
            "index": 3248,
            "rank": 48,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "81h 45' 07''",
            "gap": "+ 01h 52' 15''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6735.0,
            "times_seconds": 294307.0
        },
        {
            "index": 3249,
            "rank": 49,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "81h 45' 55''",
            "gap": "+ 01h 53' 03''",
            "b": "B : 38''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6783.0,
            "times_seconds": 294355.0
        },
        {
            "index": 3250,
            "rank": 50,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "81h 47' 14''",
            "gap": "+ 01h 54' 22''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6862.0,
            "times_seconds": 294434.0
        },
        {
            "index": 3251,
            "rank": 51,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "81h 47' 25''",
            "gap": "+ 01h 54' 33''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 6873.0,
            "times_seconds": 294445.0
        },
        {
            "index": 3252,
            "rank": 52,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "81h 50' 30''",
            "gap": "+ 01h 57' 38''",
            "b": "B : 14''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7058.0,
            "times_seconds": 294630.0
        },
        {
            "index": 3253,
            "rank": 53,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "81h 51' 09''",
            "gap": "+ 01h 58' 17''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7097.0,
            "times_seconds": 294669.0
        },
        {
            "index": 3254,
            "rank": 54,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "81h 51' 21''",
            "gap": "+ 01h 58' 29''",
            "b": "B : 8''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7109.0,
            "times_seconds": 294681.0
        },
        {
            "index": 3255,
            "rank": 55,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "81h 51' 27''",
            "gap": "+ 01h 58' 35''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7115.0,
            "times_seconds": 294687.0
        },
        {
            "index": 3256,
            "rank": 56,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "81h 53' 31''",
            "gap": "+ 02h 00' 39''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7239.0,
            "times_seconds": 294811.0
        },
        {
            "index": 3257,
            "rank": 57,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "81h 58' 27''",
            "gap": "+ 02h 05' 35''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7535.0,
            "times_seconds": 295107.0
        },
        {
            "index": 3258,
            "rank": 58,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "81h 59' 22''",
            "gap": "+ 02h 06' 30''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7590.0,
            "times_seconds": 295162.0
        },
        {
            "index": 3259,
            "rank": 59,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "81h 59' 51''",
            "gap": "+ 02h 06' 59''",
            "b": "B : 11''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7619.0,
            "times_seconds": 295191.0
        },
        {
            "index": 3260,
            "rank": 60,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "82h 02' 56''",
            "gap": "+ 02h 10' 04''",
            "b": "B : 18''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7804.0,
            "times_seconds": 295376.0
        },
        {
            "index": 3261,
            "rank": 61,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "82h 04' 35''",
            "gap": "+ 02h 11' 43''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7903.0,
            "times_seconds": 295475.0
        },
        {
            "index": 3262,
            "rank": 62,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "82h 04' 52''",
            "gap": "+ 02h 12' 00''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7920.0,
            "times_seconds": 295492.0
        },
        {
            "index": 3263,
            "rank": 63,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "82h 05' 26''",
            "gap": "+ 02h 12' 34''",
            "b": "B : 8''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 7954.0,
            "times_seconds": 295526.0
        },
        {
            "index": 3264,
            "rank": 64,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "82h 06' 29''",
            "gap": "+ 02h 13' 37''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8017.0,
            "times_seconds": 295589.0
        },
        {
            "index": 3265,
            "rank": 65,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "82h 07' 07''",
            "gap": "+ 02h 14' 15''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8055.0,
            "times_seconds": 295627.0
        },
        {
            "index": 3266,
            "rank": 66,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "82h 07' 10''",
            "gap": "+ 02h 14' 18''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8058.0,
            "times_seconds": 295630.0
        },
        {
            "index": 3267,
            "rank": 67,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "82h 09' 26''",
            "gap": "+ 02h 16' 34''",
            "b": "B : 6''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8194.0,
            "times_seconds": 295766.0
        },
        {
            "index": 3268,
            "rank": 68,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "82h 09' 35''",
            "gap": "+ 02h 16' 43''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8203.0,
            "times_seconds": 295775.0
        },
        {
            "index": 3269,
            "rank": 69,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "82h 11' 26''",
            "gap": "+ 02h 18' 34''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8314.0,
            "times_seconds": 295886.0
        },
        {
            "index": 3270,
            "rank": 70,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "82h 11' 38''",
            "gap": "+ 02h 18' 46''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8326.0,
            "times_seconds": 295898.0
        },
        {
            "index": 3271,
            "rank": 71,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "82h 12' 17''",
            "gap": "+ 02h 19' 25''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8365.0,
            "times_seconds": 295937.0
        },
        {
            "index": 3272,
            "rank": 72,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "82h 16' 44''",
            "gap": "+ 02h 23' 52''",
            "b": "B : 18''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8632.0,
            "times_seconds": 296204.0
        },
        {
            "index": 3273,
            "rank": 73,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "82h 18' 59''",
            "gap": "+ 02h 26' 07''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8767.0,
            "times_seconds": 296339.0
        },
        {
            "index": 3274,
            "rank": 74,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "82h 20' 08''",
            "gap": "+ 02h 27' 16''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8836.0,
            "times_seconds": 296408.0
        },
        {
            "index": 3275,
            "rank": 75,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "82h 20' 11''",
            "gap": "+ 02h 27' 19''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8839.0,
            "times_seconds": 296411.0
        },
        {
            "index": 3276,
            "rank": 76,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "82h 21' 11''",
            "gap": "+ 02h 28' 19''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 8899.0,
            "times_seconds": 296471.0
        },
        {
            "index": 3277,
            "rank": 77,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "82h 24' 15''",
            "gap": "+ 02h 31' 23''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9083.0,
            "times_seconds": 296655.0
        },
        {
            "index": 3278,
            "rank": 78,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "82h 25' 25''",
            "gap": "+ 02h 32' 33''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9153.0,
            "times_seconds": 296725.0
        },
        {
            "index": 3279,
            "rank": 79,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "82h 28' 02''",
            "gap": "+ 02h 35' 10''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9310.0,
            "times_seconds": 296882.0
        },
        {
            "index": 3280,
            "rank": 80,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "82h 30' 27''",
            "gap": "+ 02h 37' 35''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9455.0,
            "times_seconds": 297027.0
        },
        {
            "index": 3281,
            "rank": 81,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "82h 32' 42''",
            "gap": "+ 02h 39' 50''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9590.0,
            "times_seconds": 297162.0
        },
        {
            "index": 3282,
            "rank": 82,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "82h 36' 36''",
            "gap": "+ 02h 43' 44''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9824.0,
            "times_seconds": 297396.0
        },
        {
            "index": 3283,
            "rank": 83,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "82h 37' 16''",
            "gap": "+ 02h 44' 24''",
            "b": "B : 20''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 9864.0,
            "times_seconds": 297436.0
        },
        {
            "index": 3284,
            "rank": 84,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "82h 39' 38''",
            "gap": "+ 02h 46' 46''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10006.0,
            "times_seconds": 297578.0
        },
        {
            "index": 3285,
            "rank": 85,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "82h 41' 19''",
            "gap": "+ 02h 48' 27''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10107.0,
            "times_seconds": 297679.0
        },
        {
            "index": 3286,
            "rank": 86,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "82h 41' 48''",
            "gap": "+ 02h 48' 56''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10136.0,
            "times_seconds": 297708.0
        },
        {
            "index": 3287,
            "rank": 87,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "82h 43' 37''",
            "gap": "+ 02h 50' 45''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10245.0,
            "times_seconds": 297817.0
        },
        {
            "index": 3288,
            "rank": 88,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "82h 46' 17''",
            "gap": "+ 02h 53' 25''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10405.0,
            "times_seconds": 297977.0
        },
        {
            "index": 3289,
            "rank": 89,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "82h 47' 03''",
            "gap": "+ 02h 54' 11''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10451.0,
            "times_seconds": 298023.0
        },
        {
            "index": 3290,
            "rank": 90,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "82h 47' 35''",
            "gap": "+ 02h 54' 43''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10483.0,
            "times_seconds": 298055.0
        },
        {
            "index": 3291,
            "rank": 91,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "82h 49' 03''",
            "gap": "+ 02h 56' 11''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10571.0,
            "times_seconds": 298143.0
        },
        {
            "index": 3292,
            "rank": 92,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "82h 50' 29''",
            "gap": "+ 02h 57' 37''",
            "b": "B : 4''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10657.0,
            "times_seconds": 298229.0
        },
        {
            "index": 3293,
            "rank": 93,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "82h 51' 11''",
            "gap": "+ 02h 58' 19''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10699.0,
            "times_seconds": 298271.0
        },
        {
            "index": 3294,
            "rank": 94,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "82h 52' 47''",
            "gap": "+ 02h 59' 55''",
            "b": "B : 10''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10795.0,
            "times_seconds": 298367.0
        },
        {
            "index": 3295,
            "rank": 95,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "82h 53' 42''",
            "gap": "+ 03h 00' 50''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10850.0,
            "times_seconds": 298422.0
        },
        {
            "index": 3296,
            "rank": 96,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "82h 53' 48''",
            "gap": "+ 03h 00' 56''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10856.0,
            "times_seconds": 298428.0
        },
        {
            "index": 3297,
            "rank": 97,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "82h 54' 23''",
            "gap": "+ 03h 01' 31''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10891.0,
            "times_seconds": 298463.0
        },
        {
            "index": 3298,
            "rank": 98,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "82h 55' 30''",
            "gap": "+ 03h 02' 38''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 10958.0,
            "times_seconds": 298530.0
        },
        {
            "index": 3299,
            "rank": 99,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "82h 57' 16''",
            "gap": "+ 03h 04' 24''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11064.0,
            "times_seconds": 298636.0
        },
        {
            "index": 3300,
            "rank": 100,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "82h 57' 26''",
            "gap": "+ 03h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11074.0,
            "times_seconds": 298646.0
        },
        {
            "index": 3301,
            "rank": 101,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "82h 59' 46''",
            "gap": "+ 03h 06' 54''",
            "b": "B : 10''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11214.0,
            "times_seconds": 298786.0
        },
        {
            "index": 3302,
            "rank": 102,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "83h 01' 41''",
            "gap": "+ 03h 08' 49''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11329.0,
            "times_seconds": 298901.0
        },
        {
            "index": 3303,
            "rank": 103,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "83h 03' 32''",
            "gap": "+ 03h 10' 40''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11440.0,
            "times_seconds": 299012.0
        },
        {
            "index": 3304,
            "rank": 104,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "83h 04' 15''",
            "gap": "+ 03h 11' 23''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11483.0,
            "times_seconds": 299055.0
        },
        {
            "index": 3305,
            "rank": 105,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "83h 04' 24''",
            "gap": "+ 03h 11' 32''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11492.0,
            "times_seconds": 299064.0
        },
        {
            "index": 3306,
            "rank": 106,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "83h 05' 59''",
            "gap": "+ 03h 13' 07''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11587.0,
            "times_seconds": 299159.0
        },
        {
            "index": 3307,
            "rank": 107,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "83h 07' 47''",
            "gap": "+ 03h 14' 55''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11695.0,
            "times_seconds": 299267.0
        },
        {
            "index": 3308,
            "rank": 108,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "83h 09' 42''",
            "gap": "+ 03h 16' 50''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11810.0,
            "times_seconds": 299382.0
        },
        {
            "index": 3309,
            "rank": 109,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "83h 10' 00''",
            "gap": "+ 03h 17' 08''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11828.0,
            "times_seconds": 299400.0
        },
        {
            "index": 3310,
            "rank": 110,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 12' 21''",
            "gap": "+ 03h 19' 29''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11969.0,
            "times_seconds": 299541.0
        },
        {
            "index": 3311,
            "rank": 111,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "83h 12' 32''",
            "gap": "+ 03h 19' 40''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 11980.0,
            "times_seconds": 299552.0
        },
        {
            "index": 3312,
            "rank": 112,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "83h 13' 28''",
            "gap": "+ 03h 20' 36''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12036.0,
            "times_seconds": 299608.0
        },
        {
            "index": 3313,
            "rank": 113,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "83h 17' 13''",
            "gap": "+ 03h 24' 21''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12261.0,
            "times_seconds": 299833.0
        },
        {
            "index": 3314,
            "rank": 114,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "83h 18' 26''",
            "gap": "+ 03h 25' 34''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12334.0,
            "times_seconds": 299906.0
        },
        {
            "index": 3315,
            "rank": 115,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "83h 18' 41''",
            "gap": "+ 03h 25' 49''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12349.0,
            "times_seconds": 299921.0
        },
        {
            "index": 3316,
            "rank": 116,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "83h 18' 55''",
            "gap": "+ 03h 26' 03''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12363.0,
            "times_seconds": 299935.0
        },
        {
            "index": 3317,
            "rank": 117,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "83h 20' 35''",
            "gap": "+ 03h 27' 43''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12463.0,
            "times_seconds": 300035.0
        },
        {
            "index": 3318,
            "rank": 118,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "83h 24' 08''",
            "gap": "+ 03h 31' 16''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12676.0,
            "times_seconds": 300248.0
        },
        {
            "index": 3319,
            "rank": 119,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "83h 25' 54''",
            "gap": "+ 03h 33' 02''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12782.0,
            "times_seconds": 300354.0
        },
        {
            "index": 3320,
            "rank": 120,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 26' 52''",
            "gap": "+ 03h 34' 00''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12840.0,
            "times_seconds": 300412.0
        },
        {
            "index": 3321,
            "rank": 121,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "83h 28' 04''",
            "gap": "+ 03h 35' 12''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 12912.0,
            "times_seconds": 300484.0
        },
        {
            "index": 3322,
            "rank": 122,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "83h 30' 22''",
            "gap": "+ 03h 37' 30''",
            "b": "B : 6''",
            "p": "P : 00' 10''",
            "stage": 20,
            "gap_seconds": 13050.0,
            "times_seconds": 300622.0
        },
        {
            "index": 3323,
            "rank": 123,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "83h 35' 54''",
            "gap": "+ 03h 43' 02''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13382.0,
            "times_seconds": 300954.0
        },
        {
            "index": 3324,
            "rank": 124,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "83h 37' 02''",
            "gap": "+ 03h 44' 10''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13450.0,
            "times_seconds": 301022.0
        },
        {
            "index": 3325,
            "rank": 125,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "83h 37' 15''",
            "gap": "+ 03h 44' 23''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13463.0,
            "times_seconds": 301035.0
        },
        {
            "index": 3326,
            "rank": 126,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "83h 37' 40''",
            "gap": "+ 03h 44' 48''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13488.0,
            "times_seconds": 301060.0
        },
        {
            "index": 3327,
            "rank": 127,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "83h 38' 57''",
            "gap": "+ 03h 46' 05''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13565.0,
            "times_seconds": 301137.0
        },
        {
            "index": 3328,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "83h 39' 03''",
            "gap": "+ 03h 46' 11''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13571.0,
            "times_seconds": 301143.0
        },
        {
            "index": 3329,
            "rank": 129,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "83h 40' 55''",
            "gap": "+ 03h 48' 03''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13683.0,
            "times_seconds": 301255.0
        },
        {
            "index": 3330,
            "rank": 130,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "83h 45' 29''",
            "gap": "+ 03h 52' 37''",
            "b": "B : 26''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13957.0,
            "times_seconds": 301529.0
        },
        {
            "index": 3331,
            "rank": 131,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "83h 45' 34''",
            "gap": "+ 03h 52' 42''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 13962.0,
            "times_seconds": 301534.0
        },
        {
            "index": 3332,
            "rank": 132,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "83h 46' 40''",
            "gap": "+ 03h 53' 48''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14028.0,
            "times_seconds": 301600.0
        },
        {
            "index": 3333,
            "rank": 133,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "83h 47' 14''",
            "gap": "+ 03h 54' 22''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14062.0,
            "times_seconds": 301634.0
        },
        {
            "index": 3334,
            "rank": 134,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "83h 47' 29''",
            "gap": "+ 03h 54' 37''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 20,
            "gap_seconds": 14077.0,
            "times_seconds": 301649.0
        },
        {
            "index": 3335,
            "rank": 135,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "83h 47' 36''",
            "gap": "+ 03h 54' 44''",
            "b": "B : 38''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14084.0,
            "times_seconds": 301656.0
        },
        {
            "index": 3336,
            "rank": 136,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 49' 37''",
            "gap": "+ 03h 56' 45''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14205.0,
            "times_seconds": 301777.0
        },
        {
            "index": 3337,
            "rank": 137,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "83h 52' 40''",
            "gap": "+ 03h 59' 48''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14388.0,
            "times_seconds": 301960.0
        },
        {
            "index": 3338,
            "rank": 138,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 52' 43''",
            "gap": "+ 03h 59' 51''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14391.0,
            "times_seconds": 301963.0
        },
        {
            "index": 3339,
            "rank": 139,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "83h 53' 06''",
            "gap": "+ 04h 00' 14''",
            "b": "B : 6''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14414.0,
            "times_seconds": 301986.0
        },
        {
            "index": 3340,
            "rank": 140,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "83h 53' 46''",
            "gap": "+ 04h 00' 54''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14454.0,
            "times_seconds": 302026.0
        },
        {
            "index": 3341,
            "rank": 141,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "83h 54' 54''",
            "gap": "+ 04h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14522.0,
            "times_seconds": 302094.0
        },
        {
            "index": 3342,
            "rank": 142,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "83h 55' 57''",
            "gap": "+ 04h 03' 05''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14585.0,
            "times_seconds": 302157.0
        },
        {
            "index": 3343,
            "rank": 143,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "83h 58' 24''",
            "gap": "+ 04h 05' 32''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14732.0,
            "times_seconds": 302304.0
        },
        {
            "index": 3344,
            "rank": 144,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "83h 58' 38''",
            "gap": "+ 04h 05' 46''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 20,
            "gap_seconds": 14746.0,
            "times_seconds": 302318.0
        },
        {
            "index": 3345,
            "rank": 145,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "83h 59' 52''",
            "gap": "+ 04h 07' 00''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14820.0,
            "times_seconds": 302392.0
        },
        {
            "index": 3346,
            "rank": 146,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "84h 00' 03''",
            "gap": "+ 04h 07' 11''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14831.0,
            "times_seconds": 302403.0
        },
        {
            "index": 3347,
            "rank": 147,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "84h 00' 08''",
            "gap": "+ 04h 07' 16''",
            "b": "B : 20''",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14836.0,
            "times_seconds": 302408.0
        },
        {
            "index": 3348,
            "rank": 148,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "84h 01' 09''",
            "gap": "+ 04h 08' 17''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 14897.0,
            "times_seconds": 302469.0
        },
        {
            "index": 3349,
            "rank": 149,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "84h 02' 57''",
            "gap": "+ 04h 10' 05''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 15005.0,
            "times_seconds": 302577.0
        },
        {
            "index": 3350,
            "rank": 150,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "84h 06' 15''",
            "gap": "+ 04h 13' 23''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 15203.0,
            "times_seconds": 302775.0
        },
        {
            "index": 3351,
            "rank": 151,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "84h 06' 40''",
            "gap": "+ 04h 13' 48''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 15228.0,
            "times_seconds": 302800.0
        },
        {
            "index": 3352,
            "rank": 152,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "84h 12' 25''",
            "gap": "+ 04h 19' 33''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 15573.0,
            "times_seconds": 303145.0
        },
        {
            "index": 3353,
            "rank": 153,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "84h 21' 59''",
            "gap": "+ 04h 29' 07''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 16147.0,
            "times_seconds": 303719.0
        },
        {
            "index": 3354,
            "rank": 154,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "84h 22' 42''",
            "gap": "+ 04h 29' 50''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 16190.0,
            "times_seconds": 303762.0
        },
        {
            "index": 3355,
            "rank": 155,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "84h 27' 15''",
            "gap": "+ 04h 34' 23''",
            "b": "-",
            "p": "-",
            "stage": 20,
            "gap_seconds": 16463.0,
            "times_seconds": 304035.0
        },
        {
            "index": 3356,
            "rank": 1,
            "rider": "Egan Bernal",
            "rider no.": 2,
            "team": "Team Ineos",
            "times": "82h 57' 00''",
            "gap": "-",
            "b": "B : 8''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 0.0,
            "times_seconds": 298620.0
        },
        {
            "index": 3357,
            "rank": 2,
            "rider": "Geraint Thomas",
            "rider no.": 1,
            "team": "Team Ineos",
            "times": "82h 58' 11''",
            "gap": "+ 00h 01' 11''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 71.0,
            "times_seconds": 298691.0
        },
        {
            "index": 3358,
            "rank": 3,
            "rider": "Steven Kruijswijk",
            "rider no.": 81,
            "team": "Team Jumbo - Visma",
            "times": "82h 58' 31''",
            "gap": "+ 00h 01' 31''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 91.0,
            "times_seconds": 298711.0
        },
        {
            "index": 3359,
            "rank": 4,
            "rider": "Emanuel Buchmann",
            "rider no.": 12,
            "team": "Bora - Hansgrohe",
            "times": "82h 58' 56''",
            "gap": "+ 00h 01' 56''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 116.0,
            "times_seconds": 298736.0
        },
        {
            "index": 3360,
            "rank": 5,
            "rider": "Julian Alaphilippe",
            "rider no.": 21,
            "team": "Deceuninck - Quick - Step",
            "times": "83h 01' 05''",
            "gap": "+ 00h 04' 05''",
            "b": "B : 30''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 245.0,
            "times_seconds": 298865.0
        },
        {
            "index": 3361,
            "rank": 6,
            "rider": "Mikel Landa Meana",
            "rider no.": 65,
            "team": "Movistar Team",
            "times": "83h 01' 23''",
            "gap": "+ 00h 04' 23''",
            "b": "B : 8''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 263.0,
            "times_seconds": 298883.0
        },
        {
            "index": 3362,
            "rank": 7,
            "rider": "Rigoberto Uran",
            "rider no.": 91,
            "team": "Ef Education First",
            "times": "83h 02' 15''",
            "gap": "+ 00h 05' 15''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 315.0,
            "times_seconds": 298935.0
        },
        {
            "index": 3363,
            "rank": 8,
            "rider": "Nairo Quintana",
            "rider no.": 61,
            "team": "Movistar Team",
            "times": "83h 02' 30''",
            "gap": "+ 00h 05' 30''",
            "b": "B : 18''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 330.0,
            "times_seconds": 298950.0
        },
        {
            "index": 3364,
            "rank": 9,
            "rider": "Alejandro Valverde",
            "rider no.": 62,
            "team": "Movistar Team",
            "times": "83h 03' 12''",
            "gap": "+ 00h 06' 12''",
            "b": "B : 6''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 372.0,
            "times_seconds": 298992.0
        },
        {
            "index": 3365,
            "rank": 10,
            "rider": "Warren Barguil",
            "rider no.": 211,
            "team": "Team Arkea - Samsic",
            "times": "83h 04' 32''",
            "gap": "+ 00h 07' 32''",
            "b": "B : 2''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 452.0,
            "times_seconds": 299072.0
        },
        {
            "index": 3366,
            "rank": 11,
            "rider": "Richie Porte",
            "rider no.": 131,
            "team": "Trek - Segafredo",
            "times": "83h 09' 42''",
            "gap": "+ 00h 12' 42''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 762.0,
            "times_seconds": 299382.0
        },
        {
            "index": 3367,
            "rank": 12,
            "rider": "Guillaume Martin",
            "rider no.": 191,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 19' 08''",
            "gap": "+ 00h 22' 08''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 1328.0,
            "times_seconds": 299948.0
        },
        {
            "index": 3368,
            "rank": 13,
            "rider": "David Gaudu",
            "rider no.": 53,
            "team": "Groupama - Fdj",
            "times": "83h 20' 58''",
            "gap": "+ 00h 23' 58''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 1438.0,
            "times_seconds": 300058.0
        },
        {
            "index": 3369,
            "rank": 14,
            "rider": "Fabio Aru",
            "rider no.": 122,
            "team": "Uae Team Emirates",
            "times": "83h 24' 36''",
            "gap": "+ 00h 27' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 1656.0,
            "times_seconds": 300276.0
        },
        {
            "index": 3370,
            "rank": 15,
            "rider": "Romain Bardet",
            "rider no.": 31,
            "team": "Ag2R La Mondiale",
            "times": "83h 27' 23''",
            "gap": "+ 00h 30' 23''",
            "b": "B : 13''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 1823.0,
            "times_seconds": 300443.0
        },
        {
            "index": 3371,
            "rank": 16,
            "rider": "Roman Kreuziger",
            "rider no.": 206,
            "team": "Team Dimension Data",
            "times": "83h 33' 09''",
            "gap": "+ 00h 36' 09''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 2169.0,
            "times_seconds": 300789.0
        },
        {
            "index": 3372,
            "rank": 17,
            "rider": "S\u00e9bastien Reichenbach",
            "rider no.": 57,
            "team": "Groupama - Fdj",
            "times": "83h 41' 29''",
            "gap": "+ 00h 44' 29''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 21,
            "gap_seconds": 2669.0,
            "times_seconds": 301289.0
        },
        {
            "index": 3373,
            "rank": 18,
            "rider": "Daniel Martin",
            "rider no.": 121,
            "team": "Uae Team Emirates",
            "times": "83h 42' 21''",
            "gap": "+ 00h 45' 21''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 2721.0,
            "times_seconds": 301341.0
        },
        {
            "index": 3374,
            "rank": 19,
            "rider": "Alexey Lutsenko",
            "rider no.": 76,
            "team": "Astana Pro Team",
            "times": "83h 45' 52''",
            "gap": "+ 00h 48' 52''",
            "b": "B : 6''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 2932.0,
            "times_seconds": 301552.0
        },
        {
            "index": 3375,
            "rank": 20,
            "rider": "Jesus Herrada",
            "rider no.": 154,
            "team": "Cofidis, Solutions Credits",
            "times": "83h 48' 57''",
            "gap": "+ 00h 51' 57''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 3117.0,
            "times_seconds": 301737.0
        },
        {
            "index": 3376,
            "rank": 21,
            "rider": "Xandro Meurisse",
            "rider no.": 195,
            "team": "Wanty - Gobert Cycling Team",
            "times": "83h 53' 47''",
            "gap": "+ 00h 56' 47''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 3407.0,
            "times_seconds": 302027.0
        },
        {
            "index": 3377,
            "rank": 22,
            "rider": "Enric Mas",
            "rider no.": 25,
            "team": "Deceuninck - Quick - Step",
            "times": "83h 55' 20''",
            "gap": "+ 00h 58' 20''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 3500.0,
            "times_seconds": 302120.0
        },
        {
            "index": 3378,
            "rank": 23,
            "rider": "Laurens De Plus",
            "rider no.": 83,
            "team": "Team Jumbo - Visma",
            "times": "83h 59' 44''",
            "gap": "+ 01h 02' 44''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 3764.0,
            "times_seconds": 302384.0
        },
        {
            "index": 3379,
            "rank": 24,
            "rider": "George Bennett",
            "rider no.": 82,
            "team": "Team Jumbo - Visma",
            "times": "84h 01' 40''",
            "gap": "+ 01h 04' 40''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 21,
            "gap_seconds": 3880.0,
            "times_seconds": 302500.0
        },
        {
            "index": 3380,
            "rank": 25,
            "rider": "Gregor M\u00fchlberger",
            "rider no.": 15,
            "team": "Bora - Hansgrohe",
            "times": "84h 01' 40''",
            "gap": "+ 01h 04' 40''",
            "b": "B : 9''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 3880.0,
            "times_seconds": 302500.0
        },
        {
            "index": 3381,
            "rank": 26,
            "rider": "Wout Poels",
            "rider no.": 6,
            "team": "Team Ineos",
            "times": "84h 09' 25''",
            "gap": "+ 01h 12' 25''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4345.0,
            "times_seconds": 302965.0
        },
        {
            "index": 3382,
            "rank": 27,
            "rider": "Tanel Kangert",
            "rider no.": 94,
            "team": "Ef Education First",
            "times": "84h 09' 36''",
            "gap": "+ 01h 12' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4356.0,
            "times_seconds": 302976.0
        },
        {
            "index": 3383,
            "rank": 28,
            "rider": "Bauke Mollema",
            "rider no.": 136,
            "team": "Trek - Segafredo",
            "times": "84h 11' 58''",
            "gap": "+ 01h 14' 58''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4498.0,
            "times_seconds": 303118.0
        },
        {
            "index": 3384,
            "rank": 29,
            "rider": "Adam Yates",
            "rider no.": 101,
            "team": "Mitchelton - Scott",
            "times": "84h 13' 50''",
            "gap": "+ 01h 16' 50''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4610.0,
            "times_seconds": 303230.0
        },
        {
            "index": 3385,
            "rank": 30,
            "rider": "Julien Bernard",
            "rider no.": 132,
            "team": "Trek - Segafredo",
            "times": "84h 17' 07''",
            "gap": "+ 01h 20' 07''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4807.0,
            "times_seconds": 303427.0
        },
        {
            "index": 3386,
            "rank": 31,
            "rider": "Giulio Ciccone",
            "rider no.": 133,
            "team": "Trek - Segafredo",
            "times": "84h 17' 49''",
            "gap": "+ 01h 20' 49''",
            "b": "B : 14''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4849.0,
            "times_seconds": 303469.0
        },
        {
            "index": 3387,
            "rank": 32,
            "rider": "Michael Woods",
            "rider no.": 98,
            "team": "Ef Education First",
            "times": "84h 18' 00''",
            "gap": "+ 01h 21' 00''",
            "b": "B : 2''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4860.0,
            "times_seconds": 303480.0
        },
        {
            "index": 3388,
            "rank": 33,
            "rider": "Rudy Molard",
            "rider no.": 56,
            "team": "Groupama - Fdj",
            "times": "84h 18' 17''",
            "gap": "+ 01h 21' 17''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4877.0,
            "times_seconds": 303497.0
        },
        {
            "index": 3389,
            "rank": 34,
            "rider": "Mikael Cherel",
            "rider no.": 32,
            "team": "Ag2R La Mondiale",
            "times": "84h 19' 32''",
            "gap": "+ 01h 22' 32''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 4952.0,
            "times_seconds": 303572.0
        },
        {
            "index": 3390,
            "rank": 35,
            "rider": "Patrick Konrad",
            "rider no.": 14,
            "team": "Bora - Hansgrohe",
            "times": "84h 21' 35''",
            "gap": "+ 01h 24' 35''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5075.0,
            "times_seconds": 303695.0
        },
        {
            "index": 3391,
            "rank": 36,
            "rider": "Greg Van Avermaet",
            "rider no.": 111,
            "team": "Ccc Team",
            "times": "84h 24' 56''",
            "gap": "+ 01h 27' 56''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5276.0,
            "times_seconds": 303896.0
        },
        {
            "index": 3392,
            "rank": 37,
            "rider": "Marc Soler",
            "rider no.": 67,
            "team": "Movistar Team",
            "times": "84h 32' 45''",
            "gap": "+ 01h 35' 45''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5745.0,
            "times_seconds": 304365.0
        },
        {
            "index": 3393,
            "rank": 38,
            "rider": "Jack Haig",
            "rider no.": 103,
            "team": "Mitchelton - Scott",
            "times": "84h 33' 59''",
            "gap": "+ 01h 36' 59''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5819.0,
            "times_seconds": 304439.0
        },
        {
            "index": 3394,
            "rank": 39,
            "rider": "Vincenzo Nibali",
            "rider no.": 41,
            "team": "Bahrain - Merida",
            "times": "84h 34' 02''",
            "gap": "+ 01h 37' 02''",
            "b": "B : 10''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5822.0,
            "times_seconds": 304442.0
        },
        {
            "index": 3395,
            "rank": 40,
            "rider": "Lennard K\u00e4mna",
            "rider no.": 145,
            "team": "Team Sunweb",
            "times": "84h 36' 36''",
            "gap": "+ 01h 39' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 5976.0,
            "times_seconds": 304596.0
        },
        {
            "index": 3396,
            "rank": 41,
            "rider": "Alexis Vuillermoz",
            "rider no.": 38,
            "team": "Ag2R La Mondiale",
            "times": "84h 37' 07''",
            "gap": "+ 01h 40' 07''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6007.0,
            "times_seconds": 304627.0
        },
        {
            "index": 3397,
            "rank": 42,
            "rider": "Gorka Izaguirre Insausti",
            "rider no.": 75,
            "team": "Astana Pro Team",
            "times": "84h 37' 17''",
            "gap": "+ 01h 40' 17''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6017.0,
            "times_seconds": 304637.0
        },
        {
            "index": 3398,
            "rank": 43,
            "rider": "Jasper Stuyven",
            "rider no.": 138,
            "team": "Trek - Segafredo",
            "times": "84h 40' 42''",
            "gap": "+ 01h 43' 42''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6222.0,
            "times_seconds": 304842.0
        },
        {
            "index": 3399,
            "rank": 44,
            "rider": "Dylan Teuns",
            "rider no.": 47,
            "team": "Bahrain - Merida",
            "times": "84h 41' 17''",
            "gap": "+ 01h 44' 17''",
            "b": "B : 15''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6257.0,
            "times_seconds": 304877.0
        },
        {
            "index": 3400,
            "rank": 45,
            "rider": "Nicolas Roche",
            "rider no.": 148,
            "team": "Team Sunweb",
            "times": "84h 44' 20''",
            "gap": "+ 01h 47' 20''",
            "b": "B : 2''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6440.0,
            "times_seconds": 305060.0
        },
        {
            "index": 3401,
            "rank": 46,
            "rider": "Dylan Van Baarle",
            "rider no.": 8,
            "team": "Team Ineos",
            "times": "84h 48' 38''",
            "gap": "+ 01h 51' 38''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6698.0,
            "times_seconds": 305318.0
        },
        {
            "index": 3402,
            "rank": 47,
            "rider": "Sergio Luis Henao Montoya",
            "rider no.": 125,
            "team": "Uae Team Emirates",
            "times": "84h 49' 37''",
            "gap": "+ 01h 52' 37''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6757.0,
            "times_seconds": 305377.0
        },
        {
            "index": 3403,
            "rank": 48,
            "rider": "Mathias Frank",
            "rider no.": 34,
            "team": "Ag2R La Mondiale",
            "times": "84h 50' 51''",
            "gap": "+ 01h 53' 51''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6831.0,
            "times_seconds": 305451.0
        },
        {
            "index": 3404,
            "rank": 49,
            "rider": "Simon Yates",
            "rider no.": 108,
            "team": "Mitchelton - Scott",
            "times": "84h 50' 54''",
            "gap": "+ 01h 53' 54''",
            "b": "B : 38''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6834.0,
            "times_seconds": 305454.0
        },
        {
            "index": 3405,
            "rank": 50,
            "rider": "Jonathan Castroviejo",
            "rider no.": 3,
            "team": "Team Ineos",
            "times": "84h 51' 22''",
            "gap": "+ 01h 54' 22''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6862.0,
            "times_seconds": 305482.0
        },
        {
            "index": 3406,
            "rank": 51,
            "rider": "Ilnur Zakarin",
            "rider no.": 181,
            "team": "Team Katusha Alpecin",
            "times": "84h 52' 57''",
            "gap": "+ 01h 55' 57''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 6957.0,
            "times_seconds": 305577.0
        },
        {
            "index": 3407,
            "rank": 52,
            "rider": "Matteo Trentin",
            "rider no.": 107,
            "team": "Mitchelton - Scott",
            "times": "84h 54' 38''",
            "gap": "+ 01h 57' 38''",
            "b": "B : 14''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7058.0,
            "times_seconds": 305678.0
        },
        {
            "index": 3408,
            "rank": 53,
            "rider": "Rui Costa",
            "rider no.": 124,
            "team": "Uae Team Emirates",
            "times": "84h 56' 02''",
            "gap": "+ 01h 59' 02''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7142.0,
            "times_seconds": 305762.0
        },
        {
            "index": 3409,
            "rank": 54,
            "rider": "Pello Bilbao Lopez De Armentia",
            "rider no.": 72,
            "team": "Astana Pro Team",
            "times": "84h 56' 10''",
            "gap": "+ 01h 59' 10''",
            "b": "B : 8''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7150.0,
            "times_seconds": 305770.0
        },
        {
            "index": 3410,
            "rank": 55,
            "rider": "Andrey Amador",
            "rider no.": 63,
            "team": "Movistar Team",
            "times": "84h 56' 55''",
            "gap": "+ 01h 59' 55''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7195.0,
            "times_seconds": 305815.0
        },
        {
            "index": 3411,
            "rank": 56,
            "rider": "Tony Gallopin",
            "rider no.": 35,
            "team": "Ag2R La Mondiale",
            "times": "85h 00' 00''",
            "gap": "+ 02h 03' 00''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7380.0,
            "times_seconds": 306000.0
        },
        {
            "index": 3412,
            "rank": 57,
            "rider": "Pierre Luc Perichon",
            "rider no.": 156,
            "team": "Cofidis, Solutions Credits",
            "times": "85h 02' 35''",
            "gap": "+ 02h 05' 35''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7535.0,
            "times_seconds": 306155.0
        },
        {
            "index": 3413,
            "rank": 58,
            "rider": "Damiano Caruso",
            "rider no.": 42,
            "team": "Bahrain - Merida",
            "times": "85h 04' 15''",
            "gap": "+ 02h 07' 15''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7635.0,
            "times_seconds": 306255.0
        },
        {
            "index": 3414,
            "rank": 59,
            "rider": "Tiesj Benoot",
            "rider no.": 162,
            "team": "Lotto Soudal",
            "times": "85h 04' 28''",
            "gap": "+ 02h 07' 28''",
            "b": "B : 11''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7648.0,
            "times_seconds": 306268.0
        },
        {
            "index": 3415,
            "rank": 60,
            "rider": "Thomas De Gendt",
            "rider no.": 164,
            "team": "Lotto Soudal",
            "times": "85h 07' 33''",
            "gap": "+ 02h 10' 33''",
            "b": "B : 18''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7833.0,
            "times_seconds": 306453.0
        },
        {
            "index": 3416,
            "rank": 61,
            "rider": "Simon Clarke",
            "rider no.": 93,
            "team": "Ef Education First",
            "times": "85h 08' 43''",
            "gap": "+ 02h 11' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7903.0,
            "times_seconds": 306523.0
        },
        {
            "index": 3417,
            "rank": 62,
            "rider": "Benjamin King",
            "rider no.": 205,
            "team": "Team Dimension Data",
            "times": "85h 09' 00''",
            "gap": "+ 02h 12' 00''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 7920.0,
            "times_seconds": 306540.0
        },
        {
            "index": 3418,
            "rank": 63,
            "rider": "Simon Geschke",
            "rider no.": 114,
            "team": "Ccc Team",
            "times": "85h 10' 25''",
            "gap": "+ 02h 13' 25''",
            "b": "B : 8''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8005.0,
            "times_seconds": 306625.0
        },
        {
            "index": 3419,
            "rank": 64,
            "rider": "Nils Politt",
            "rider no.": 186,
            "team": "Team Katusha Alpecin",
            "times": "85h 11' 28''",
            "gap": "+ 02h 14' 28''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8068.0,
            "times_seconds": 306688.0
        },
        {
            "index": 3420,
            "rank": 65,
            "rider": "Fabio Felline",
            "rider no.": 135,
            "team": "Trek - Segafredo",
            "times": "85h 12' 03''",
            "gap": "+ 02h 15' 03''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8103.0,
            "times_seconds": 306723.0
        },
        {
            "index": 3421,
            "rank": 66,
            "rider": "Rein Taaram\u00e4e",
            "rider no.": 176,
            "team": "Total Direct Energie",
            "times": "85h 12' 42''",
            "gap": "+ 02h 15' 42''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8142.0,
            "times_seconds": 306762.0
        },
        {
            "index": 3422,
            "rank": 67,
            "rider": "Michael Matthews",
            "rider no.": 141,
            "team": "Team Sunweb",
            "times": "85h 13' 34''",
            "gap": "+ 02h 16' 34''",
            "b": "B : 6''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8194.0,
            "times_seconds": 306814.0
        },
        {
            "index": 3423,
            "rank": 68,
            "rider": "Oliver Naesen",
            "rider no.": 37,
            "team": "Ag2R La Mondiale",
            "times": "85h 13' 43''",
            "gap": "+ 02h 16' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8203.0,
            "times_seconds": 306823.0
        },
        {
            "index": 3424,
            "rank": 69,
            "rider": "Alberto Bettiol",
            "rider no.": 92,
            "team": "Ef Education First",
            "times": "85h 16' 06''",
            "gap": "+ 02h 19' 06''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8346.0,
            "times_seconds": 306966.0
        },
        {
            "index": 3425,
            "rank": 70,
            "rider": "Michael Sch\u00e4r",
            "rider no.": 117,
            "team": "Ccc Team",
            "times": "85h 16' 45''",
            "gap": "+ 02h 19' 45''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8385.0,
            "times_seconds": 307005.0
        },
        {
            "index": 3426,
            "rank": 71,
            "rider": "Omar Fraile Matarranz",
            "rider no.": 73,
            "team": "Astana Pro Team",
            "times": "85h 16' 52''",
            "gap": "+ 02h 19' 52''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8392.0,
            "times_seconds": 307012.0
        },
        {
            "index": 3427,
            "rank": 72,
            "rider": "Daryl Impey",
            "rider no.": 105,
            "team": "Mitchelton - Scott",
            "times": "85h 21' 58''",
            "gap": "+ 02h 24' 58''",
            "b": "B : 18''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8698.0,
            "times_seconds": 307318.0
        },
        {
            "index": 3428,
            "rank": 73,
            "rider": "Joseph Rosskopf",
            "rider no.": 116,
            "team": "Ccc Team",
            "times": "85h 23' 36''",
            "gap": "+ 02h 26' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8796.0,
            "times_seconds": 307416.0
        },
        {
            "index": 3429,
            "rank": 74,
            "rider": "Maxime Bouet",
            "rider no.": 212,
            "team": "Team Arkea - Samsic",
            "times": "85h 25' 04''",
            "gap": "+ 02h 28' 04''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8884.0,
            "times_seconds": 307504.0
        },
        {
            "index": 3430,
            "rank": 75,
            "rider": "Michael Valgren",
            "rider no.": 208,
            "team": "Team Dimension Data",
            "times": "85h 25' 07''",
            "gap": "+ 02h 28' 07''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8887.0,
            "times_seconds": 307507.0
        },
        {
            "index": 3431,
            "rank": 76,
            "rider": "Edvald Boasson Hagen",
            "rider no.": 201,
            "team": "Team Dimension Data",
            "times": "85h 25' 19''",
            "gap": "+ 02h 28' 19''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 8899.0,
            "times_seconds": 307519.0
        },
        {
            "index": 3432,
            "rank": 77,
            "rider": "Serge Pauwels",
            "rider no.": 115,
            "team": "Ccc Team",
            "times": "85h 29' 14''",
            "gap": "+ 02h 32' 14''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9134.0,
            "times_seconds": 307754.0
        },
        {
            "index": 3433,
            "rank": 78,
            "rider": "Elie Gesbert",
            "rider no.": 214,
            "team": "Team Arkea - Samsic",
            "times": "85h 30' 02''",
            "gap": "+ 02h 33' 02''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9182.0,
            "times_seconds": 307802.0
        },
        {
            "index": 3434,
            "rank": 79,
            "rider": "Nelson Oliveira",
            "rider no.": 66,
            "team": "Movistar Team",
            "times": "85h 32' 51''",
            "gap": "+ 02h 35' 51''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9351.0,
            "times_seconds": 307971.0
        },
        {
            "index": 3435,
            "rank": 80,
            "rider": "Romain Sicard",
            "rider no.": 175,
            "team": "Total Direct Energie",
            "times": "85h 35' 26''",
            "gap": "+ 02h 38' 26''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9506.0,
            "times_seconds": 308126.0
        },
        {
            "index": 3436,
            "rank": 81,
            "rider": "Toms Skujins",
            "rider no.": 137,
            "team": "Trek - Segafredo",
            "times": "85h 36' 50''",
            "gap": "+ 02h 39' 50''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9590.0,
            "times_seconds": 308210.0
        },
        {
            "index": 3437,
            "rank": 82,
            "rider": "Peter Sagan",
            "rider no.": 11,
            "team": "Bora - Hansgrohe",
            "times": "85h 41' 24''",
            "gap": "+ 02h 44' 24''",
            "b": "B : 20''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9864.0,
            "times_seconds": 308484.0
        },
        {
            "index": 3438,
            "rank": 83,
            "rider": "Michal Kwiatkowski",
            "rider no.": 4,
            "team": "Team Ineos",
            "times": "85h 43' 14''",
            "gap": "+ 02h 46' 14''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 9974.0,
            "times_seconds": 308594.0
        },
        {
            "index": 3439,
            "rank": 84,
            "rider": "Gianni Moscon",
            "rider no.": 5,
            "team": "Team Ineos",
            "times": "85h 44' 23''",
            "gap": "+ 02h 47' 23''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10043.0,
            "times_seconds": 308663.0
        },
        {
            "index": 3440,
            "rank": 85,
            "rider": "Sonny Colbrelli",
            "rider no.": 43,
            "team": "Bahrain - Merida",
            "times": "85h 45' 27''",
            "gap": "+ 02h 48' 27''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10107.0,
            "times_seconds": 308727.0
        },
        {
            "index": 3441,
            "rank": 86,
            "rider": "Natnael Berhane",
            "rider no.": 152,
            "team": "Cofidis, Solutions Credits",
            "times": "85h 46' 25''",
            "gap": "+ 02h 49' 25''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10165.0,
            "times_seconds": 308785.0
        },
        {
            "index": 3442,
            "rank": 87,
            "rider": "Anthony Perez",
            "rider no.": 155,
            "team": "Cofidis, Solutions Credits",
            "times": "85h 48' 36''",
            "gap": "+ 02h 51' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10296.0,
            "times_seconds": 308916.0
        },
        {
            "index": 3443,
            "rank": 88,
            "rider": "Andrea Pasqualon",
            "rider no.": 197,
            "team": "Wanty - Gobert Cycling Team",
            "times": "85h 50' 25''",
            "gap": "+ 02h 53' 25''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10405.0,
            "times_seconds": 309025.0
        },
        {
            "index": 3444,
            "rank": 89,
            "rider": "Daniel Oss",
            "rider no.": 16,
            "team": "Bora - Hansgrohe",
            "times": "85h 51' 56''",
            "gap": "+ 02h 54' 56''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10496.0,
            "times_seconds": 309116.0
        },
        {
            "index": 3445,
            "rank": 90,
            "rider": "Anthony Delaplace",
            "rider no.": 213,
            "team": "Team Arkea - Samsic",
            "times": "85h 52' 03''",
            "gap": "+ 02h 55' 03''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10503.0,
            "times_seconds": 309123.0
        },
        {
            "index": 3446,
            "rank": 91,
            "rider": "Hugo Houle",
            "rider no.": 74,
            "team": "Astana Pro Team",
            "times": "85h 53' 11''",
            "gap": "+ 02h 56' 11''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10571.0,
            "times_seconds": 309191.0
        },
        {
            "index": 3447,
            "rank": 92,
            "rider": "Amael Moinard",
            "rider no.": 217,
            "team": "Team Arkea - Samsic",
            "times": "85h 56' 17''",
            "gap": "+ 02h 59' 17''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10757.0,
            "times_seconds": 309377.0
        },
        {
            "index": 3448,
            "rank": 93,
            "rider": "Jan Tratnik",
            "rider no.": 48,
            "team": "Bahrain - Merida",
            "times": "85h 57' 37''",
            "gap": "+ 03h 00' 37''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10837.0,
            "times_seconds": 309457.0
        },
        {
            "index": 3449,
            "rank": 94,
            "rider": "Tim Wellens",
            "rider no.": 168,
            "team": "Lotto Soudal",
            "times": "85h 58' 43''",
            "gap": "+ 03h 01' 43''",
            "b": "B : 10''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10903.0,
            "times_seconds": 309523.0
        },
        {
            "index": 3450,
            "rank": 95,
            "rider": "Paul Ourselin",
            "rider no.": 174,
            "team": "Total Direct Energie",
            "times": "85h 58' 47''",
            "gap": "+ 03h 01' 47''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10907.0,
            "times_seconds": 309527.0
        },
        {
            "index": 3451,
            "rank": 96,
            "rider": "Stefan K\u00fcng",
            "rider no.": 54,
            "team": "Groupama - Fdj",
            "times": "85h 59' 38''",
            "gap": "+ 03h 02' 38''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10958.0,
            "times_seconds": 309578.0
        },
        {
            "index": 3452,
            "rank": 97,
            "rider": "Dries Devenyns",
            "rider no.": 23,
            "team": "Deceuninck - Quick - Step",
            "times": "85h 59' 42''",
            "gap": "+ 03h 02' 42''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 10962.0,
            "times_seconds": 309582.0
        },
        {
            "index": 3453,
            "rank": 98,
            "rider": "Jens Keukeleire",
            "rider no.": 165,
            "team": "Lotto Soudal",
            "times": "86h 00' 49''",
            "gap": "+ 03h 03' 49''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11029.0,
            "times_seconds": 309649.0
        },
        {
            "index": 3454,
            "rank": 99,
            "rider": "Imanol Erviti",
            "rider no.": 64,
            "team": "Movistar Team",
            "times": "86h 01' 34''",
            "gap": "+ 03h 04' 34''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11074.0,
            "times_seconds": 309694.0
        },
        {
            "index": 3455,
            "rank": 100,
            "rider": "St\u00e9phane Rossetto",
            "rider no.": 157,
            "team": "Cofidis, Solutions Credits",
            "times": "86h 02' 15''",
            "gap": "+ 03h 05' 15''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11115.0,
            "times_seconds": 309735.0
        },
        {
            "index": 3456,
            "rank": 101,
            "rider": "Mike Teunissen",
            "rider no.": 87,
            "team": "Team Jumbo - Visma",
            "times": "86h 03' 54''",
            "gap": "+ 03h 06' 54''",
            "b": "B : 10''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11214.0,
            "times_seconds": 309834.0
        },
        {
            "index": 3457,
            "rank": 102,
            "rider": "Anthony Roux",
            "rider no.": 58,
            "team": "Groupama - Fdj",
            "times": "86h 05' 49''",
            "gap": "+ 03h 08' 49''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11329.0,
            "times_seconds": 309949.0
        },
        {
            "index": 3458,
            "rank": 103,
            "rider": "Kevin Ledanois",
            "rider no.": 216,
            "team": "Team Arkea - Samsic",
            "times": "86h 09' 17''",
            "gap": "+ 03h 12' 17''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11537.0,
            "times_seconds": 310157.0
        },
        {
            "index": 3459,
            "rank": 104,
            "rider": "Magnus Cort Nielsen",
            "rider no.": 77,
            "team": "Astana Pro Team",
            "times": "86h 09' 22''",
            "gap": "+ 03h 12' 22''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11542.0,
            "times_seconds": 310162.0
        },
        {
            "index": 3460,
            "rank": 105,
            "rider": "Carlos Verona Quintanilla",
            "rider no.": 68,
            "team": "Movistar Team",
            "times": "86h 10' 05''",
            "gap": "+ 03h 13' 05''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11585.0,
            "times_seconds": 310205.0
        },
        {
            "index": 3461,
            "rank": 106,
            "rider": "Lilian Calmejane",
            "rider no.": 171,
            "team": "Total Direct Energie",
            "times": "86h 10' 36''",
            "gap": "+ 03h 13' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11616.0,
            "times_seconds": 310236.0
        },
        {
            "index": 3462,
            "rank": 107,
            "rider": "Vegard Stake Laengen",
            "rider no.": 127,
            "team": "Uae Team Emirates",
            "times": "86h 12' 24''",
            "gap": "+ 03h 15' 24''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11724.0,
            "times_seconds": 310344.0
        },
        {
            "index": 3463,
            "rank": 108,
            "rider": "Julien Simon",
            "rider no.": 158,
            "team": "Cofidis, Solutions Credits",
            "times": "86h 14' 08''",
            "gap": "+ 03h 17' 08''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11828.0,
            "times_seconds": 310448.0
        },
        {
            "index": 3464,
            "rank": 109,
            "rider": "Luke Durbridge",
            "rider no.": 102,
            "team": "Mitchelton - Scott",
            "times": "86h 15' 36''",
            "gap": "+ 03h 18' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11916.0,
            "times_seconds": 310536.0
        },
        {
            "index": 3465,
            "rank": 110,
            "rider": "Sven Erik Bystr\u00f8m",
            "rider no.": 123,
            "team": "Uae Team Emirates",
            "times": "86h 16' 40''",
            "gap": "+ 03h 19' 40''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11980.0,
            "times_seconds": 310600.0
        },
        {
            "index": 3466,
            "rank": 111,
            "rider": "Odd Christian Eiking",
            "rider no.": 194,
            "team": "Wanty - Gobert Cycling Team",
            "times": "86h 16' 58''",
            "gap": "+ 03h 19' 58''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 11998.0,
            "times_seconds": 310618.0
        },
        {
            "index": 3467,
            "rank": 112,
            "rider": "Christopher Juul Jensen",
            "rider no.": 106,
            "team": "Mitchelton - Scott",
            "times": "86h 19' 22''",
            "gap": "+ 03h 22' 22''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12142.0,
            "times_seconds": 310762.0
        },
        {
            "index": 3468,
            "rank": 113,
            "rider": "Benoit Cosnefroy",
            "rider no.": 33,
            "team": "Ag2R La Mondiale",
            "times": "86h 22' 57''",
            "gap": "+ 03h 25' 57''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12357.0,
            "times_seconds": 310977.0
        },
        {
            "index": 3469,
            "rank": 114,
            "rider": "Ivan Garcia Cortina",
            "rider no.": 45,
            "team": "Bahrain - Merida",
            "times": "86h 23' 03''",
            "gap": "+ 03h 26' 03''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12363.0,
            "times_seconds": 310983.0
        },
        {
            "index": 3470,
            "rank": 115,
            "rider": "Alexis Gougeard",
            "rider no.": 36,
            "team": "Ag2R La Mondiale",
            "times": "86h 24' 10''",
            "gap": "+ 03h 27' 10''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12430.0,
            "times_seconds": 311050.0
        },
        {
            "index": 3471,
            "rank": 116,
            "rider": "Nikias Arndt",
            "rider no.": 142,
            "team": "Team Sunweb",
            "times": "86h 24' 43''",
            "gap": "+ 03h 27' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12463.0,
            "times_seconds": 311083.0
        },
        {
            "index": 3472,
            "rank": 117,
            "rider": "Mads W\u00fcrtz",
            "rider no.": 187,
            "team": "Team Katusha Alpecin",
            "times": "86h 26' 22''",
            "gap": "+ 03h 29' 22''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12562.0,
            "times_seconds": 311182.0
        },
        {
            "index": 3473,
            "rank": 118,
            "rider": "Jasper De Buyst",
            "rider no.": 163,
            "team": "Lotto Soudal",
            "times": "86h 28' 36''",
            "gap": "+ 03h 31' 36''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12696.0,
            "times_seconds": 311316.0
        },
        {
            "index": 3474,
            "rank": 119,
            "rider": "Matej Mohoric",
            "rider no.": 46,
            "team": "Bahrain - Merida",
            "times": "86h 30' 43''",
            "gap": "+ 03h 33' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12823.0,
            "times_seconds": 311443.0
        },
        {
            "index": 3475,
            "rank": 120,
            "rider": "Frederik Backaert",
            "rider no.": 192,
            "team": "Wanty - Gobert Cycling Team",
            "times": "86h 31' 00''",
            "gap": "+ 03h 34' 00''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12840.0,
            "times_seconds": 311460.0
        },
        {
            "index": 3476,
            "rank": 121,
            "rider": "Fabien Grellier",
            "rider no.": 173,
            "team": "Total Direct Energie",
            "times": "86h 32' 12''",
            "gap": "+ 03h 35' 12''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 12912.0,
            "times_seconds": 311532.0
        },
        {
            "index": 3477,
            "rank": 122,
            "rider": "Kasper Asgreen",
            "rider no.": 22,
            "team": "Deceuninck - Quick - Step",
            "times": "86h 35' 18''",
            "gap": "+ 03h 38' 18''",
            "b": "B : 6''",
            "p": "P : 00' 10''",
            "stage": 21,
            "gap_seconds": 13098.0,
            "times_seconds": 311718.0
        },
        {
            "index": 3478,
            "rank": 123,
            "rider": "Florian Vachon",
            "rider no.": 218,
            "team": "Team Arkea - Samsic",
            "times": "86h 40' 22''",
            "gap": "+ 03h 43' 22''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13402.0,
            "times_seconds": 312022.0
        },
        {
            "index": 3479,
            "rank": 124,
            "rider": "Reinardt Janse Van Rensburg",
            "rider no.": 204,
            "team": "Team Dimension Data",
            "times": "86h 41' 10''",
            "gap": "+ 03h 44' 10''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13450.0,
            "times_seconds": 312070.0
        },
        {
            "index": 3480,
            "rank": 125,
            "rider": "Koen De Kort",
            "rider no.": 134,
            "team": "Trek - Segafredo",
            "times": "86h 41' 48''",
            "gap": "+ 03h 44' 48''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13488.0,
            "times_seconds": 312108.0
        },
        {
            "index": 3481,
            "rank": 126,
            "rider": "Matthieu Ladagnous",
            "rider no.": 55,
            "team": "Groupama - Fdj",
            "times": "86h 42' 11''",
            "gap": "+ 03h 45' 11''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13511.0,
            "times_seconds": 312131.0
        },
        {
            "index": 3482,
            "rank": 127,
            "rider": "Lukasz Wisniowski",
            "rider no.": 118,
            "team": "Ccc Team",
            "times": "86h 43' 34''",
            "gap": "+ 03h 46' 34''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13594.0,
            "times_seconds": 312214.0
        },
        {
            "index": 3483,
            "rank": 128,
            "rider": "Jos\u00e9 Gon\u00e7alves",
            "rider no.": 184,
            "team": "Team Katusha Alpecin",
            "times": "86h 44' 15''",
            "gap": "+ 03h 47' 15''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13635.0,
            "times_seconds": 312255.0
        },
        {
            "index": 3484,
            "rank": 129,
            "rider": "Stephen Cummings",
            "rider no.": 203,
            "team": "Team Dimension Data",
            "times": "86h 46' 45''",
            "gap": "+ 03h 49' 45''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13785.0,
            "times_seconds": 312405.0
        },
        {
            "index": 3485,
            "rank": 130,
            "rider": "Elia Viviani",
            "rider no.": 28,
            "team": "Deceuninck - Quick - Step",
            "times": "86h 49' 37''",
            "gap": "+ 03h 52' 37''",
            "b": "B : 26''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13957.0,
            "times_seconds": 312577.0
        },
        {
            "index": 3486,
            "rank": 131,
            "rider": "Anthony Turgis",
            "rider no.": 178,
            "team": "Total Direct Energie",
            "times": "86h 50' 11''",
            "gap": "+ 03h 53' 11''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 13991.0,
            "times_seconds": 312611.0
        },
        {
            "index": 3487,
            "rank": 132,
            "rider": "Caleb Ewan",
            "rider no.": 161,
            "team": "Lotto Soudal",
            "times": "86h 51' 34''",
            "gap": "+ 03h 54' 34''",
            "b": "B : 48''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14074.0,
            "times_seconds": 312694.0
        },
        {
            "index": 3488,
            "rank": 133,
            "rider": "Yves Lampaert",
            "rider no.": 24,
            "team": "Deceuninck - Quick - Step",
            "times": "86h 51' 37''",
            "gap": "+ 03h 54' 37''",
            "b": "-",
            "p": "P : 00' 10''",
            "stage": 21,
            "gap_seconds": 14077.0,
            "times_seconds": 312697.0
        },
        {
            "index": 3489,
            "rank": 134,
            "rider": "Chad Haga",
            "rider no.": 144,
            "team": "Team Sunweb",
            "times": "86h 51' 51''",
            "gap": "+ 03h 54' 51''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14091.0,
            "times_seconds": 312711.0
        },
        {
            "index": 3490,
            "rank": 135,
            "rider": "Tom Scully",
            "rider no.": 96,
            "team": "Ef Education First",
            "times": "86h 53' 52''",
            "gap": "+ 03h 56' 52''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14212.0,
            "times_seconds": 312832.0
        },
        {
            "index": 3491,
            "rank": 136,
            "rider": "Aime De Gendt",
            "rider no.": 193,
            "team": "Wanty - Gobert Cycling Team",
            "times": "86h 54' 05''",
            "gap": "+ 03h 57' 05''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14225.0,
            "times_seconds": 312845.0
        },
        {
            "index": 3492,
            "rank": 137,
            "rider": "Niccol\u00f2 Bonifazio",
            "rider no.": 172,
            "team": "Total Direct Energie",
            "times": "86h 56' 44''",
            "gap": "+ 03h 59' 44''",
            "b": "B : 4''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14384.0,
            "times_seconds": 313004.0
        },
        {
            "index": 3493,
            "rank": 138,
            "rider": "Kevin Van Melsen",
            "rider no.": 198,
            "team": "Wanty - Gobert Cycling Team",
            "times": "86h 57' 20''",
            "gap": "+ 04h 00' 20''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14420.0,
            "times_seconds": 313040.0
        },
        {
            "index": 3494,
            "rank": 139,
            "rider": "Alexander Kristoff",
            "rider no.": 126,
            "team": "Uae Team Emirates",
            "times": "86h 58' 05''",
            "gap": "+ 04h 01' 05''",
            "b": "B : 6''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14465.0,
            "times_seconds": 313085.0
        },
        {
            "index": 3495,
            "rank": 140,
            "rider": "Amund Jansen",
            "rider no.": 85,
            "team": "Team Jumbo - Visma",
            "times": "86h 59' 02''",
            "gap": "+ 04h 02' 02''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14522.0,
            "times_seconds": 313142.0
        },
        {
            "index": 3496,
            "rank": 141,
            "rider": "Marcus Burghardt",
            "rider no.": 13,
            "team": "Bora - Hansgrohe",
            "times": "86h 59' 18''",
            "gap": "+ 04h 02' 18''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14538.0,
            "times_seconds": 313158.0
        },
        {
            "index": 3497,
            "rank": 142,
            "rider": "Maxime Monfort",
            "rider no.": 167,
            "team": "Lotto Soudal",
            "times": "87h 00' 56''",
            "gap": "+ 04h 03' 56''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14636.0,
            "times_seconds": 313256.0
        },
        {
            "index": 3498,
            "rank": 143,
            "rider": "William Bonnet",
            "rider no.": 52,
            "team": "Groupama - Fdj",
            "times": "87h 02' 32''",
            "gap": "+ 04h 05' 32''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14732.0,
            "times_seconds": 313352.0
        },
        {
            "index": 3499,
            "rank": 144,
            "rider": "Andr\u00e9 Greipel",
            "rider no.": 215,
            "team": "Team Arkea - Samsic",
            "times": "87h 04' 00''",
            "gap": "+ 04h 07' 00''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14820.0,
            "times_seconds": 313440.0
        },
        {
            "index": 3500,
            "rank": 145,
            "rider": "Dylan Groenewegen",
            "rider no.": 84,
            "team": "Team Jumbo - Visma",
            "times": "87h 04' 10''",
            "gap": "+ 04h 07' 10''",
            "b": "B : 26''",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14830.0,
            "times_seconds": 313450.0
        },
        {
            "index": 3501,
            "rank": 146,
            "rider": "Michael Hepburn",
            "rider no.": 104,
            "team": "Mitchelton - Scott",
            "times": "87h 04' 32''",
            "gap": "+ 04h 07' 32''",
            "b": "-",
            "p": "P : 00' 20''",
            "stage": 21,
            "gap_seconds": 14852.0,
            "times_seconds": 313472.0
        },
        {
            "index": 3502,
            "rank": 147,
            "rider": "Lars Bak Ytting",
            "rider no.": 202,
            "team": "Team Dimension Data",
            "times": "87h 04' 48''",
            "gap": "+ 04h 07' 48''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14868.0,
            "times_seconds": 313488.0
        },
        {
            "index": 3503,
            "rank": 148,
            "rider": "Marco Haller",
            "rider no.": 185,
            "team": "Team Katusha Alpecin",
            "times": "87h 05' 17''",
            "gap": "+ 04h 08' 17''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 14897.0,
            "times_seconds": 313517.0
        },
        {
            "index": 3504,
            "rank": 149,
            "rider": "Maximiliano Richeze",
            "rider no.": 27,
            "team": "Deceuninck - Quick - Step",
            "times": "87h 07' 05''",
            "gap": "+ 04h 10' 05''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 15005.0,
            "times_seconds": 313625.0
        },
        {
            "index": 3505,
            "rank": 150,
            "rider": "Roger Kluge",
            "rider no.": 166,
            "team": "Lotto Soudal",
            "times": "87h 10' 43''",
            "gap": "+ 04h 13' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 15223.0,
            "times_seconds": 313843.0
        },
        {
            "index": 3506,
            "rank": 151,
            "rider": "Alex Dowsett",
            "rider no.": 183,
            "team": "Team Katusha Alpecin",
            "times": "87h 11' 39''",
            "gap": "+ 04h 14' 39''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 15279.0,
            "times_seconds": 313899.0
        },
        {
            "index": 3507,
            "rank": 152,
            "rider": "Michael M\u00f8rk\u00f8v",
            "rider no.": 26,
            "team": "Deceuninck - Quick - Step",
            "times": "87h 16' 33''",
            "gap": "+ 04h 19' 33''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 15573.0,
            "times_seconds": 314193.0
        },
        {
            "index": 3508,
            "rank": 153,
            "rider": "Jens Debusschere",
            "rider no.": 182,
            "team": "Team Katusha Alpecin",
            "times": "87h 26' 07''",
            "gap": "+ 04h 29' 07''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 16147.0,
            "times_seconds": 314767.0
        },
        {
            "index": 3509,
            "rank": 154,
            "rider": "Yoann Offredo",
            "rider no.": 196,
            "team": "Wanty - Gobert Cycling Team",
            "times": "87h 28' 43''",
            "gap": "+ 04h 31' 43''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 16303.0,
            "times_seconds": 314923.0
        },
        {
            "index": 3510,
            "rank": 155,
            "rider": "Sebastian Langeveld",
            "rider no.": 95,
            "team": "Ef Education First",
            "times": "87h 31' 23''",
            "gap": "+ 04h 34' 23''",
            "b": "-",
            "p": "-",
            "stage": 21,
            "gap_seconds": 16463.0,
            "times_seconds": 315083.0
        }
    ]
}<!-- WARNING: argument omitted, expansion size too large -->

Licensing[edit]


I, the copyright holder of this work, hereby publish it under the following licenses:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike Attribution-Share Alike 4.0 International, 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
GNU head Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.
You may select the license of your choice.

Taken by Falcorian

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current04:46, 6 August 2019Thumbnail for version as of 04:46, 6 August 20191,111 × 578 (66 KB)Falcorian (talk | contribs)== {{int:filedesc}} == {{Information |description={{en|1=The time behind the leader of the 2019 Tour de France for the top 5 riders and Thibaut Pinot: {{legend|#FFD700|Egan Bernal}} {{legend|#1F77B4|Geraint Thomas}} {{legend|#2CA02C|Steven Kruijswijk}} {{legend|#9467BD|Thibaut Pinot}} {{legend|#D62728|Emanuel Buchmann}} {{legend|#FF7F0E|Julian Alaphilippe}} }} |source={{own}} |author=Falcorian |date=2019-08-05 |other fields={{Igen|Matplotlib|+|code= #!/usr/bin/env python...

The following page uses this file:

Metadata