Skip to content

Instantly share code, notes, and snippets.

@elktamer
Last active March 4, 2018 23:30
Show Gist options
  • Save elktamer/e11a3fe551a9a01dbaa7e9dde8ebfa5f to your computer and use it in GitHub Desktop.
Save elktamer/e11a3fe551a9a01dbaa7e9dde8ebfa5f to your computer and use it in GitHub Desktop.
Zwift Race
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<html>
<head>
<style>
.axis--x path {
display: none;
}
</style>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<center><h2>
WBR 1 Lap Hilly Race Reverse (9.1km/5.6mi)</h2></center>
<svg width="960" height="500"></svg>
<script>
var mseconds=1000;
var svg = d3.select("svg"),
margin = {top: 20, right: 20, bottom: 30, left:40},
width = +svg.attr("width") - margin.left - margin.right,
height = +svg.attr("height") - margin.top - margin.bottom;
var transition = svg.transition().duration(750);
var x = d3.scaleLinear().rangeRound( [width,100]),
y = d3.scaleLinear().rangeRound([height, 0]);
var icon;
d3.xml("Bicicletta.svg").mimeType("image/svg+xml").get(function(error, frag) {
if (error) throw error;
var node = frag.getElementsByTagName("g")[0];
icon = function(){
return node.cloneNode(true);
}
});
var g = svg.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
y.domain([0, 1.0]);
g.append("g")
.attr("class", "axis axis--y")
.call(d3.axisLeft(y).ticks(10, "%"))
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.text("Frequency");
g.append("g")
.attr("class", "axis axis--x")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(x));
var loop_count = 1;
var t = d3.interval(function(elapsed) {
refresh();
if( loop_count > 190 ){
t.stop();
}
}, mseconds);
refresh();
var labels = [1.0, .75, .5, .25];
var legend = g.append("g")
.attr("font-family", "sans-serif")
.attr("font-size", 10)
.attr("text-anchor", "end")
.selectAll("g")
.data(labels)
.enter().append("g")
.attr("transform", function(d, i) { return "translate(0," + (i +1)* 20 + ")"; });
legend.append("rect")
.attr("x", 210)
.attr("width", 19)
.attr("height", 19)
.attr("fill", function(d,i){return d3.interpolateRdYlGn(1.0-d)});
legend.append("text")
.attr("x",205)
.attr("y", 9.5)
.attr("dy", "0.32em")
.text(function(d) {
return "HR: "+ d;
});
function refresh(){
d3.json("test"+loop_count+".json", function(error, result) {
loop_count++;
var data = result.sort(function(a, b){return b.status.distance - a.status.distance});
var xextent = d3.extent(data, function(d) {
return d.status.distance;
});
x.domain(xextent);
var edata = data.filter(function(d){
if( d.status.distance == xextent[1]|| d.status.distance == xextent[0])
return false;
if(d.id==412099||d.id == 476278) return false;
return true;
})
xextent = d3.extent(edata, function(d) {
return d.status.distance;
});
x.domain(xextent);
svg.select(".axis--x")
.call(d3.axisBottom(x));
var bar = g.selectAll(".bar")
.data(data, function(d) {
return d.id;
});
bar.enter().append(icon)
.attr("class", "icon");
bar.enter().append("text").attr("class", "label")
.attr("dy", ".35em")
.text(function(d) { return d.countryAlpha3; });
var label = g.selectAll(".label").data(data, function(d) {
return d.id;
});
var bicycle = g.selectAll(".icon").data(data, function(d) {
return d.id;
});
bicycle.exit().remove();
bicycle .transition().duration(mseconds)
.attr("transform",function(d){ return "translate("+(x(d.status.distance))+"," + y(effort(d)) + ")scale(-0.2, 0.2)";} )
.attr("fill", function(d){ return d3.interpolateRdYlGn(1.0-heartRate( d))})
.attr("stroke-width", function(d){
return 1;
});
label .transition().duration(mseconds)
.attr("transform", function(d){
var t = y(effort(d));
return "translate("+(x(d.status.distance))+"," + y(effort(d)) + ")rotate(-90)";
})
.style("text-anchor", "end");
label.exit().remove();
bar.exit().remove();
loop_count++;
});
}
function effort( rider ){
if(rider.ftp == 0 ) return .5;
var percent = (rider.status.power + rider.ftp/2)/ (rider.ftp*2)
if( percent > 0 )
return percent;
return .1;
}
function heartRate( rider ){
var hr = rider.status.heartrate
if( hr == 0 ) return .25;
var maxHR = 220-rider.age;
var minHR = 100;
var percent = (hr - minHR)/(maxHR-minHR);
return percent;
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62801905-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-62801905-3');
</script>
</body>
</html>
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106188577289","distance":0,"roadTime":373144,"laps":0,"speed":0,"roadPosition":10078545,"cadenceUHz":815225,"heartrate":0,"power":107,"heading":"4349743","lean":986236,"climbing":0,"time":0,"f19":134610965,"f20":33556303,"progress":0,"customisationId":"106188357552","justWatching":0,"calories":3336,"x":103933.3515625,"altitude":10027.5078125,"y":14961.6396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106188580518","distance":4040,"roadTime":523244,"laps":0,"speed":24588652,"roadPosition":10286568,"cadenceUHz":1452580,"heartrate":0,"power":199,"heading":"-1598409","lean":999463,"climbing":11,"time":460,"f19":393237,"f20":33554703,"progress":22784,"justWatching":0,"calories":18352,"x":-108047.5703125,"altitude":9207.8740234375,"y":85714.7890625,"watchingRiderId":121131,"groupId":0,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106188581395","distance":0,"roadTime":368033,"laps":0,"speed":0,"roadPosition":10154253,"cadenceUHz":933497,"heartrate":0,"power":79,"heading":"4344975","lean":968036,"climbing":0,"time":0,"f19":393236,"f20":33556303,"progress":0,"customisationId":"106188507653","justWatching":0,"calories":1579,"x":103989.8359375,"altitude":10027.5078125,"y":15054.822265625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106188581279","distance":0,"roadTime":373344,"laps":0,"speed":0,"roadPosition":9853889,"cadenceUHz":1283338,"heartrate":97,"power":159,"heading":"4439382","lean":1003310,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188453961","justWatching":0,"calories":4838,"x":103715.03125,"altitude":10027.5078125,"y":14908.5810546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106188584534","distance":0,"roadTime":372568,"laps":0,"speed":0,"roadPosition":9701104,"cadenceUHz":0,"heartrate":0,"power":0,"heading":"4442450","lean":988838,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188467266","justWatching":0,"calories":0,"x":103563.453125,"altitude":10027.5078125,"y":14885.9794921875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106188585324","distance":7677,"roadTime":255513,"laps":0,"speed":41808348,"roadPosition":10207872,"cadenceUHz":1599998,"heartrate":157,"power":189,"heading":"2952301","lean":1006497,"climbing":33,"time":818,"f19":393237,"f20":33559823,"progress":19200,"customisationId":"106187803002","justWatching":0,"calories":42242,"x":-70970.859375,"altitude":10784.662109375,"y":-50973.47265625,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106188585449","distance":23125,"roadTime":865058,"laps":0,"speed":34159788,"roadPosition":10254669,"cadenceUHz":1553612,"heartrate":150,"power":249,"heading":"5271244","lean":1003125,"climbing":242,"time":2568,"f19":393239,"f20":33554703,"progress":2304,"justWatching":0,"calories":164672,"x":-59544.0703125,"altitude":10104.197265625,"y":22259.462890625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106188585409","distance":0,"roadTime":373707,"laps":0,"speed":0,"roadPosition":9973786,"cadenceUHz":1291517,"heartrate":120,"power":134,"heading":"4295446","lean":1054620,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188387470","justWatching":0,"calories":6943,"x":103833.34375,"altitude":10027.5078125,"y":14929.162109375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106188583007","distance":0,"roadTime":367940,"laps":0,"speed":0,"roadPosition":10297948,"cadenceUHz":0,"heartrate":0,"power":0,"heading":"4565397","lean":955876,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188506528","justWatching":0,"calories":0,"x":104129.8671875,"altitude":10027.5078125,"y":15087.099609375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106188593550","distance":0,"roadTime":372911,"laps":0,"speed":0,"roadPosition":10386367,"cadenceUHz":1492703,"heartrate":136,"power":103,"heading":"4488119","lean":977974,"climbing":0,"time":0,"f19":33947671,"f20":33556303,"progress":0,"customisationId":"106188210483","justWatching":0,"calories":7680,"x":104232.84375,"altitude":10027.5078125,"y":15032.8193359375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106188593555","distance":0,"roadTime":373244,"laps":0,"speed":0,"roadPosition":10232057,"cadenceUHz":1606456,"heartrate":145,"power":187,"heading":"4627115","lean":959481,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188114400","justWatching":0,"calories":27515,"x":104083.375,"altitude":10027.5087890625,"y":14994.2783203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106188620673","distance":0,"roadTime":373144,"laps":0,"speed":0,"roadPosition":10078545,"cadenceUHz":714303,"heartrate":0,"power":52,"heading":"4349743","lean":986236,"climbing":0,"time":0,"f19":134610965,"f20":33556303,"progress":0,"customisationId":"106188357552","justWatching":0,"calories":5234,"x":103933.3515625,"altitude":10027.5078125,"y":14961.6396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106188620822","distance":4386,"roadTime":608223,"laps":0,"speed":33217186,"roadPosition":10286013,"cadenceUHz":1543349,"heartrate":0,"power":171,"heading":"-1781566","lean":1008503,"climbing":11,"time":500,"f19":393237,"f20":33554703,"progress":25344,"justWatching":0,"calories":20323,"x":-97652.46875,"altitude":9183.4638671875,"y":53083.11328125,"watchingRiderId":121131,"groupId":0,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106188620804","distance":0,"roadTime":368033,"laps":0,"speed":0,"roadPosition":10154253,"cadenceUHz":1032880,"heartrate":0,"power":100,"heading":"4344975","lean":968036,"climbing":0,"time":0,"f19":393236,"f20":33556303,"progress":0,"customisationId":"106188507653","justWatching":0,"calories":2550,"x":103989.8359375,"altitude":10027.5078125,"y":15054.822265625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106188620770","distance":0,"roadTime":373344,"laps":0,"speed":0,"roadPosition":9853889,"cadenceUHz":1191374,"heartrate":100,"power":80,"heading":"4439382","lean":1003310,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188453961","justWatching":0,"calories":5521,"x":103715.03125,"altitude":10027.5078125,"y":14908.5810546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106188618135","distance":0,"roadTime":372568,"laps":0,"speed":0,"roadPosition":9701104,"cadenceUHz":0,"heartrate":0,"power":0,"heading":"4442450","lean":988838,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188611595","justWatching":0,"calories":186,"x":103563.453125,"altitude":10027.5078125,"y":14885.9794921875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106188621563","distance":8125,"roadTime":764273,"laps":0,"speed":42856704,"roadPosition":10213514,"cadenceUHz":1633333,"heartrate":155,"power":207,"heading":"3718177","lean":1000000,"climbing":33,"time":854,"f19":393237,"f20":33559823,"progress":20224,"customisationId":"106187803002","justWatching":0,"calories":44178,"x":-43426.6484375,"altitude":9103.451171875,"y":-66932.4609375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106188621647","distance":23475,"roadTime":911512,"laps":0,"speed":35389256,"roadPosition":10266080,"cadenceUHz":1566753,"heartrate":154,"power":287,"heading":"3584861","lean":1010138,"climbing":245,"time":2604,"f19":393239,"f20":33554703,"progress":2048,"justWatching":0,"calories":167627,"x":-37442.01171875,"altitude":10778.654296875,"y":8169.20654296875,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106188621413","distance":0,"roadTime":373707,"laps":0,"speed":0,"roadPosition":9973786,"cadenceUHz":1336421,"heartrate":127,"power":151,"heading":"4295446","lean":1054620,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188387470","justWatching":0,"calories":8343,"x":103833.34375,"altitude":10027.5078125,"y":14929.162109375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106188621625","distance":0,"roadTime":367940,"laps":0,"speed":0,"roadPosition":10297948,"cadenceUHz":1536086,"heartrate":0,"power":95,"heading":"4565397","lean":955876,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188506528","justWatching":0,"calories":665,"x":104129.8671875,"altitude":10027.5078125,"y":15087.099609375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106188621549","distance":0,"roadTime":372911,"laps":0,"speed":0,"roadPosition":10386367,"cadenceUHz":1429668,"heartrate":128,"power":127,"heading":"4488119","lean":977974,"climbing":0,"time":0,"f19":33947671,"f20":33556303,"progress":0,"customisationId":"106188210483","justWatching":0,"calories":8359,"x":104232.84375,"altitude":10027.5078125,"y":15032.8193359375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106188622366","distance":0,"roadTime":373244,"laps":0,"speed":0,"roadPosition":10232057,"cadenceUHz":1585615,"heartrate":156,"power":332,"heading":"4627115","lean":959481,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188114400","justWatching":0,"calories":29474,"x":104083.375,"altitude":10027.5087890625,"y":14994.2783203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189070489","distance":4887,"roadTime":943093,"laps":0,"speed":51055652,"roadPosition":9859878,"cadenceUHz":1224238,"heartrate":0,"power":321,"heading":"3329533","lean":999987,"climbing":48,"time":401,"f19":134610961,"f20":16777487,"progress":26368,"customisationId":"106188357552","justWatching":0,"calories":33268,"x":-44123.6328125,"altitude":11093.9658203125,"y":2043.9334716796875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189070535","distance":4885,"roadTime":942572,"laps":0,"speed":48674956,"roadPosition":9748866,"cadenceUHz":1705880,"heartrate":0,"power":243,"heading":"3363752","lean":998535,"climbing":48,"time":401,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188642319","justWatching":0,"calories":36111,"x":-43493.44140625,"altitude":11081.37109375,"y":2021.697998046875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189070506","distance":4154,"roadTime":467671,"laps":0,"speed":41298836,"roadPosition":9758253,"cadenceUHz":1349237,"heartrate":0,"power":373,"heading":"9364914","lean":1001067,"climbing":47,"time":401,"f19":393232,"f20":16777231,"progress":24064,"customisationId":"106188507653","justWatching":0,"calories":33880,"x":-53004.5390625,"altitude":13008.490234375,"y":-4684.59765625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189070488","distance":4536,"roadTime":990660,"laps":0,"speed":44866156,"roadPosition":9785646,"cadenceUHz":1669663,"heartrate":146,"power":269,"heading":"167717","lean":1000000,"climbing":48,"time":401,"f19":393233,"f20":16777487,"progress":25088,"customisationId":"106188453961","justWatching":0,"calories":40835,"x":-52794.609375,"altitude":11810.927734375,"y":-42.819915771484375,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189070522","distance":4539,"roadTime":990744,"laps":0,"speed":45417520,"roadPosition":9881698,"cadenceUHz":1422200,"heartrate":0,"power":271,"heading":"158788","lean":1000000,"climbing":50,"time":401,"f19":393233,"f20":16777487,"progress":25088,"customisationId":"106188626638","justWatching":0,"calories":25636,"x":-52678.20703125,"altitude":11812.8154296875,"y":35.72161865234375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189071374","distance":9524,"roadTime":839150,"laps":0,"speed":31998156,"roadPosition":9721102,"cadenceUHz":1630426,"heartrate":128,"power":148,"heading":"2834219","lean":1014264,"climbing":44,"time":1025,"f19":393233,"f20":16783119,"progress":24320,"customisationId":"106187803002","justWatching":0,"calories":52279,"x":9816.171875,"altitude":11042.0087890625,"y":-139902.5,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189071515","distance":28344,"roadTime":996020,"laps":0,"speed":34234536,"roadPosition":10238549,"cadenceUHz":1553828,"heartrate":126,"power":189,"heading":"684184","lean":1002240,"climbing":286,"time":3054,"f19":17170455,"f20":33554447,"progress":512,"justWatching":0,"calories":200176,"x":97671.9921875,"altitude":9337.99609375,"y":459.8466491699219,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189071199","distance":4885,"roadTime":942617,"laps":0,"speed":51607704,"roadPosition":9836188,"cadenceUHz":1699999,"heartrate":163,"power":280,"heading":"3350483","lean":998979,"climbing":48,"time":401,"f19":393235,"f20":16777487,"progress":26368,"customisationId":"106188387470","justWatching":0,"calories":48716,"x":-43563.7421875,"altitude":11082.451171875,"y":1947.387939453125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189071991","distance":4895,"roadTime":942381,"laps":0,"speed":49181284,"roadPosition":9824500,"cadenceUHz":1303070,"heartrate":0,"power":205,"heading":"3348344","lean":999035,"climbing":48,"time":403,"f19":393235,"f20":16777487,"progress":26368,"customisationId":"106188506528","justWatching":0,"calories":30726,"x":-43289.265625,"altitude":11076.78125,"y":1901.177978515625,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189072078","distance":4895,"roadTime":942013,"laps":0,"speed":50474224,"roadPosition":9831027,"cadenceUHz":1409636,"heartrate":175,"power":288,"heading":"3339772","lean":999545,"climbing":48,"time":403,"f19":33947667,"f20":16777487,"progress":26368,"customisationId":"106188210483","justWatching":0,"calories":45001,"x":-42873.41015625,"altitude":11068.0458984375,"y":1807.876220703125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189072145","distance":4911,"roadTime":940760,"laps":0,"speed":48024604,"roadPosition":9777345,"cadenceUHz":1483333,"heartrate":164,"power":357,"heading":"3339197","lean":998955,"climbing":48,"time":403,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188114400","justWatching":0,"calories":72279,"x":-41500.14453125,"altitude":11039.1015625,"y":1591.8963623046875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189075466","distance":4959,"roadTime":935146,"laps":0,"speed":52683644,"roadPosition":9895095,"cadenceUHz":1152064,"heartrate":0,"power":167,"heading":"3045598","lean":982659,"climbing":48,"time":406,"f19":134610961,"f20":16777487,"progress":26368,"customisationId":"106188357552","justWatching":0,"calories":33653,"x":-37069.61328125,"altitude":10933.62109375,"y":1012.480224609375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189075318","distance":4949,"roadTime":935490,"laps":0,"speed":48613472,"roadPosition":9842762,"cadenceUHz":1701741,"heartrate":0,"power":286,"heading":"3090496","lean":982452,"climbing":48,"time":405,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188642319","justWatching":0,"calories":36459,"x":-37245.359375,"altitude":10938.595703125,"y":1049.5087890625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189075478","distance":4214,"roadTime":460664,"laps":0,"speed":45898960,"roadPosition":9770917,"cadenceUHz":986196,"heartrate":0,"power":150,"heading":"3339582","lean":1003479,"climbing":47,"time":405,"f19":393232,"f20":16777247,"progress":24576,"customisationId":"106188507653","justWatching":0,"calories":34230,"x":-47041.08203125,"altitude":12686.3203125,"y":-4923.34814453125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189076152","distance":4606,"roadTime":983881,"laps":0,"speed":44505684,"roadPosition":9755490,"cadenceUHz":1627302,"heartrate":146,"power":218,"heading":"223170","lean":1001262,"climbing":48,"time":406,"f19":393233,"f20":16777487,"progress":25344,"customisationId":"106188453961","justWatching":0,"calories":41228,"x":-59627.484375,"altitude":11674.365234375,"y":1201.0333251953125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189076122","distance":4611,"roadTime":983932,"laps":0,"speed":45875800,"roadPosition":9798438,"cadenceUHz":1456880,"heartrate":0,"power":176,"heading":"204310","lean":1005010,"climbing":50,"time":407,"f19":393233,"f20":16777487,"progress":25344,"customisationId":"106188626638","justWatching":0,"calories":25988,"x":-59579.71875,"altitude":11675.22265625,"y":1233.7894287109375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189076174","distance":9565,"roadTime":830916,"laps":0,"speed":28525846,"roadPosition":9705999,"cadenceUHz":1616667,"heartrate":127,"power":145,"heading":"3898189","lean":1009646,"climbing":45,"time":1030,"f19":393233,"f20":16783119,"progress":24576,"customisationId":"106187803002","justWatching":0,"calories":52480,"x":13533.974609375,"altitude":11246.7236328125,"y":-140963.75,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189076199","distance":28392,"roadTime":997932,"laps":0,"speed":36404476,"roadPosition":10214582,"cadenceUHz":1576949,"heartrate":128,"power":230,"heading":"615749","lean":996220,"climbing":286,"time":3059,"f19":17170455,"f20":33554447,"progress":512,"justWatching":0,"calories":200497,"x":93919.2109375,"altitude":9330.376953125,"y":3278.399658203125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189076804","distance":4966,"roadTime":931484,"laps":0,"speed":52845000,"roadPosition":9851697,"cadenceUHz":1667537,"heartrate":163,"power":290,"heading":"2626053","lean":971548,"climbing":48,"time":407,"f19":393235,"f20":16777487,"progress":26368,"customisationId":"106188387470","justWatching":0,"calories":49171,"x":-35597.1015625,"altitude":10894.220703125,"y":1500.6314697265625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189076981","distance":4964,"roadTime":933869,"laps":0,"speed":49919276,"roadPosition":9826597,"cadenceUHz":1314528,"heartrate":0,"power":189,"heading":"2905543","lean":979036,"climbing":48,"time":408,"f19":393235,"f20":16777487,"progress":26368,"customisationId":"106188506528","justWatching":0,"calories":31003,"x":-36498.8828125,"altitude":10917.271484375,"y":1179.8983154296875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189076925","distance":4963,"roadTime":933034,"laps":0,"speed":51472504,"roadPosition":9831928,"cadenceUHz":1410399,"heartrate":175,"power":233,"heading":"2810324","lean":976674,"climbing":48,"time":407,"f19":33947667,"f20":16777487,"progress":26368,"customisationId":"106188210483","justWatching":0,"calories":45354,"x":-36158.8359375,"altitude":10908.1875,"y":1272.6240234375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189076950","distance":4976,"roadTime":930323,"laps":0,"speed":49305300,"roadPosition":9867741,"cadenceUHz":1513498,"heartrate":164,"power":283,"heading":"2473893","lean":968192,"climbing":48,"time":407,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188114400","justWatching":0,"calories":72687,"x":-35239.66796875,"altitude":10885.94921875,"y":1720.2183837890625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189080276","distance":5026,"roadTime":917486,"laps":0,"speed":47488172,"roadPosition":9845500,"cadenceUHz":898407,"heartrate":0,"power":199,"heading":"914181","lean":987474,"climbing":48,"time":411,"f19":134610961,"f20":16777487,"progress":26624,"customisationId":"106188357552","justWatching":0,"calories":33867,"x":-35176.4609375,"altitude":10836.42578125,"y":5861.92041015625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189080273","distance":5017,"roadTime":917402,"laps":0,"speed":48919500,"roadPosition":9803633,"cadenceUHz":1706809,"heartrate":0,"power":259,"heading":"943442","lean":983336,"climbing":48,"time":410,"f19":393233,"f20":16777487,"progress":26624,"customisationId":"106188642319","justWatching":0,"calories":36847,"x":-35232.57421875,"altitude":10835.916015625,"y":5866.42724609375,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189080883","distance":4287,"roadTime":451065,"laps":0,"speed":50739744,"roadPosition":9869123,"cadenceUHz":933393,"heartrate":0,"power":150,"heading":"3115694","lean":993647,"climbing":47,"time":411,"f19":393232,"f20":16777247,"progress":24320,"customisationId":"106188507653","justWatching":0,"calories":34459,"x":-39889.6796875,"altitude":12112.05859375,"y":-6465.20556640625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189081120","distance":4668,"roadTime":966797,"laps":0,"speed":45257956,"roadPosition":9977468,"cadenceUHz":1675671,"heartrate":146,"power":265,"heading":"2257333","lean":1053147,"climbing":48,"time":411,"f19":393233,"f20":16777487,"progress":25088,"customisationId":"106188453961","justWatching":0,"calories":41548,"x":-63377.203125,"altitude":11530.03125,"y":4791.580078125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189081123","distance":4674,"roadTime":966274,"laps":0,"speed":45362400,"roadPosition":9989254,"cadenceUHz":1387602,"heartrate":0,"power":146,"heading":"2388397","lean":1042333,"climbing":50,"time":412,"f19":393233,"f20":16777487,"progress":25088,"customisationId":"106188626638","justWatching":0,"calories":26192,"x":-63278.6015625,"altitude":11526.6875,"y":4866.72021484375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189081168","distance":9601,"roadTime":824161,"laps":0,"speed":23567548,"roadPosition":9714770,"cadenceUHz":1620598,"heartrate":128,"power":160,"heading":"3929057","lean":987586,"climbing":46,"time":1034,"f19":393233,"f20":16783119,"progress":24576,"customisationId":"106187803002","justWatching":0,"calories":52698,"x":15948.4765625,"altitude":11554.8359375,"y":-143628.796875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189081001","distance":28440,"roadTime":999900,"laps":0,"speed":36263992,"roadPosition":10260282,"cadenceUHz":1575687,"heartrate":129,"power":222,"heading":"618456","lean":1000526,"climbing":286,"time":3063,"f19":17170455,"f20":33554447,"progress":768,"justWatching":0,"calories":200796,"x":89925.5703125,"altitude":9325.35546875,"y":6034.00048828125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189081008","distance":5028,"roadTime":915344,"laps":0,"speed":51926152,"roadPosition":9917575,"cadenceUHz":1666997,"heartrate":163,"power":294,"heading":"758285","lean":987946,"climbing":48,"time":411,"f19":393235,"f20":16777487,"progress":26880,"customisationId":"106188387470","justWatching":0,"calories":49493,"x":-35813.12890625,"altitude":10820.87890625,"y":6663.4716796875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189080996","distance":5019,"roadTime":918283,"laps":0,"speed":49834844,"roadPosition":9830629,"cadenceUHz":1292118,"heartrate":0,"power":236,"heading":"1003180","lean":981871,"climbing":48,"time":412,"f19":393235,"f20":16777487,"progress":26624,"customisationId":"106188506528","justWatching":0,"calories":31254,"x":-34986.93359375,"altitude":10840.8828125,"y":5566.6142578125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189081125","distance":5024,"roadTime":916488,"laps":0,"speed":52255436,"roadPosition":9841562,"cadenceUHz":1444135,"heartrate":175,"power":405,"heading":"840867","lean":984962,"climbing":48,"time":412,"f19":33947667,"f20":16777487,"progress":26624,"customisationId":"106188210483","justWatching":0,"calories":45736,"x":-35472.56640625,"altitude":10829.88671875,"y":6213.03955078125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189082752","distance":5056,"roadTime":911325,"laps":0,"speed":50114944,"roadPosition":9919356,"cadenceUHz":1516663,"heartrate":163,"power":335,"heading":"456760","lean":989325,"climbing":48,"time":413,"f19":393233,"f20":16777487,"progress":26880,"customisationId":"106188114400","justWatching":0,"calories":73237,"x":-37702.60546875,"altitude":10772.990234375,"y":7907.76953125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189085080","distance":5089,"roadTime":907869,"laps":0,"speed":48370272,"roadPosition":9885477,"cadenceUHz":1179855,"heartrate":0,"power":297,"heading":"227215","lean":994360,"climbing":48,"time":416,"f19":134610961,"f20":16777487,"progress":27136,"customisationId":"106188357552","justWatching":0,"calories":34198,"x":-40553.953125,"altitude":10709.5859375,"y":8822.0693359375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189085029","distance":5083,"roadTime":907667,"laps":0,"speed":49207936,"roadPosition":9931594,"cadenceUHz":1708801,"heartrate":0,"power":269,"heading":"275150","lean":999664,"climbing":48,"time":415,"f19":393233,"f20":16777487,"progress":27136,"customisationId":"106188642319","justWatching":0,"calories":37208,"x":-40746.02734375,"altitude":10705.3603515625,"y":8920.78515625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189085087","distance":4343,"roadTime":454906,"laps":0,"speed":45412736,"roadPosition":9791865,"cadenceUHz":923206,"heartrate":0,"power":146,"heading":"1801172","lean":983431,"climbing":48,"time":415,"f19":393232,"f20":16778319,"progress":24064,"customisationId":"106188507653","justWatching":0,"calories":34629,"x":-35021.453125,"altitude":12154.216796875,"y":-4705.93017578125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189085083","distance":4719,"roadTime":955611,"laps":0,"speed":45963652,"roadPosition":9836738,"cadenceUHz":1673703,"heartrate":145,"power":340,"heading":"3297746","lean":1001981,"climbing":48,"time":415,"f19":393233,"f20":16777487,"progress":25344,"customisationId":"106188453961","justWatching":0,"calories":41837,"x":-58570.01171875,"altitude":11396.99609375,"y":5372.65185546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189085123","distance":4724,"roadTime":955479,"laps":0,"speed":44661620,"roadPosition":9834882,"cadenceUHz":1380082,"heartrate":0,"power":152,"heading":"3301287","lean":1002754,"climbing":50,"time":416,"f19":393233,"f20":16777487,"progress":25344,"customisationId":"106188626638","justWatching":0,"calories":26379,"x":-58457.11328125,"altitude":11394.3671875,"y":5354.3583984375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189085206","distance":9626,"roadTime":817095,"laps":0,"speed":22277326,"roadPosition":9707028,"cadenceUHz":1616678,"heartrate":130,"power":153,"heading":"3173968","lean":978013,"climbing":47,"time":1038,"f19":393233,"f20":16783119,"progress":24576,"customisationId":"106187803002","justWatching":0,"calories":52871,"x":18164.87890625,"altitude":11698.9501953125,"y":-144630.90625,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189086807","distance":28498,"roadTime":1002591,"laps":0,"speed":36159692,"roadPosition":10264726,"cadenceUHz":1574218,"heartrate":130,"power":227,"heading":"738528","lean":1003996,"climbing":286,"time":3069,"f19":17170455,"f20":33554447,"progress":768,"justWatching":0,"calories":201150,"x":85322.953125,"altitude":9329.0654296875,"y":9609.189453125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189086801","distance":5109,"roadTime":905449,"laps":0,"speed":49077832,"roadPosition":9993862,"cadenceUHz":1681549,"heartrate":162,"power":312,"heading":"237431","lean":999667,"climbing":48,"time":417,"f19":393235,"f20":16777487,"progress":27392,"customisationId":"106188387470","justWatching":0,"calories":49961,"x":-43191.21875,"altitude":10655.66796875,"y":9572.2373046875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189086982","distance":5102,"roadTime":906341,"laps":0,"speed":50089908,"roadPosition":9829166,"cadenceUHz":1256608,"heartrate":0,"power":316,"heading":"230234","lean":998922,"climbing":48,"time":418,"f19":393235,"f20":16777487,"progress":27136,"customisationId":"106188506528","justWatching":0,"calories":31662,"x":-42194.26953125,"altitude":10676.330078125,"y":9174.7998046875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189086925","distance":5109,"roadTime":905490,"laps":0,"speed":51367268,"roadPosition":9834204,"cadenceUHz":1376568,"heartrate":176,"power":213,"heading":"218178","lean":999481,"climbing":48,"time":417,"f19":33947667,"f20":16777487,"progress":27392,"customisationId":"106188210483","justWatching":0,"calories":46181,"x":-43175.375,"altitude":10656.689453125,"y":9404.9091796875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189087550","distance":5124,"roadTime":904709,"laps":0,"speed":51399132,"roadPosition":9953326,"cadenceUHz":1516665,"heartrate":162,"power":283,"heading":"207470","lean":1000000,"climbing":48,"time":418,"f19":393233,"f20":16777487,"progress":27392,"customisationId":"106188114400","justWatching":0,"calories":73686,"x":-44092.75390625,"altitude":10638.0546875,"y":9727.50390625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189089265","distance":5147,"roadTime":903093,"laps":0,"speed":50186436,"roadPosition":9828194,"cadenceUHz":1154391,"heartrate":0,"power":201,"heading":"193981","lean":1000000,"climbing":48,"time":420,"f19":134610961,"f20":16777487,"progress":27648,"customisationId":"106188357552","justWatching":0,"calories":34504,"x":-46160.09765625,"altitude":10598.203125,"y":10029.2431640625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189089313","distance":5140,"roadTime":902930,"laps":0,"speed":50187572,"roadPosition":9982670,"cadenceUHz":1718868,"heartrate":0,"power":275,"heading":"159650","lean":1000000,"climbing":48,"time":419,"f19":393233,"f20":16777487,"progress":27648,"customisationId":"106188642319","justWatching":0,"calories":37522,"x":-46339.6640625,"altitude":10594.166015625,"y":10223.1328125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189090893","distance":4416,"roadTime":1001346,"laps":0,"speed":45151816,"roadPosition":9881647,"cadenceUHz":1011372,"heartrate":0,"power":186,"heading":"149011","lean":1000000,"climbing":48,"time":421,"f19":393232,"f20":16777487,"progress":24320,"customisationId":"106188507653","justWatching":0,"calories":34938,"x":-40324.58984375,"altitude":12033.9765625,"y":-1832.183349609375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189091089","distance":4796,"roadTime":948781,"laps":0,"speed":45627484,"roadPosition":9727293,"cadenceUHz":1683053,"heartrate":146,"power":246,"heading":"3437926","lean":1000327,"climbing":48,"time":421,"f19":393233,"f20":16777487,"progress":25856,"customisationId":"106188453961","justWatching":0,"calories":42253,"x":-51141.08984375,"altitude":11238.2265625,"y":3825.148681640625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189091111","distance":4798,"roadTime":948913,"laps":0,"speed":45042200,"roadPosition":9817690,"cadenceUHz":1387084,"heartrate":0,"power":203,"heading":"3357407","lean":1000000,"climbing":50,"time":422,"f19":393233,"f20":16777487,"progress":25856,"customisationId":"106188626638","justWatching":0,"calories":26644,"x":-51329.02734375,"altitude":11241.6611328125,"y":3777.43115234375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189091005","distance":9666,"roadTime":804778,"laps":0,"speed":26430344,"roadPosition":9726113,"cadenceUHz":1666357,"heartrate":134,"power":156,"heading":"2400337","lean":984565,"climbing":47,"time":1044,"f19":393233,"f20":16783119,"progress":24832,"customisationId":"106187803002","justWatching":0,"calories":53118,"x":21745.8515625,"altitude":11670.0224609375,"y":-143132.5,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189091011","distance":28541,"roadTime":5390,"laps":0,"speed":36809796,"roadPosition":10253225,"cadenceUHz":1579351,"heartrate":130,"power":232,"heading":"1331446","lean":1023500,"climbing":287,"time":3073,"f19":17170455,"f20":33554447,"progress":768,"justWatching":0,"calories":201411,"x":82876.28125,"altitude":9354.3427734375,"y":12997.6103515625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189091811","distance":5178,"roadTime":900300,"laps":0,"speed":49434772,"roadPosition":9935874,"cadenceUHz":1699992,"heartrate":162,"power":346,"heading":"181260","lean":1000000,"climbing":48,"time":422,"f19":393235,"f20":16777487,"progress":27904,"customisationId":"106188387470","justWatching":0,"calories":50439,"x":-49828.34375,"altitude":10526.94921875,"y":10865.765625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189091803","distance":5169,"roadTime":901113,"laps":0,"speed":50615336,"roadPosition":9830193,"cadenceUHz":1221582,"heartrate":0,"power":290,"heading":"194291","lean":1000000,"climbing":48,"time":422,"f19":393235,"f20":16777487,"progress":27648,"customisationId":"106188506528","justWatching":0,"calories":32044,"x":-48764.6171875,"altitude":10547.884765625,"y":10548.939453125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189091924","distance":5178,"roadTime":900216,"laps":0,"speed":48947084,"roadPosition":9830657,"cadenceUHz":1378148,"heartrate":176,"power":269,"heading":"192133","lean":1000000,"climbing":48,"time":422,"f19":33947667,"f20":16777487,"progress":27904,"customisationId":"106188210483","justWatching":0,"calories":46543,"x":-49962.9609375,"altitude":10524.7421875,"y":10785.029296875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189092550","distance":5194,"roadTime":899527,"laps":0,"speed":49413668,"roadPosition":9899610,"cadenceUHz":1368521,"heartrate":163,"power":304,"heading":"207118","lean":1000000,"climbing":48,"time":423,"f19":393233,"f20":16777487,"progress":27904,"customisationId":"106188114400","justWatching":0,"calories":74032,"x":-50867.05859375,"altitude":10506.994140625,"y":11033.8671875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189095069","distance":5226,"roadTime":897209,"laps":0,"speed":48629448,"roadPosition":9765069,"cadenceUHz":1029222,"heartrate":0,"power":184,"heading":"218547","lean":1000383,"climbing":48,"time":426,"f19":134610961,"f20":16777487,"progress":28160,"customisationId":"106188357552","justWatching":0,"calories":34837,"x":-53917.2421875,"altitude":10448.107421875,"y":11517.2529296875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189095835","distance":5233,"roadTime":896048,"laps":0,"speed":50372608,"roadPosition":9878525,"cadenceUHz":1721958,"heartrate":0,"power":254,"heading":"204546","lean":1000955,"climbing":48,"time":426,"f19":393233,"f20":16777487,"progress":28160,"customisationId":"106188642319","justWatching":0,"calories":38001,"x":-55337.98046875,"altitude":10419.48046875,"y":11941.2392578125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189095899","distance":4478,"roadTime":995925,"laps":0,"speed":43380412,"roadPosition":9826675,"cadenceUHz":1038091,"heartrate":0,"power":210,"heading":"149011","lean":1000000,"climbing":48,"time":426,"f19":393232,"f20":16777487,"progress":24832,"customisationId":"106188507653","justWatching":0,"calories":35196,"x":-46320.5078125,"altitude":11928.287109375,"y":-992.438232421875,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189095878","distance":4856,"roadTime":944076,"laps":0,"speed":45429948,"roadPosition":9844207,"cadenceUHz":1656940,"heartrate":146,"power":210,"heading":"3378278","lean":999632,"climbing":48,"time":426,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188453961","justWatching":0,"calories":42580,"x":-45297.19921875,"altitude":11118.2470703125,"y":2321.083251953125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189095911","distance":4859,"roadTime":944244,"laps":0,"speed":45278064,"roadPosition":9762463,"cadenceUHz":1387039,"heartrate":0,"power":134,"heading":"3361980","lean":1000000,"climbing":50,"time":426,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188626638","justWatching":0,"calories":26872,"x":-45482.72265625,"altitude":11122.4267578125,"y":2447.02783203125,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189096783","distance":9707,"roadTime":795140,"laps":0,"speed":23871054,"roadPosition":9719532,"cadenceUHz":1643395,"heartrate":137,"power":160,"heading":"2003699","lean":996530,"climbing":48,"time":1050,"f19":393233,"f20":16783119,"progress":24832,"customisationId":"106187803002","justWatching":0,"calories":53371,"x":23935.50390625,"altitude":11900.4375,"y":-139735.46875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189096617","distance":28598,"roadTime":10233,"laps":0,"speed":35588632,"roadPosition":10278761,"cadenceUHz":1568466,"heartrate":129,"power":306,"heading":"2430203","lean":1006146,"climbing":287,"time":3079,"f19":17170455,"f20":33554447,"progress":768,"justWatching":0,"calories":201746,"x":85110.6328125,"altitude":9458.3935546875,"y":17888.21484375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189096614","distance":5244,"roadTime":895270,"laps":0,"speed":50223052,"roadPosition":9852716,"cadenceUHz":1701281,"heartrate":162,"power":311,"heading":"215781","lean":1000934,"climbing":48,"time":427,"f19":393235,"f20":16777487,"progress":28160,"customisationId":"106188387470","justWatching":0,"calories":50899,"x":-56271.13671875,"altitude":10400.869140625,"y":12127.8876953125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189096601","distance":5237,"roadTime":895972,"laps":0,"speed":51738836,"roadPosition":9802496,"cadenceUHz":1200254,"heartrate":0,"power":269,"heading":"220841","lean":1001196,"climbing":48,"time":427,"f19":393235,"f20":16777487,"progress":28160,"customisationId":"106188506528","justWatching":0,"calories":32409,"x":-55446.04296875,"altitude":10417.6806640625,"y":11887.5009765625,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189096725","distance":5243,"roadTime":895330,"laps":0,"speed":48812684,"roadPosition":9773964,"cadenceUHz":1400376,"heartrate":175,"power":292,"heading":"228056","lean":1001787,"climbing":48,"time":427,"f19":33947667,"f20":16777487,"progress":28160,"customisationId":"106188210483","justWatching":0,"calories":46904,"x":-56219.50390625,"altitude":10402.251953125,"y":12034.953125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189097362","distance":5260,"roadTime":894439,"laps":0,"speed":49623328,"roadPosition":9821446,"cadenceUHz":1383332,"heartrate":163,"power":356,"heading":"227769","lean":1000986,"climbing":48,"time":428,"f19":393233,"f20":16777487,"progress":28416,"customisationId":"106188114400","justWatching":0,"calories":74445,"x":-57228.3984375,"altitude":10381.490234375,"y":12326.5048828125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189100689","distance":5303,"roadTime":890083,"laps":0,"speed":50178552,"roadPosition":9720261,"cadenceUHz":1110226,"heartrate":0,"power":188,"heading":"402459","lean":1008631,"climbing":48,"time":431,"f19":134610961,"f20":16777487,"progress":28416,"customisationId":"106188357552","justWatching":0,"calories":35186,"x":-61264.94921875,"altitude":10293.29296875,"y":13489.4658203125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189100832","distance":5301,"roadTime":889097,"laps":0,"speed":48169048,"roadPosition":9768891,"cadenceUHz":1700750,"heartrate":0,"power":208,"heading":"489072","lean":1011658,"climbing":48,"time":431,"f19":393233,"f20":16777487,"progress":28416,"customisationId":"106188642319","justWatching":0,"calories":38328,"x":-61863.47265625,"altitude":10277.337890625,"y":13839.3408203125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189100703","distance":4536,"roadTime":991332,"laps":0,"speed":44100976,"roadPosition":9763745,"cadenceUHz":1102824,"heartrate":0,"power":235,"heading":"164368","lean":1001528,"climbing":48,"time":431,"f19":393232,"f20":16777487,"progress":25088,"customisationId":"106188507653","justWatching":0,"calories":35493,"x":-51989.42578125,"altitude":11825.970703125,"y":-193.69012451171875,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189100725","distance":4916,"roadTime":938634,"laps":0,"speed":44041064,"roadPosition":9892602,"cadenceUHz":1644535,"heartrate":145,"power":200,"heading":"3288567","lean":997438,"climbing":48,"time":431,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188453961","justWatching":0,"calories":42839,"x":-39469.94921875,"altitude":10993.9287109375,"y":1141.59716796875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189100711","distance":4919,"roadTime":938886,"laps":0,"speed":45348004,"roadPosition":9841634,"cadenceUHz":1354507,"heartrate":0,"power":177,"heading":"3294391","lean":998433,"climbing":50,"time":431,"f19":393233,"f20":16777487,"progress":26368,"customisationId":"106188626638","justWatching":0,"calories":27080,"x":-39685.15234375,"altitude":10998.9677734375,"y":1222.93603515625,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189101423","distance":9737,"roadTime":787606,"laps":0,"speed":24997238,"roadPosition":9715699,"cadenceUHz":1633333,"heartrate":138,"power":156,"heading":"1888247","lean":995749,"climbing":49,"time":1055,"f19":393233,"f20":16783119,"progress":25088,"customisationId":"106187803002","justWatching":0,"calories":53576,"x":25064.44140625,"altitude":11961.20703125,"y":-136876.5,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189101622","distance":28647,"roadTime":13941,"laps":0,"speed":35020136,"roadPosition":10260865,"cadenceUHz":1563945,"heartrate":128,"power":204,"heading":"2581420","lean":998188,"climbing":288,"time":3084,"f19":17170455,"f20":33554447,"progress":768,"justWatching":0,"calories":202057,"x":89079.765625,"altitude":9563.53515625,"y":20743.15625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189101396","distance":5310,"roadTime":887870,"laps":0,"speed":49113176,"roadPosition":9795855,"cadenceUHz":1715712,"heartrate":163,"power":313,"heading":"578151","lean":1011029,"climbing":48,"time":432,"f19":393235,"f20":16777487,"progress":28416,"customisationId":"106188387470","justWatching":0,"calories":51316,"x":-62445.87890625,"altitude":10259.927734375,"y":14239.373046875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189101616","distance":5308,"roadTime":888583,"laps":0,"speed":49156768,"roadPosition":9790231,"cadenceUHz":1155886,"heartrate":0,"power":155,"heading":"548769","lean":1010722,"climbing":48,"time":432,"f19":393235,"f20":16777487,"progress":28416,"customisationId":"106188506528","justWatching":0,"calories":32638,"x":-62122.5390625,"altitude":10269.7080078125,"y":14019.935546875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189101541","distance":5309,"roadTime":888069,"laps":0,"speed":50236372,"roadPosition":9781369,"cadenceUHz":1402749,"heartrate":175,"power":266,"heading":"574397","lean":1007954,"climbing":48,"time":432,"f19":33947667,"f20":16777487,"progress":28416,"customisationId":"106188210483","justWatching":0,"calories":47291,"x":-62367.0390625,"altitude":10262.5546875,"y":14168.5361328125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189101555","distance":5319,"roadTime":887604,"laps":0,"speed":50252668,"roadPosition":9754234,"cadenceUHz":1383332,"heartrate":163,"power":268,"heading":"606724","lean":1011271,"climbing":48,"time":432,"f19":393233,"f20":16777487,"progress":28416,"customisationId":"106188114400","justWatching":0,"calories":74803,"x":-62581.9296875,"altitude":10256.4921875,"y":14283.283203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189105684","distance":5372,"roadTime":872618,"laps":0,"speed":48755952,"roadPosition":9783769,"cadenceUHz":1016474,"heartrate":0,"power":235,"heading":"2255187","lean":1000000,"climbing":48,"time":436,"f19":134610961,"f20":16777487,"progress":28672,"customisationId":"106188357552","justWatching":0,"calories":35453,"x":-62413.87890625,"altitude":10162.806640625,"y":18635.5859375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189105691","distance":5365,"roadTime":872067,"laps":0,"speed":46848200,"roadPosition":9768289,"cadenceUHz":1685199,"heartrate":0,"power":262,"heading":"2237715","lean":1000000,"climbing":48,"time":436,"f19":393233,"f20":16777487,"progress":28672,"customisationId":"106188642319","justWatching":0,"calories":38654,"x":-62266.953125,"altitude":10160.087890625,"y":18848.845703125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189105675","distance":4597,"roadTime":985939,"laps":0,"speed":43477200,"roadPosition":9769021,"cadenceUHz":1092595,"heartrate":0,"power":223,"heading":"194596","lean":1001734,"climbing":48,"time":436,"f19":393232,"f20":16777487,"progress":25344,"customisationId":"106188507653","justWatching":0,"calories":35812,"x":-57896.15234375,"altitude":11711.65234375,"y":839.6260375976562,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189105526","distance":4974,"roadTime":925825,"laps":0,"speed":43747440,"roadPosition":9803776,"cadenceUHz":1645175,"heartrate":146,"power":235,"heading":"1848016","lean":966329,"climbing":48,"time":436,"f19":393233,"f20":16777487,"progress":26624,"customisationId":"106188453961","justWatching":0,"calories":43153,"x":-34479.26953125,"altitude":10865.9765625,"y":2951.266357421875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189105717","distance":4982,"roadTime":925434,"laps":0,"speed":44669856,"roadPosition":9872075,"cadenceUHz":1339448,"heartrate":0,"power":161,"heading":"1804780","lean":967420,"climbing":50,"time":436,"f19":393233,"f20":16777487,"progress":26624,"customisationId":"106188626638","justWatching":0,"calories":27281,"x":-34381.97265625,"altitude":10864.8359375,"y":3055.797607421875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189105614","distance":9770,"roadTime":777633,"laps":0,"speed":31511816,"roadPosition":9747090,"cadenceUHz":1620478,"heartrate":138,"power":143,"heading":"1569318","lean":988573,"climbing":49,"time":1059,"f19":393233,"f20":16783119,"progress":25088,"customisationId":"106187803002","justWatching":0,"calories":53755,"x":25649.828125,"altitude":11720.55078125,"y":-133673.78125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189105593","distance":28684,"roadTime":17866,"laps":0,"speed":33045982,"roadPosition":10229595,"cadenceUHz":1544686,"heartrate":129,"power":146,"heading":"2137153","lean":958152,"climbing":288,"time":3088,"f19":17170455,"f20":33554511,"progress":768,"justWatching":0,"calories":202255,"x":91956.140625,"altitude":9667.494140625,"y":23117.041015625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189105629","distance":5367,"roadTime":871747,"laps":0,"speed":47886224,"roadPosition":9905520,"cadenceUHz":1702768,"heartrate":163,"power":314,"heading":"2221088","lean":1000000,"climbing":48,"time":436,"f19":393235,"f20":16777487,"progress":28928,"customisationId":"106188387470","justWatching":0,"calories":51691,"x":-62063.11328125,"altitude":10158.42578125,"y":18888.1796875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189105610","distance":5363,"roadTime":873120,"laps":0,"speed":49074628,"roadPosition":9778088,"cadenceUHz":1337634,"heartrate":0,"power":203,"heading":"2241798","lean":1002333,"climbing":48,"time":436,"f19":393235,"f20":16777487,"progress":28672,"customisationId":"106188506528","justWatching":0,"calories":32849,"x":-62558.9453125,"altitude":10165.1455078125,"y":18460.5859375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189107341","distance":5391,"roadTime":867625,"laps":0,"speed":50025104,"roadPosition":9838969,"cadenceUHz":1383309,"heartrate":176,"power":253,"heading":"2145076","lean":995283,"climbing":48,"time":438,"f19":33947667,"f20":16777487,"progress":28928,"customisationId":"106188210483","justWatching":0,"calories":47701,"x":-60815.7890625,"altitude":10130.3408203125,"y":20813.2109375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189107346","distance":5398,"roadTime":867632,"laps":0,"speed":47955780,"roadPosition":9809918,"cadenceUHz":1373840,"heartrate":163,"power":241,"heading":"2144767","lean":993107,"climbing":48,"time":438,"f19":393233,"f20":16777487,"progress":28928,"customisationId":"106188114400","justWatching":0,"calories":75267,"x":-60843.484375,"altitude":10130.412109375,"y":20823.533203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189109695","distance":5427,"roadTime":864283,"laps":0,"speed":49986288,"roadPosition":9850085,"cadenceUHz":1166308,"heartrate":0,"power":271,"heading":"2048188","lean":1003755,"climbing":48,"time":440,"f19":134610961,"f20":16777487,"progress":29184,"customisationId":"106188357552","justWatching":0,"calories":35737,"x":-59475.19140625,"altitude":10090.2265625,"y":23191.396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189109711","distance":5417,"roadTime":864241,"laps":0,"speed":47559608,"roadPosition":9841457,"cadenceUHz":1691575,"heartrate":0,"power":265,"heading":"2078409","lean":1000000,"climbing":48,"time":440,"f19":393233,"f20":16777487,"progress":29184,"customisationId":"106188642319","justWatching":0,"calories":38936,"x":-59460.0078125,"altitude":10089.5703125,"y":23235.130859375,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189109680","distance":4645,"roadTime":978239,"laps":0,"speed":43322920,"roadPosition":9770656,"cadenceUHz":1093773,"heartrate":0,"power":223,"heading":"541604","lean":1015650,"climbing":48,"time":440,"f19":393232,"f20":16777487,"progress":25088,"customisationId":"106188507653","justWatching":0,"calories":36067,"x":-62478.453125,"altitude":11601.955078125,"y":2255.353759765625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189109693","distance":5026,"roadTime":913390,"laps":0,"speed":44441540,"roadPosition":9843994,"cadenceUHz":1656628,"heartrate":146,"power":210,"heading":"575758","lean":985721,"climbing":48,"time":440,"f19":393233,"f20":16777487,"progress":26880,"customisationId":"106188453961","justWatching":0,"calories":43482,"x":-36670.88671875,"altitude":10801.037109375,"y":7242.63037109375,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189109711","distance":5031,"roadTime":913706,"laps":0,"speed":45450700,"roadPosition":9855779,"cadenceUHz":1381741,"heartrate":0,"power":342,"heading":"609283","lean":987436,"climbing":50,"time":440,"f19":393233,"f20":16777487,"progress":26880,"customisationId":"106188626638","justWatching":0,"calories":27558,"x":-36521.15234375,"altitude":10804.673828125,"y":7153.72021484375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189111415","distance":9823,"roadTime":762424,"laps":0,"speed":32833790,"roadPosition":9757372,"cadenceUHz":1647958,"heartrate":139,"power":135,"heading":"1028467","lean":998445,"climbing":49,"time":1065,"f19":393233,"f20":16783119,"progress":25344,"customisationId":"106187803002","justWatching":0,"calories":53993,"x":23863.78125,"altitude":11659.583984375,"y":-128754.109375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189111599","distance":28736,"roadTime":29789,"laps":0,"speed":29497840,"roadPosition":10246056,"cadenceUHz":1505021,"heartrate":130,"power":237,"heading":"286184","lean":994344,"climbing":289,"time":3094,"f19":17170455,"f20":33554511,"progress":768,"justWatching":0,"calories":202571,"x":90270.5703125,"altitude":9900.236328125,"y":26926.42578125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189111446","distance":5444,"roadTime":862010,"laps":0,"speed":47762732,"roadPosition":9923241,"cadenceUHz":1683344,"heartrate":163,"power":302,"heading":"2081879","lean":1000345,"climbing":48,"time":442,"f19":393235,"f20":16777487,"progress":29440,"customisationId":"106188387470","justWatching":0,"calories":52183,"x":-58180.01953125,"altitude":10054.55078125,"y":25298.58984375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189112201","distance":5452,"roadTime":861304,"laps":0,"speed":48027216,"roadPosition":9800261,"cadenceUHz":1342668,"heartrate":0,"power":199,"heading":"2098903","lean":1000000,"climbing":48,"time":443,"f19":393235,"f20":16777487,"progress":29440,"customisationId":"106188506528","justWatching":0,"calories":33210,"x":-57904.4453125,"altitude":10043.482421875,"y":26025.0234375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189112341","distance":5458,"roadTime":860595,"laps":0,"speed":47417680,"roadPosition":9821528,"cadenceUHz":1377852,"heartrate":175,"power":275,"heading":"2086404","lean":1000000,"climbing":48,"time":443,"f19":33947667,"f20":16777487,"progress":29440,"customisationId":"106188210483","justWatching":0,"calories":48038,"x":-57502.1796875,"altitude":10032.3515625,"y":26682.421875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189112351","distance":5464,"roadTime":860811,"laps":0,"speed":47098424,"roadPosition":9815017,"cadenceUHz":1366666,"heartrate":163,"power":329,"heading":"2080560","lean":1000000,"climbing":48,"time":443,"f19":393233,"f20":16777487,"progress":29440,"customisationId":"106188114400","justWatching":0,"calories":75671,"x":-57624.69921875,"altitude":10035.74609375,"y":26482.26171875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189115471","distance":5507,"roadTime":857027,"laps":0,"speed":48845344,"roadPosition":9707063,"cadenceUHz":1020476,"heartrate":0,"power":205,"heading":"2090558","lean":1000000,"climbing":48,"time":446,"f19":134610961,"f20":16777487,"progress":29696,"customisationId":"106188357552","justWatching":0,"calories":36069,"x":-55669.46484375,"altitude":9976.392578125,"y":30101.720703125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189115463","distance":5495,"roadTime":857230,"laps":0,"speed":48298616,"roadPosition":9806722,"cadenceUHz":1699109,"heartrate":0,"power":266,"heading":"2085450","lean":1000000,"climbing":48,"time":446,"f19":393233,"f20":16777487,"progress":29696,"customisationId":"106188642319","justWatching":0,"calories":39392,"x":-55692.41796875,"altitude":9979.568359375,"y":29861.736328125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189115686","distance":4717,"roadTime":957020,"laps":0,"speed":43361100,"roadPosition":9750113,"cadenceUHz":1095489,"heartrate":0,"power":236,"heading":"3261372","lean":1007877,"climbing":48,"time":446,"f19":393232,"f20":16777487,"progress":25344,"customisationId":"106188507653","justWatching":0,"calories":36450,"x":-59644.48046875,"altitude":11423.365234375,"y":5628.65185546875,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189115723","distance":5099,"roadTime":905183,"laps":0,"speed":44493504,"roadPosition":9983969,"cadenceUHz":1650213,"heartrate":145,"power":248,"heading":"167607","lean":996264,"climbing":48,"time":446,"f19":393233,"f20":16777487,"progress":27392,"customisationId":"106188453961","justWatching":0,"calories":43881,"x":-43509.05078125,"altitude":10649.427734375,"y":9632.2138671875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189115511","distance":5106,"roadTime":905223,"laps":0,"speed":45451344,"roadPosition":9889592,"cadenceUHz":1385636,"heartrate":0,"power":153,"heading":"236892","lean":998688,"climbing":50,"time":446,"f19":393233,"f20":16777487,"progress":27392,"customisationId":"106188626638","justWatching":0,"calories":27845,"x":-43481.61328125,"altitude":10650.3671875,"y":9529.5341796875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189116390","distance":9868,"roadTime":747595,"laps":0,"speed":32606876,"roadPosition":9755303,"cadenceUHz":1616737,"heartrate":139,"power":142,"heading":"857224","lean":986031,"climbing":49,"time":1070,"f19":393233,"f20":16783119,"progress":25344,"customisationId":"106187803002","justWatching":0,"calories":54199,"x":21449.61328125,"altitude":11665.5,"y":-124938.7578125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189116203","distance":28774,"roadTime":33857,"laps":0,"speed":30338974,"roadPosition":10239672,"cadenceUHz":1515197,"heartrate":130,"power":83,"heading":"159247","lean":1000000,"climbing":290,"time":3099,"f19":17170455,"f20":33554511,"progress":1024,"justWatching":0,"calories":202841,"x":86523.0234375,"altitude":9949.689453125,"y":27685.962890625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189116436","distance":5511,"roadTime":855954,"laps":0,"speed":49166972,"roadPosition":9770456,"cadenceUHz":1699997,"heartrate":162,"power":333,"heading":"2088962","lean":1000000,"climbing":48,"time":447,"f19":393235,"f20":16777487,"progress":29696,"customisationId":"106188387470","justWatching":0,"calories":52621,"x":-55032.48828125,"altitude":9959.5458984375,"y":31083.03125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189117024","distance":5516,"roadTime":855399,"laps":0,"speed":48556884,"roadPosition":9760858,"cadenceUHz":1378757,"heartrate":0,"power":213,"heading":"2124368","lean":1000000,"climbing":48,"time":448,"f19":393235,"f20":16777487,"progress":29952,"customisationId":"106188506528","justWatching":0,"calories":33487,"x":-54740.78125,"altitude":9950.849609375,"y":31609.96875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189117140","distance":5520,"roadTime":854906,"laps":0,"speed":46141232,"roadPosition":9802718,"cadenceUHz":1385622,"heartrate":175,"power":288,"heading":"2086404","lean":1000000,"climbing":48,"time":448,"f19":33947667,"f20":16777487,"progress":29952,"customisationId":"106188210483","justWatching":0,"calories":48396,"x":-54436.80078125,"altitude":9943.11328125,"y":32054.974609375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189117155","distance":5528,"roadTime":855051,"laps":0,"speed":48687892,"roadPosition":9746537,"cadenceUHz":1424482,"heartrate":163,"power":346,"heading":"2095636","lean":1000000,"climbing":48,"time":448,"f19":393233,"f20":16777487,"progress":29952,"customisationId":"106188114400","justWatching":0,"calories":76125,"x":-54564.34765625,"altitude":9945.375,"y":31945.767578125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106188625661","distance":0,"roadTime":373144,"laps":0,"speed":0,"roadPosition":10078545,"cadenceUHz":458571,"heartrate":0,"power":38,"heading":"4349743","lean":986236,"climbing":0,"time":0,"f19":134610965,"f20":33556303,"progress":0,"customisationId":"106188357552","justWatching":0,"calories":5305,"x":103933.3515625,"altitude":10027.5078125,"y":14961.6396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106188625639","distance":4432,"roadTime":615490,"laps":0,"speed":35100812,"roadPosition":10239115,"cadenceUHz":1563251,"heartrate":0,"power":183,"heading":"-1549519","lean":997715,"climbing":11,"time":505,"f19":393237,"f20":33554767,"progress":25856,"justWatching":0,"calories":20553,"x":-97573.546875,"altitude":9185.185546875,"y":48515.4375,"watchingRiderId":121131,"groupId":0,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106188625726","distance":0,"roadTime":368033,"laps":0,"speed":0,"roadPosition":10154253,"cadenceUHz":1006029,"heartrate":0,"power":94,"heading":"4344975","lean":968036,"climbing":0,"time":0,"f19":393236,"f20":33556303,"progress":0,"customisationId":"106188507653","justWatching":0,"calories":2686,"x":103989.8359375,"altitude":10027.5078125,"y":15054.822265625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106188625680","distance":0,"roadTime":373344,"laps":0,"speed":0,"roadPosition":9853889,"cadenceUHz":1229076,"heartrate":102,"power":83,"heading":"4439382","lean":1003310,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188453961","justWatching":0,"calories":5641,"x":103715.03125,"altitude":10027.5078125,"y":14908.5810546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106188624135","distance":0,"roadTime":372568,"laps":0,"speed":0,"roadPosition":9701104,"cadenceUHz":0,"heartrate":0,"power":0,"heading":"4442450","lean":988838,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188611595","justWatching":0,"calories":186,"x":103563.453125,"altitude":10027.5078125,"y":14885.9794921875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106188626329","distance":8182,"roadTime":782621,"laps":0,"speed":41640252,"roadPosition":10242352,"cadenceUHz":1632626,"heartrate":156,"power":190,"heading":"3980444","lean":1006697,"climbing":33,"time":859,"f19":393237,"f20":33559823,"progress":20480,"customisationId":"106187803002","justWatching":0,"calories":44438,"x":-39067.2265625,"altitude":9045.349609375,"y":-70473.0625,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106188626419","distance":23522,"roadTime":920456,"laps":0,"speed":35967380,"roadPosition":10256725,"cadenceUHz":1571350,"heartrate":154,"power":306,"heading":"4350224","lean":1019974,"climbing":246,"time":2609,"f19":393239,"f20":33554703,"progress":2048,"justWatching":0,"calories":168021,"x":-34183.61328125,"altitude":10851.4052734375,"y":4930.47021484375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106188626403","distance":0,"roadTime":373707,"laps":0,"speed":0,"roadPosition":9973786,"cadenceUHz":1322099,"heartrate":127,"power":141,"heading":"4295446","lean":1054620,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188387470","justWatching":0,"calories":8536,"x":103833.34375,"altitude":10027.5078125,"y":14929.162109375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106188626423","distance":0,"roadTime":367940,"laps":0,"speed":0,"roadPosition":10297948,"cadenceUHz":1560370,"heartrate":0,"power":94,"heading":"4565397","lean":955876,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188506528","justWatching":0,"calories":796,"x":104129.8671875,"altitude":10027.5078125,"y":15087.099609375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106188626549","distance":0,"roadTime":372911,"laps":0,"speed":0,"roadPosition":10386367,"cadenceUHz":1448488,"heartrate":131,"power":112,"heading":"4488119","lean":977974,"climbing":0,"time":0,"f19":33947671,"f20":33556303,"progress":0,"customisationId":"106188210483","justWatching":0,"calories":8539,"x":104232.84375,"altitude":10027.5078125,"y":15032.8193359375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106188626354","distance":0,"roadTime":373244,"laps":0,"speed":0,"roadPosition":10232057,"cadenceUHz":1580348,"heartrate":157,"power":294,"heading":"4627115","lean":959481,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188114400","justWatching":0,"calories":29821,"x":104083.375,"altitude":10027.5087890625,"y":14994.2783203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189120474","distance":5574,"roadTime":850974,"laps":0,"speed":47412404,"roadPosition":9690421,"cadenceUHz":1083297,"heartrate":0,"power":205,"heading":"2090558","lean":1000000,"climbing":48,"time":451,"f19":134610961,"f20":16777487,"progress":30208,"customisationId":"106188357552","justWatching":0,"calories":36381,"x":-52403.73046875,"altitude":9881.388671875,"y":35818.609375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189120491","distance":5562,"roadTime":851067,"laps":0,"speed":49207088,"roadPosition":9800917,"cadenceUHz":1708954,"heartrate":0,"power":257,"heading":"2089749","lean":1000000,"climbing":48,"time":451,"f19":393233,"f20":16777487,"progress":30208,"customisationId":"106188642319","justWatching":0,"calories":39763,"x":-52358.94921875,"altitude":9882.8671875,"y":35674.75,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189120490","distance":4775,"roadTime":951195,"laps":0,"speed":43441988,"roadPosition":9687651,"cadenceUHz":1113942,"heartrate":0,"power":242,"heading":"3367092","lean":1000000,"climbing":48,"time":451,"f19":393232,"f20":16777487,"progress":25600,"customisationId":"106188507653","justWatching":0,"calories":36771,"x":-54043.01953125,"altitude":11298.53515625,"y":4557.4404296875,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189120473","distance":5160,"roadTime":900644,"laps":0,"speed":45340048,"roadPosition":9820564,"cadenceUHz":1632284,"heartrate":145,"power":248,"heading":"193485","lean":1000000,"climbing":48,"time":451,"f19":393233,"f20":16777487,"progress":27904,"customisationId":"106188453961","justWatching":0,"calories":44246,"x":-49392.4375,"altitude":10535.794921875,"y":10662.5244140625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189121111","distance":5175,"roadTime":900060,"laps":0,"speed":43665384,"roadPosition":9881546,"cadenceUHz":1368045,"heartrate":0,"power":190,"heading":"209188","lean":1000000,"climbing":50,"time":452,"f19":393233,"f20":16777487,"progress":27904,"customisationId":"106188626638","justWatching":0,"calories":28106,"x":-50159.703125,"altitude":10520.759765625,"y":10875.6474609375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189121201","distance":9912,"roadTime":735103,"laps":0,"speed":32594730,"roadPosition":9756408,"cadenceUHz":1594955,"heartrate":139,"power":148,"heading":"412787","lean":997433,"climbing":49,"time":1074,"f19":393233,"f20":16783119,"progress":25600,"customisationId":"106187803002","justWatching":0,"calories":54399,"x":17829.58203125,"altitude":11665.5,"y":-122599.75,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189120408","distance":28809,"roadTime":36236,"laps":0,"speed":30208288,"roadPosition":10278245,"cadenceUHz":1512650,"heartrate":129,"power":196,"heading":"77835","lean":1000000,"climbing":290,"time":3103,"f19":17170455,"f20":33554447,"progress":1024,"justWatching":0,"calories":203028,"x":83019.796875,"altitude":9969.21484375,"y":28027.1484375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189121851","distance":5586,"roadTime":849205,"laps":0,"speed":49943716,"roadPosition":9747356,"cadenceUHz":1683512,"heartrate":162,"power":293,"heading":"2089066","lean":1000000,"climbing":48,"time":452,"f19":393235,"f20":16777487,"progress":30208,"customisationId":"106188387470","justWatching":0,"calories":53113,"x":-51396.6796875,"altitude":9853.6484375,"y":37456.9375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189122014","distance":5584,"roadTime":849258,"laps":0,"speed":49088216,"roadPosition":9852172,"cadenceUHz":1376891,"heartrate":0,"power":205,"heading":"2099691","lean":999999,"climbing":48,"time":453,"f19":393235,"f20":16777487,"progress":30208,"customisationId":"106188506528","justWatching":0,"calories":33782,"x":-51333.625,"altitude":9854.4580078125,"y":37356.27734375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189122140","distance":5585,"roadTime":849013,"laps":0,"speed":47037920,"roadPosition":9810258,"cadenceUHz":1381983,"heartrate":175,"power":265,"heading":"2086404","lean":1000000,"climbing":48,"time":453,"f19":33947667,"f20":16777487,"progress":30464,"customisationId":"106188210483","justWatching":0,"calories":48759,"x":-51237.5,"altitude":9850.6083984375,"y":37607.6953125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189121965","distance":5593,"roadTime":849223,"laps":0,"speed":48855212,"roadPosition":9813350,"cadenceUHz":1400000,"heartrate":163,"power":277,"heading":"2099984","lean":1000000,"climbing":48,"time":452,"f19":393233,"f20":16777487,"progress":30208,"customisationId":"106188114400","justWatching":0,"calories":76511,"x":-51348.6171875,"altitude":9853.91015625,"y":37408.11328125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189125281","distance":5636,"roadTime":845260,"laps":0,"speed":47016412,"roadPosition":9664678,"cadenceUHz":1114124,"heartrate":0,"power":267,"heading":"2090558","lean":1000000,"climbing":48,"time":456,"f19":134610961,"f20":16777487,"progress":30720,"customisationId":"106188357552","justWatching":0,"calories":36680,"x":-49331.11328125,"altitude":9791.73046875,"y":41217.67578125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189125263","distance":5628,"roadTime":845216,"laps":0,"speed":49556216,"roadPosition":9803998,"cadenceUHz":1712918,"heartrate":0,"power":244,"heading":"2089749","lean":1000000,"climbing":48,"time":455,"f19":17170449,"f20":16777487,"progress":30720,"customisationId":"106188642319","justWatching":0,"calories":40083,"x":-49186.41015625,"altitude":9791.0546875,"y":41189.8671875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189125295","distance":4834,"roadTime":946658,"laps":0,"speed":44790364,"roadPosition":9639315,"cadenceUHz":1135935,"heartrate":0,"power":252,"heading":"3398983","lean":998668,"climbing":48,"time":455,"f19":393232,"f20":16777487,"progress":26112,"customisationId":"106188507653","justWatching":0,"calories":37102,"x":-48457.78515625,"altitude":11183.80859375,"y":3270.242431640625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189126101","distance":5229,"roadTime":895348,"laps":0,"speed":43950856,"roadPosition":9726034,"cadenceUHz":1685012,"heartrate":145,"power":221,"heading":"219320","lean":1001965,"climbing":48,"time":456,"f19":393233,"f20":16777487,"progress":28160,"customisationId":"106188453961","justWatching":0,"calories":44583,"x":-56207.48828125,"altitude":10402.71875,"y":11982.9384765625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189126112","distance":5235,"roadTime":895444,"laps":0,"speed":43718596,"roadPosition":9762582,"cadenceUHz":1387533,"heartrate":0,"power":158,"heading":"224035","lean":1002004,"climbing":50,"time":457,"f19":393233,"f20":16777487,"progress":28160,"customisationId":"106188626638","justWatching":0,"calories":28359,"x":-56088.1796875,"altitude":10404.9521484375,"y":11992.7626953125,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189126167","distance":9957,"roadTime":721329,"laps":0,"speed":32184314,"roadPosition":9718817,"cadenceUHz":1617537,"heartrate":140,"power":160,"heading":"419728","lean":998694,"climbing":49,"time":1079,"f19":393233,"f20":16783119,"progress":25600,"customisationId":"106187803002","justWatching":0,"calories":54617,"x":13630.71875,"altitude":11698.478515625,"y":-120840.1953125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189126013","distance":28857,"roadTime":39161,"laps":0,"speed":30338724,"roadPosition":10259079,"cadenceUHz":1514164,"heartrate":127,"power":186,"heading":"23380","lean":998767,"climbing":290,"time":3108,"f19":17170455,"f20":33554447,"progress":1024,"justWatching":0,"calories":203288,"x":78312.15625,"altitude":9987.8115234375,"y":28316.009765625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189126041","distance":5642,"roadTime":844003,"laps":0,"speed":47762456,"roadPosition":9750958,"cadenceUHz":1654733,"heartrate":161,"power":265,"heading":"2097608","lean":1000000,"climbing":48,"time":456,"f19":393235,"f20":16777487,"progress":30720,"customisationId":"106188387470","justWatching":0,"calories":53436,"x":-48574.51171875,"altitude":9772,"y":42361.234375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189126013","distance":5639,"roadTime":844304,"laps":0,"speed":49394044,"roadPosition":9960336,"cadenceUHz":1393327,"heartrate":0,"power":218,"heading":"2098686","lean":999999,"climbing":48,"time":457,"f19":17170451,"f20":16777487,"progress":30720,"customisationId":"106188506528","justWatching":0,"calories":34016,"x":-48557.04296875,"altitude":9776.75,"y":41971.37890625,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189126140","distance":5638,"roadTime":844246,"laps":0,"speed":48008944,"roadPosition":9786528,"cadenceUHz":1404960,"heartrate":174,"power":275,"heading":"2116145","lean":998743,"climbing":48,"time":457,"f19":33947667,"f20":16777487,"progress":30720,"customisationId":"106188210483","justWatching":0,"calories":49064,"x":-48676.03515625,"altitude":9775.8203125,"y":42113.15234375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189126149","distance":5650,"roadTime":844034,"laps":0,"speed":48263228,"roadPosition":9858567,"cadenceUHz":1401076,"heartrate":163,"power":277,"heading":"2083375","lean":999074,"climbing":48,"time":457,"f19":17170449,"f20":16777487,"progress":30720,"customisationId":"106188114400","justWatching":0,"calories":76833,"x":-48498.4296875,"altitude":9772.4990234375,"y":42277.63671875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189130071","distance":5700,"roadTime":837209,"laps":0,"speed":49118444,"roadPosition":9810825,"cadenceUHz":1180381,"heartrate":0,"power":289,"heading":"1832813","lean":992979,"climbing":48,"time":461,"f19":134610961,"f20":16777487,"progress":30976,"customisationId":"106188357552","justWatching":0,"calories":37028,"x":-46595.453125,"altitude":9688.9921875,"y":46915.05859375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189130120","distance":5693,"roadTime":836958,"laps":0,"speed":47860852,"roadPosition":9847623,"cadenceUHz":1695324,"heartrate":0,"power":258,"heading":"1816988","lean":993761,"climbing":48,"time":460,"f19":17170449,"f20":16777487,"progress":30976,"customisationId":"106188642319","justWatching":0,"calories":40407,"x":-46530.53125,"altitude":9686.59375,"y":47030.34375,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189130103","distance":4894,"roadTime":941839,"laps":0,"speed":44763860,"roadPosition":9733044,"cadenceUHz":1075509,"heartrate":0,"power":215,"heading":"3381895","lean":998080,"climbing":48,"time":460,"f19":393232,"f20":16777487,"progress":26368,"customisationId":"106188507653","justWatching":0,"calories":37407,"x":-42659.07421875,"altitude":11063.9228515625,"y":1863.982177734375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189130260","distance":5280,"roadTime":890418,"laps":0,"speed":43408884,"roadPosition":9731940,"cadenceUHz":1593356,"heartrate":144,"power":242,"heading":"391799","lean":1007440,"climbing":48,"time":461,"f19":393233,"f20":16777487,"progress":28416,"customisationId":"106188453961","justWatching":0,"calories":44835,"x":-61021.09375,"altitude":10299.1328125,"y":13398.0068359375,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189130112","distance":5284,"roadTime":890862,"laps":0,"speed":44401812,"roadPosition":9729889,"cadenceUHz":1390331,"heartrate":0,"power":201,"heading":"400334","lean":1009880,"climbing":50,"time":461,"f19":393233,"f20":16777487,"progress":28416,"customisationId":"106188626638","justWatching":0,"calories":28569,"x":-60686.390625,"altitude":10307.0791015625,"y":13263.0576171875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189130181","distance":9994,"roadTime":708226,"laps":0,"speed":35220380,"roadPosition":9769700,"cadenceUHz":1616666,"heartrate":140,"power":160,"heading":"-290603","lean":992179,"climbing":49,"time":1083,"f19":393233,"f20":16783119,"progress":25856,"customisationId":"106187803002","justWatching":0,"calories":54795,"x":10087.91796875,"altitude":11513.8828125,"y":-120612.640625,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189130220","distance":28892,"roadTime":41640,"laps":0,"speed":31014842,"roadPosition":10253935,"cadenceUHz":1520843,"heartrate":127,"power":188,"heading":"-60932","lean":996521,"climbing":290,"time":3113,"f19":17170455,"f20":33554447,"progress":1024,"justWatching":0,"calories":203525,"x":74727.0078125,"altitude":10002.251953125,"y":28277.318359375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189131852","distance":5718,"roadTime":831426,"laps":0,"speed":45886296,"roadPosition":9863329,"cadenceUHz":1636922,"heartrate":160,"power":275,"heading":"1569478","lean":989042,"climbing":48,"time":462,"f19":393235,"f20":16777487,"progress":31232,"customisationId":"106188387470","justWatching":0,"calories":53872,"x":-46243.44140625,"altitude":9637.9580078125,"y":49408.9921875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189132016","distance":5720,"roadTime":830930,"laps":0,"speed":48978004,"roadPosition":10029517,"cadenceUHz":1422621,"heartrate":0,"power":230,"heading":"1487413","lean":985782,"climbing":48,"time":463,"f19":17170451,"f20":16777487,"progress":31232,"customisationId":"106188506528","justWatching":0,"calories":34384,"x":-46084.50390625,"altitude":9633.9990234375,"y":49599.62109375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189132140","distance":5719,"roadTime":830855,"laps":0,"speed":49270196,"roadPosition":9842031,"cadenceUHz":1387770,"heartrate":174,"power":214,"heading":"1549337","lean":988354,"climbing":48,"time":463,"f19":33947667,"f20":16777487,"progress":31232,"customisationId":"106188210483","justWatching":0,"calories":49509,"x":-46273.125,"altitude":9633.37890625,"y":49616.2578125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189131964","distance":5727,"roadTime":831139,"laps":0,"speed":47577052,"roadPosition":9885344,"cadenceUHz":1383378,"heartrate":163,"power":238,"heading":"1555715","lean":988834,"climbing":48,"time":462,"f19":17170449,"f20":16777487,"progress":31232,"customisationId":"106188114400","justWatching":0,"calories":77269,"x":-46224.9296875,"altitude":9635.658203125,"y":49515.09765625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189134281","distance":5758,"roadTime":821846,"laps":0,"speed":49068700,"roadPosition":9872966,"cadenceUHz":1019975,"heartrate":0,"power":120,"heading":"1191116","lean":994324,"climbing":48,"time":465,"f19":134610961,"f20":16777487,"progress":31488,"customisationId":"106188357552","justWatching":0,"calories":37261,"x":-46991.84765625,"altitude":9562.58984375,"y":52450.39453125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189134334","distance":5749,"roadTime":822088,"laps":0,"speed":48445336,"roadPosition":9931042,"cadenceUHz":1700861,"heartrate":0,"power":279,"heading":"1183452","lean":994117,"climbing":48,"time":464,"f19":17170449,"f20":16777487,"progress":31488,"customisationId":"106188642319","justWatching":0,"calories":40728,"x":-46907.6015625,"altitude":9564.583984375,"y":52403.10546875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189134304","distance":4946,"roadTime":936116,"laps":0,"speed":44150256,"roadPosition":9805401,"cadenceUHz":1098555,"heartrate":0,"power":232,"heading":"3135360","lean":986906,"climbing":48,"time":464,"f19":393232,"f20":16777487,"progress":26368,"customisationId":"106188507653","justWatching":0,"calories":37667,"x":-37592.5625,"altitude":10948.2822265625,"y":1075.8292236328125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189136143","distance":5351,"roadTime":872432,"laps":0,"speed":43323248,"roadPosition":9733278,"cadenceUHz":1616900,"heartrate":144,"power":274,"heading":"2240077","lean":1002427,"climbing":48,"time":466,"f19":393233,"f20":16777487,"progress":28672,"customisationId":"106188453961","justWatching":0,"calories":45227,"x":-62400.1484375,"altitude":10161.896484375,"y":18734.94140625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189136119","distance":5359,"roadTime":872618,"laps":0,"speed":44611592,"roadPosition":9751438,"cadenceUHz":1363821,"heartrate":0,"power":175,"heading":"2245141","lean":1000000,"climbing":50,"time":467,"f19":393233,"f20":16777487,"progress":28672,"customisationId":"106188626638","justWatching":0,"calories":28841,"x":-62439.8984375,"altitude":10162.8125,"y":18654.796875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189136177","distance":10059,"roadTime":686643,"laps":0,"speed":40531572,"roadPosition":9746138,"cadenceUHz":1652379,"heartrate":141,"power":159,"heading":"917960","lean":1004598,"climbing":49,"time":1089,"f19":393233,"f20":16783119,"progress":25856,"customisationId":"106187803002","justWatching":0,"calories":55054,"x":4215.49560546875,"altitude":11062.9453125,"y":-120105.71875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189136823","distance":28949,"roadTime":49742,"laps":0,"speed":31325478,"roadPosition":10246940,"cadenceUHz":1524110,"heartrate":128,"power":215,"heading":"-1722867","lean":985296,"climbing":290,"time":3119,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":203899,"x":71062.2109375,"altitude":10054.5439453125,"y":25251.27734375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189136840","distance":5782,"roadTime":812875,"laps":0,"speed":47695180,"roadPosition":9959454,"cadenceUHz":1682769,"heartrate":160,"power":313,"heading":"869853","lean":991226,"climbing":48,"time":467,"f19":393235,"f20":16777487,"progress":31744,"customisationId":"106188387470","justWatching":0,"calories":54282,"x":-48561.484375,"altitude":9481.21484375,"y":55153.25390625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189136805","distance":5785,"roadTime":812213,"laps":0,"speed":47967444,"roadPosition":10019424,"cadenceUHz":1421508,"heartrate":0,"power":243,"heading":"809135","lean":990311,"climbing":48,"time":467,"f19":17170451,"f20":16777487,"progress":31744,"customisationId":"106188506528","justWatching":0,"calories":34686,"x":-48694.9921875,"altitude":9474.87890625,"y":55383.6484375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189136894","distance":5784,"roadTime":811886,"laps":0,"speed":48444280,"roadPosition":9978648,"cadenceUHz":1353715,"heartrate":174,"power":253,"heading":"815259","lean":991846,"climbing":48,"time":467,"f19":33947667,"f20":16777487,"progress":31744,"customisationId":"106188210483","justWatching":0,"calories":49808,"x":-48814.12109375,"altitude":9471.740234375,"y":55447.76171875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189137568","distance":5802,"roadTime":810104,"laps":0,"speed":49316944,"roadPosition":10039471,"cadenceUHz":1416547,"heartrate":164,"power":378,"heading":"667238","lean":993844,"climbing":48,"time":468,"f19":17170449,"f20":16777487,"progress":31744,"customisationId":"106188114400","justWatching":0,"calories":77786,"x":-49285.98828125,"altitude":9454.685546875,"y":55978.58984375,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189140082","distance":5837,"roadTime":800427,"laps":0,"speed":48468036,"roadPosition":9825273,"cadenceUHz":865698,"heartrate":0,"power":160,"heading":"281598","lean":984016,"climbing":48,"time":471,"f19":134610961,"f20":16777487,"progress":32000,"customisationId":"106188357552","justWatching":0,"calories":37500,"x":-52541.94921875,"altitude":9364.3115234375,"y":57639.2265625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189140114","distance":5828,"roadTime":801344,"laps":0,"speed":49275736,"roadPosition":10005085,"cadenceUHz":1709614,"heartrate":0,"power":248,"heading":"347285","lean":986177,"climbing":48,"time":470,"f19":17170449,"f20":16777487,"progress":32000,"customisationId":"106188642319","justWatching":0,"calories":41142,"x":-52183.3984375,"altitude":9372.5,"y":57712.51953125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189140894","distance":5026,"roadTime":915344,"laps":0,"speed":43062436,"roadPosition":9864901,"cadenceUHz":1106007,"heartrate":0,"power":233,"heading":"769426","lean":986682,"climbing":48,"time":471,"f19":393232,"f20":16777487,"progress":26880,"customisationId":"106188507653","justWatching":0,"calories":38094,"x":-35848.8359375,"altitude":10820.861328125,"y":6624.75048828125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189140899","distance":5409,"roadTime":863939,"laps":0,"speed":44175204,"roadPosition":9768078,"cadenceUHz":1633327,"heartrate":144,"power":313,"heading":"2086081","lean":1001997,"climbing":48,"time":471,"f19":393233,"f20":16777487,"progress":29184,"customisationId":"106188453961","justWatching":0,"calories":45591,"x":-59360.12890625,"altitude":10084.8447265625,"y":23556.25,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189140912","distance":5418,"roadTime":863909,"laps":0,"speed":45192736,"roadPosition":9807009,"cadenceUHz":1396775,"heartrate":0,"power":262,"heading":"2081496","lean":1000001,"climbing":50,"time":471,"f19":393233,"f20":16777487,"progress":29184,"customisationId":"106188626638","justWatching":0,"calories":29114,"x":-59309.29296875,"altitude":10084.3515625,"y":23566.56640625,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189141520","distance":10118,"roadTime":671532,"laps":0,"speed":37982872,"roadPosition":9744042,"cadenceUHz":1649882,"heartrate":142,"power":152,"heading":"866716","lean":1009721,"climbing":49,"time":1095,"f19":393233,"f20":16783119,"progress":26112,"customisationId":"106187803002","justWatching":0,"calories":55288,"x":151.7589569091797,"altitude":11080.5,"y":-115956.46875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189141794","distance":28993,"roadTime":55953,"laps":0,"speed":31507828,"roadPosition":10248682,"cadenceUHz":1526395,"heartrate":129,"power":221,"heading":"-2109026","lean":992710,"climbing":290,"time":3124,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":204193,"x":72653.0234375,"altitude":10102.197265625,"y":21230.552734375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189141634","distance":5847,"roadTime":795472,"laps":0,"speed":50052760,"roadPosition":9973086,"cadenceUHz":1692922,"heartrate":161,"power":317,"heading":"-87484","lean":979572,"climbing":48,"time":472,"f19":393235,"f20":16777487,"progress":32000,"customisationId":"106188387470","justWatching":0,"calories":54724,"x":-54076.6328125,"altitude":9322.96875,"y":57938.71484375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189141820","distance":5851,"roadTime":794032,"laps":0,"speed":47194316,"roadPosition":10001800,"cadenceUHz":1456083,"heartrate":0,"power":229,"heading":"-192862","lean":983412,"climbing":48,"time":472,"f19":17170451,"f20":16777487,"progress":32000,"customisationId":"106188506528","justWatching":0,"calories":35031,"x":-54519.60546875,"altitude":9311.630859375,"y":57890.51171875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189141694","distance":5848,"roadTime":794376,"laps":0,"speed":47661968,"roadPosition":9981219,"cadenceUHz":1374325,"heartrate":175,"power":320,"heading":"-172094","lean":979510,"climbing":48,"time":472,"f19":33947667,"f20":16777487,"progress":32000,"customisationId":"106188210483","justWatching":0,"calories":50185,"x":-54409.6015625,"altitude":9314.349609375,"y":57893.11328125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189142557","distance":5870,"roadTime":790958,"laps":0,"speed":49001500,"roadPosition":9961518,"cadenceUHz":1416666,"heartrate":163,"power":326,"heading":"-368074","lean":987148,"climbing":48,"time":473,"f19":17170449,"f20":16777487,"progress":32256,"customisationId":"106188114400","justWatching":0,"calories":78244,"x":-55466.109375,"altitude":9287.248046875,"y":57542.2734375,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189145679","distance":5911,"roadTime":779779,"laps":0,"speed":47534100,"roadPosition":9858654,"cadenceUHz":936016,"heartrate":0,"power":193,"heading":"-876059","lean":998365,"climbing":48,"time":476,"f19":134610961,"f20":16777487,"progress":32512,"customisationId":"106188357552","justWatching":0,"calories":37742,"x":-58962.984375,"altitude":9207.13671875,"y":54763.79296875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189145696","distance":5904,"roadTime":780641,"laps":0,"speed":48933228,"roadPosition":10029185,"cadenceUHz":1706805,"heartrate":0,"power":249,"heading":"-841486","lean":993782,"climbing":48,"time":476,"f19":17170449,"f20":16777487,"progress":32512,"customisationId":"106188642319","justWatching":0,"calories":41537,"x":-58815.20703125,"altitude":9212.390625,"y":55171.8203125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189145699","distance":5083,"roadTime":907425,"laps":0,"speed":42953772,"roadPosition":10003617,"cadenceUHz":1116244,"heartrate":0,"power":237,"heading":"271126","lean":997884,"climbing":48,"time":476,"f19":393232,"f20":16777487,"progress":27136,"customisationId":"106188507653","justWatching":0,"calories":38407,"x":-40977.4609375,"altitude":10700.208984375,"y":9055.24609375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189145862","distance":5471,"roadTime":858297,"laps":0,"speed":45008256,"roadPosition":9708512,"cadenceUHz":1678701,"heartrate":144,"power":276,"heading":"2095088","lean":1000000,"climbing":48,"time":476,"f19":393233,"f20":16777487,"progress":29696,"customisationId":"106188453961","justWatching":0,"calories":46073,"x":-56354.84765625,"altitude":9996.298828125,"y":28906.009765625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189145912","distance":5481,"roadTime":858183,"laps":0,"speed":45221500,"roadPosition":9734459,"cadenceUHz":1437783,"heartrate":0,"power":183,"heading":"2085549","lean":998773,"climbing":50,"time":476,"f19":393233,"f20":16777487,"progress":29696,"customisationId":"106188626638","justWatching":0,"calories":29411,"x":-56271.51953125,"altitude":9994.529296875,"y":28998.951171875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189146521","distance":10170,"roadTime":657509,"laps":0,"speed":36472972,"roadPosition":9731094,"cadenceUHz":1646011,"heartrate":142,"power":149,"heading":"2233240","lean":1006561,"climbing":49,"time":1100,"f19":393233,"f20":16783119,"progress":26368,"customisationId":"106187803002","justWatching":0,"calories":55498,"x":343.54266357421875,"altitude":11080.5,"y":-111338.4453125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189146600","distance":29033,"roadTime":67691,"laps":0,"speed":29273468,"roadPosition":10258756,"cadenceUHz":1504074,"heartrate":131,"power":281,"heading":"2657276","lean":980501,"climbing":291,"time":3129,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":204509,"x":76173.5234375,"altitude":10310.1396484375,"y":20702.552734375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189146631","distance":5918,"roadTime":778024,"laps":0,"speed":51168632,"roadPosition":10016013,"cadenceUHz":1716308,"heartrate":162,"power":325,"heading":"-889794","lean":995580,"climbing":48,"time":477,"f19":393235,"f20":16777487,"progress":32512,"customisationId":"106188387470","justWatching":0,"calories":55169,"x":-59631,"altitude":9197.162109375,"y":54232.74609375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189146608","distance":5915,"roadTime":778399,"laps":0,"speed":48263196,"roadPosition":10009028,"cadenceUHz":1428873,"heartrate":0,"power":232,"heading":"-891779","lean":994444,"climbing":48,"time":477,"f19":17170451,"f20":16777487,"progress":32512,"customisationId":"106188506528","justWatching":0,"calories":35336,"x":-59507.97265625,"altitude":9199.21875,"y":54369.47265625,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189146694","distance":5915,"roadTime":777669,"laps":0,"speed":48517324,"roadPosition":10009556,"cadenceUHz":1395133,"heartrate":175,"power":328,"heading":"-927088","lean":997628,"climbing":48,"time":477,"f19":33947667,"f20":16777487,"progress":32512,"customisationId":"106188210483","justWatching":0,"calories":50635,"x":-59735.95703125,"altitude":9195.275390625,"y":54094.03515625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189146565","distance":5925,"roadTime":777916,"laps":0,"speed":49015292,"roadPosition":9997075,"cadenceUHz":1416666,"heartrate":163,"power":363,"heading":"-853441","lean":995915,"climbing":48,"time":477,"f19":17170449,"f20":16777487,"progress":32512,"customisationId":"106188114400","justWatching":0,"calories":78641,"x":-59649.57421875,"altitude":9196.5947265625,"y":54180.36328125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189150675","distance":5976,"roadTime":768686,"laps":0,"speed":46126164,"roadPosition":9874510,"cadenceUHz":1033329,"heartrate":0,"power":215,"heading":"-1225230","lean":1000000,"climbing":48,"time":481,"f19":134610961,"f20":16777487,"progress":33024,"customisationId":"106188357552","justWatching":0,"calories":38016,"x":-62160.86328125,"altitude":9174.482421875,"y":49282.57421875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189150715","distance":5972,"roadTime":768967,"laps":0,"speed":48709256,"roadPosition":10014690,"cadenceUHz":1705140,"heartrate":0,"power":244,"heading":"-1219531","lean":999581,"climbing":48,"time":481,"f19":17170449,"f20":16777487,"progress":33024,"customisationId":"106188642319","justWatching":0,"calories":41878,"x":-62217.87109375,"altitude":9174.41015625,"y":49523.00390625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189150704","distance":5143,"roadTime":902611,"laps":0,"speed":43053492,"roadPosition":9989757,"cadenceUHz":1145872,"heartrate":0,"power":262,"heading":"197827","lean":1000000,"climbing":48,"time":481,"f19":393232,"f20":16777487,"progress":27648,"customisationId":"106188507653","justWatching":0,"calories":38758,"x":-46752.88671875,"altitude":10586.119140625,"y":10313.349609375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189150746","distance":5530,"roadTime":852846,"laps":0,"speed":43632932,"roadPosition":9719207,"cadenceUHz":1679994,"heartrate":144,"power":290,"heading":"2146311","lean":1001674,"climbing":48,"time":481,"f19":393233,"f20":16777487,"progress":29952,"customisationId":"106188453961","justWatching":0,"calories":46368,"x":-53393.734375,"altitude":9910.7998046875,"y":34037.890625,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189150711","distance":5541,"roadTime":852786,"laps":0,"speed":44305156,"roadPosition":9712604,"cadenceUHz":1456491,"heartrate":0,"power":235,"heading":"2081602","lean":1000000,"climbing":50,"time":481,"f19":393233,"f20":16777487,"progress":29952,"customisationId":"106188626638","justWatching":0,"calories":29691,"x":-53366.3203125,"altitude":9909.8154296875,"y":34098.8515625,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189150755","distance":10211,"roadTime":645526,"laps":0,"speed":35379668,"roadPosition":9772175,"cadenceUHz":1649998,"heartrate":143,"power":141,"heading":"2088889","lean":1000000,"climbing":49,"time":1104,"f19":393233,"f20":16783119,"progress":26368,"customisationId":"106187803002","justWatching":0,"calories":55663,"x":2803.083984375,"altitude":11080.5,"y":-107943.953125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189150604","distance":29065,"roadTime":78508,"laps":0,"speed":28013174,"roadPosition":10257695,"cadenceUHz":1489364,"heartrate":133,"power":298,"heading":"1553051","lean":994400,"climbing":292,"time":3133,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":204787,"x":77360.6953125,"altitude":10471.8125,"y":23394.095703125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189150633","distance":5974,"roadTime":768835,"laps":0,"speed":49880624,"roadPosition":10016472,"cadenceUHz":1683178,"heartrate":162,"power":273,"heading":"-1227989","lean":1000000,"climbing":48,"time":481,"f19":393235,"f20":16777487,"progress":33024,"customisationId":"106188387470","justWatching":0,"calories":55508,"x":-62254.18359375,"altitude":9174.443359375,"y":49434.4140625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189150639","distance":5969,"roadTime":769183,"laps":0,"speed":48617756,"roadPosition":9933974,"cadenceUHz":1443102,"heartrate":0,"power":226,"heading":"-1228946","lean":1000000,"climbing":48,"time":481,"f19":17170451,"f20":16777487,"progress":33024,"customisationId":"106188506528","justWatching":0,"calories":35606,"x":-62086.06640625,"altitude":9174.353515625,"y":49639.5078125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189150693","distance":5969,"roadTime":768904,"laps":0,"speed":47803576,"roadPosition":9961940,"cadenceUHz":1404522,"heartrate":175,"power":259,"heading":"-1195717","lean":1000000,"climbing":48,"time":481,"f19":33947667,"f20":16777487,"progress":33024,"customisationId":"106188210483","justWatching":0,"calories":50935,"x":-62185.1171875,"altitude":9174.42578125,"y":49461.671875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189152551","distance":6005,"roadTime":765453,"laps":0,"speed":47861988,"roadPosition":9943392,"cadenceUHz":1403812,"heartrate":163,"power":358,"heading":"-1212045","lean":1000000,"climbing":48,"time":483,"f19":17170449,"f20":16777487,"progress":33024,"customisationId":"106188114400","justWatching":0,"calories":79241,"x":-63070.65625,"altitude":9175.318359375,"y":47129.6640625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189154678","distance":6027,"roadTime":761681,"laps":0,"speed":45997204,"roadPosition":9792120,"cadenceUHz":1080112,"heartrate":0,"power":205,"heading":"-1216787","lean":1000433,"climbing":48,"time":485,"f19":134610961,"f20":16777487,"progress":33280,"customisationId":"106188357552","justWatching":0,"calories":38273,"x":-63915.90234375,"altitude":9176.2919921875,"y":44534.734375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189154649","distance":6026,"roadTime":761688,"laps":0,"speed":48423556,"roadPosition":9933909,"cadenceUHz":1701646,"heartrate":0,"power":273,"heading":"-1212457","lean":1000000,"climbing":48,"time":485,"f19":17170449,"f20":16777487,"progress":33280,"customisationId":"106188642319","justWatching":0,"calories":42169,"x":-64046.9140625,"altitude":9176.291015625,"y":44589.06640625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189154675","distance":5191,"roadTime":899113,"laps":0,"speed":44070856,"roadPosition":9966239,"cadenceUHz":1135196,"heartrate":0,"power":250,"heading":"137393","lean":1000000,"climbing":48,"time":485,"f19":393232,"f20":16777487,"progress":27904,"customisationId":"106188507653","justWatching":0,"calories":39039,"x":-51401.234375,"altitude":10496.4267578125,"y":11208.03125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189154709","distance":5578,"roadTime":848499,"laps":0,"speed":43981424,"roadPosition":9790157,"cadenceUHz":1676222,"heartrate":144,"power":244,"heading":"2090931","lean":1000000,"climbing":48,"time":485,"f19":393233,"f20":16777487,"progress":30464,"customisationId":"106188453961","justWatching":0,"calories":46643,"x":-50977.1015625,"altitude":9842.5615234375,"y":38101.2421875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189154711","distance":5590,"roadTime":848309,"laps":0,"speed":43827840,"roadPosition":9664476,"cadenceUHz":1465001,"heartrate":0,"power":209,"heading":"2081602","lean":1000000,"climbing":50,"time":485,"f19":393233,"f20":16777487,"progress":30464,"customisationId":"106188626638","justWatching":0,"calories":29938,"x":-50983.0546875,"altitude":9839.587890625,"y":38343.13671875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189156527","distance":10267,"roadTime":630636,"laps":0,"speed":34322920,"roadPosition":9724367,"cadenceUHz":1634301,"heartrate":143,"power":155,"heading":"3142303","lean":1008094,"climbing":49,"time":1110,"f19":393233,"f20":16783119,"progress":26624,"customisationId":"106187803002","justWatching":0,"calories":55894,"x":7346.18212890625,"altitude":11080.5,"y":-105324.7421875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189156610","distance":29112,"roadTime":90375,"laps":0,"speed":29335874,"roadPosition":10284203,"cadenceUHz":1502787,"heartrate":134,"power":196,"heading":"1532038","lean":1000000,"climbing":292,"time":3139,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":205142,"x":77172.2578125,"altitude":10520.5,"y":28135.5625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189156426","distance":6051,"roadTime":758354,"laps":0,"speed":46197348,"roadPosition":9882565,"cadenceUHz":1641883,"heartrate":162,"power":290,"heading":"-1196348","lean":1000000,"climbing":48,"time":487,"f19":393235,"f20":16777487,"progress":33536,"customisationId":"106188387470","justWatching":0,"calories":55976,"x":-64870.984375,"altitude":9177.15234375,"y":42324.75390625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189156601","distance":6050,"roadTime":758334,"laps":0,"speed":48264248,"roadPosition":9816670,"cadenceUHz":1424402,"heartrate":0,"power":241,"heading":"-1206678","lean":1000000,"climbing":48,"time":487,"f19":17170451,"f20":16777487,"progress":33536,"customisationId":"106188506528","justWatching":0,"calories":35990,"x":-64814.59375,"altitude":9177.158203125,"y":42287.9296875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189157293","distance":6056,"roadTime":757144,"laps":0,"speed":47586836,"roadPosition":9897626,"cadenceUHz":1426096,"heartrate":175,"power":321,"heading":"-1235616","lean":999930,"climbing":48,"time":488,"f19":33947667,"f20":16777487,"progress":33536,"customisationId":"106188210483","justWatching":0,"calories":51474,"x":-65201.20703125,"altitude":9177.46484375,"y":41515.8515625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189157394","distance":6069,"roadTime":756751,"laps":0,"speed":47916132,"roadPosition":9857580,"cadenceUHz":1416443,"heartrate":164,"power":304,"heading":"-1203310","lean":1000000,"climbing":48,"time":488,"f19":17170449,"f20":16777487,"progress":33536,"customisationId":"106188114400","justWatching":0,"calories":79669,"x":-65266.77734375,"altitude":9177.56640625,"y":41236.3359375,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189160674","distance":6103,"roadTime":751386,"laps":0,"speed":44169852,"roadPosition":9775915,"cadenceUHz":1064600,"heartrate":0,"power":203,"heading":"-1190940","lean":1000000,"climbing":48,"time":491,"f19":134610961,"f20":16777487,"progress":33792,"customisationId":"106188357552","justWatching":0,"calories":38653,"x":-66594.234375,"altitude":9178.953125,"y":37591.76171875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189160706","distance":6105,"roadTime":750776,"laps":0,"speed":46030508,"roadPosition":9791380,"cadenceUHz":1679056,"heartrate":0,"power":256,"heading":"-1204933","lean":1000000,"climbing":48,"time":491,"f19":17170449,"f20":16777487,"progress":33792,"customisationId":"106188642319","justWatching":0,"calories":42617,"x":-66767.8984375,"altitude":9179.111328125,"y":37187.1953125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189160681","distance":5264,"roadTime":893230,"laps":0,"speed":44233184,"roadPosition":9882324,"cadenceUHz":1125888,"heartrate":0,"power":246,"heading":"237494","lean":1003171,"climbing":48,"time":491,"f19":393232,"f20":16777487,"progress":28416,"customisationId":"106188507653","justWatching":0,"calories":39441,"x":-58502.234375,"altitude":10354.509765625,"y":12723.484375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189160719","distance":5653,"roadTime":841472,"laps":0,"speed":44169112,"roadPosition":9830167,"cadenceUHz":1676633,"heartrate":144,"power":220,"heading":"1970730","lean":989101,"climbing":48,"time":491,"f19":393233,"f20":16777487,"progress":30976,"customisationId":"106188453961","justWatching":0,"calories":47043,"x":-47353.91796875,"altitude":9734.8330078125,"y":44474.33984375,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189160711","distance":5662,"roadTime":841237,"laps":0,"speed":43530220,"roadPosition":9625478,"cadenceUHz":1494329,"heartrate":0,"power":235,"heading":"1964320","lean":993316,"climbing":50,"time":491,"f19":393233,"f20":16777487,"progress":30976,"customisationId":"106188626638","justWatching":0,"calories":30314,"x":-47487.7265625,"altitude":9732.04296875,"y":44697.91796875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189161330","distance":10313,"roadTime":621453,"laps":0,"speed":34150980,"roadPosition":9725581,"cadenceUHz":1649995,"heartrate":144,"power":165,"heading":"3471491","lean":1006731,"climbing":49,"time":1115,"f19":393233,"f20":16783119,"progress":26624,"customisationId":"106187803002","justWatching":0,"calories":56114,"x":11821.30859375,"altitude":11080.5,"y":-106103.6171875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189161414","distance":29152,"roadTime":98954,"laps":0,"speed":28258134,"roadPosition":10281215,"cadenceUHz":1497775,"heartrate":133,"power":201,"heading":"1538929","lean":1001934,"climbing":293,"time":3144,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":205402,"x":77020.4609375,"altitude":10650.6962890625,"y":32083.84375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189161428","distance":6115,"roadTime":749775,"laps":0,"speed":45786912,"roadPosition":9852467,"cadenceUHz":1673912,"heartrate":163,"power":349,"heading":"-1196348","lean":1000000,"climbing":48,"time":492,"f19":393235,"f20":16777487,"progress":34048,"customisationId":"106188387470","justWatching":0,"calories":56412,"x":-67086.5859375,"altitude":9179.3701171875,"y":36535.17578125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189161432","distance":6113,"roadTime":749634,"laps":0,"speed":47334776,"roadPosition":9867897,"cadenceUHz":1386327,"heartrate":0,"power":215,"heading":"-1206678","lean":1000000,"climbing":48,"time":492,"f19":17170451,"f20":16777487,"progress":34048,"customisationId":"106188506528","justWatching":0,"calories":36280,"x":-67137.734375,"altitude":9179.40625,"y":36446.08203125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189162293","distance":6120,"roadTime":748148,"laps":0,"speed":45004600,"roadPosition":9823089,"cadenceUHz":1412470,"heartrate":175,"power":274,"heading":"-1203178","lean":1000956,"climbing":48,"time":493,"f19":33947667,"f20":16777487,"progress":34048,"customisationId":"106188210483","justWatching":0,"calories":51829,"x":-67430.53125,"altitude":9177.7900390625,"y":35605.31640625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189162138","distance":6132,"roadTime":747953,"laps":0,"speed":45775256,"roadPosition":9871063,"cadenceUHz":1383334,"heartrate":164,"power":338,"heading":"-1194050","lean":1000370,"climbing":48,"time":493,"f19":17170449,"f20":16777487,"progress":34048,"customisationId":"106188114400","justWatching":0,"calories":80020,"x":-67513.96875,"altitude":9177.447265625,"y":35529.03515625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189165462","distance":6162,"roadTime":740002,"laps":0,"speed":45532648,"roadPosition":9784613,"cadenceUHz":1143195,"heartrate":0,"power":304,"heading":"-1172199","lean":1000000,"climbing":48,"time":496,"f19":134610961,"f20":16777487,"progress":34304,"customisationId":"106188357552","justWatching":0,"calories":38958,"x":-68811.703125,"altitude":9153.462890625,"y":32122.72265625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189165478","distance":6165,"roadTime":738811,"laps":0,"speed":44515156,"roadPosition":9731241,"cadenceUHz":1660925,"heartrate":0,"power":268,"heading":"-1148414","lean":1000000,"climbing":48,"time":496,"f19":17170449,"f20":16777487,"progress":34304,"customisationId":"106188642319","justWatching":0,"calories":42968,"x":-68943.765625,"altitude":9149.005859375,"y":31673.6171875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189165484","distance":5324,"roadTime":883813,"laps":0,"speed":44441992,"roadPosition":9847862,"cadenceUHz":1113571,"heartrate":0,"power":235,"heading":"1097152","lean":1049861,"climbing":48,"time":495,"f19":393232,"f20":16777487,"progress":28416,"customisationId":"106188507653","justWatching":0,"calories":39766,"x":-63595.3984375,"altitude":10217.81640625,"y":15387.7265625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189166173","distance":5718,"roadTime":827295,"laps":0,"speed":43622160,"roadPosition":9896984,"cadenceUHz":1633718,"heartrate":144,"power":189,"heading":"1363837","lean":987990,"climbing":48,"time":496,"f19":393233,"f20":16777487,"progress":31232,"customisationId":"106188453961","justWatching":0,"calories":47367,"x":-46393.7421875,"altitude":9605.54296875,"y":50824.26171875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189165511","distance":5720,"roadTime":828704,"laps":0,"speed":43421668,"roadPosition":9757882,"cadenceUHz":1478338,"heartrate":0,"power":243,"heading":"1429588","lean":987832,"climbing":50,"time":496,"f19":393233,"f20":16777487,"progress":31232,"customisationId":"106188626638","justWatching":0,"calories":30600,"x":-46437.82421875,"altitude":9616.4501953125,"y":50342.609375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189166366","distance":10360,"roadTime":612760,"laps":0,"speed":33705788,"roadPosition":9726635,"cadenceUHz":1633343,"heartrate":145,"power":173,"heading":"3851722","lean":1000000,"climbing":49,"time":1120,"f19":393233,"f20":16783119,"progress":26880,"customisationId":"106187803002","justWatching":0,"calories":56349,"x":15755.10546875,"altitude":11106.072265625,"y":-108682.7421875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189166219","distance":29184,"roadTime":103116,"laps":0,"speed":20244826,"roadPosition":10303532,"cadenceUHz":1415107,"heartrate":132,"power":224,"heading":"1567745","lean":998567,"climbing":295,"time":3149,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":205659,"x":76996.4609375,"altitude":11078.634765625,"y":35322.78515625,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189166199","distance":6177,"roadTime":736321,"laps":0,"speed":46750360,"roadPosition":9803799,"cadenceUHz":1650433,"heartrate":163,"power":329,"heading":"-1137299","lean":1000000,"climbing":48,"time":496,"f19":393235,"f20":16777487,"progress":34304,"customisationId":"106188387470","justWatching":0,"calories":56871,"x":-69378.8828125,"altitude":9139.794921875,"y":30869.509765625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189167001","distance":6185,"roadTime":733155,"laps":0,"speed":44928340,"roadPosition":9775916,"cadenceUHz":1400653,"heartrate":0,"power":221,"heading":"-1108991","lean":1005058,"climbing":48,"time":498,"f19":17170451,"f20":16777487,"progress":34304,"customisationId":"106188506528","justWatching":0,"calories":36626,"x":-69821.328125,"altitude":9129.24609375,"y":29902.919921875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189167093","distance":6181,"roadTime":733581,"laps":0,"speed":45611708,"roadPosition":9774931,"cadenceUHz":1406661,"heartrate":175,"power":258,"heading":"-1094837","lean":1005484,"climbing":48,"time":498,"f19":33947667,"f20":16777487,"progress":34304,"customisationId":"106188210483","justWatching":0,"calories":52218,"x":-69757.078125,"altitude":9130.53515625,"y":30024.03515625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189166950","distance":6193,"roadTime":733451,"laps":0,"speed":45856496,"roadPosition":9764717,"cadenceUHz":1399994,"heartrate":163,"power":269,"heading":"-1106954","lean":1006804,"climbing":48,"time":497,"f19":17170449,"f20":16777487,"progress":34304,"customisationId":"106188114400","justWatching":0,"calories":80508,"x":-69766.90625,"altitude":9130.146484375,"y":29982.814453125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106188630497","distance":0,"roadTime":373144,"laps":0,"speed":0,"roadPosition":10078545,"cadenceUHz":449294,"heartrate":0,"power":48,"heading":"4349743","lean":986236,"climbing":0,"time":0,"f19":134610965,"f20":33556303,"progress":0,"customisationId":"106188357552","justWatching":0,"calories":5368,"x":103933.3515625,"altitude":10027.5078125,"y":14961.6396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106188630421","distance":4479,"roadTime":622669,"laps":0,"speed":36339796,"roadPosition":10252251,"cadenceUHz":1574393,"heartrate":0,"power":185,"heading":"-1574737","lean":1000000,"climbing":11,"time":510,"f19":393237,"f20":33554767,"progress":26112,"justWatching":0,"calories":20806,"x":-97566.5625,"altitude":9187.00390625,"y":43797.4609375,"watchingRiderId":121131,"groupId":0,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106188630530","distance":0,"roadTime":368033,"laps":0,"speed":0,"roadPosition":10154253,"cadenceUHz":997638,"heartrate":0,"power":91,"heading":"4344975","lean":968036,"climbing":0,"time":0,"f19":393236,"f20":33556303,"progress":0,"customisationId":"106188507653","justWatching":0,"calories":2812,"x":103989.8359375,"altitude":10027.5078125,"y":15054.822265625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106188630569","distance":0,"roadTime":373344,"laps":0,"speed":0,"roadPosition":9853889,"cadenceUHz":1285790,"heartrate":103,"power":155,"heading":"4439382","lean":1003310,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188453961","justWatching":0,"calories":5806,"x":103715.03125,"altitude":10027.5078125,"y":14908.5810546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106188630535","distance":0,"roadTime":372568,"laps":0,"speed":0,"roadPosition":9701104,"cadenceUHz":47378,"heartrate":0,"power":137,"heading":"4442450","lean":988838,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188626638","justWatching":0,"calories":218,"x":103563.453125,"altitude":10027.5078125,"y":14885.9794921875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106188630517","distance":8230,"roadTime":798208,"laps":0,"speed":40719008,"roadPosition":10245964,"cadenceUHz":1649991,"heartrate":156,"power":216,"heading":"4285960","lean":1003114,"climbing":33,"time":863,"f19":393237,"f20":33559823,"progress":20480,"customisationId":"106187803002","justWatching":0,"calories":44681,"x":-36559.41796875,"altitude":9024.626953125,"y":-74535.671875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106188630423","distance":23563,"roadTime":930935,"laps":0,"speed":37176804,"roadPosition":10176959,"cadenceUHz":1585198,"heartrate":153,"power":332,"heading":"5687464","lean":1023929,"climbing":246,"time":2613,"f19":393239,"f20":33554703,"progress":1792,"justWatching":0,"calories":168356,"x":-35246.50390625,"altitude":10892.5,"y":1334.205810546875,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106188630399","distance":0,"roadTime":373707,"laps":0,"speed":0,"roadPosition":9973786,"cadenceUHz":1333215,"heartrate":128,"power":138,"heading":"4295446","lean":1054620,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188387470","justWatching":0,"calories":8690,"x":103833.34375,"altitude":10027.5078125,"y":14929.162109375,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106188630422","distance":0,"roadTime":367940,"laps":0,"speed":0,"roadPosition":10297948,"cadenceUHz":1552918,"heartrate":0,"power":89,"heading":"4565397","lean":955876,"climbing":0,"time":0,"f19":393239,"f20":33556303,"progress":0,"customisationId":"106188506528","justWatching":0,"calories":897,"x":104129.8671875,"altitude":10027.5078125,"y":15087.099609375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106188632349","distance":0,"roadTime":372911,"laps":0,"speed":0,"roadPosition":10386367,"cadenceUHz":1479717,"heartrate":132,"power":113,"heading":"4488119","lean":977974,"climbing":0,"time":0,"f19":33947671,"f20":33556303,"progress":0,"customisationId":"106188210483","justWatching":0,"calories":8734,"x":104232.84375,"altitude":10027.5078125,"y":15032.8193359375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106188632360","distance":0,"roadTime":373244,"laps":0,"speed":0,"roadPosition":10232057,"cadenceUHz":1587132,"heartrate":160,"power":276,"heading":"4627115","lean":959481,"climbing":0,"time":0,"f19":393237,"f20":33556303,"progress":0,"customisationId":"106188114400","justWatching":0,"calories":30289,"x":104083.375,"altitude":10027.5087890625,"y":14994.2783203125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189170270","distance":6224,"roadTime":718295,"laps":0,"speed":46457944,"roadPosition":9793402,"cadenceUHz":1116764,"heartrate":0,"power":206,"heading":"-609375","lean":1028427,"climbing":48,"time":501,"f19":134610961,"f20":16777487,"progress":34560,"customisationId":"106188357552","justWatching":0,"calories":39302,"x":-72115.53125,"altitude":9132.15625,"y":26973.66015625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189169481","distance":6215,"roadTime":722667,"laps":0,"speed":44285396,"roadPosition":9637155,"cadenceUHz":1660186,"heartrate":0,"power":272,"heading":"-840028","lean":1010236,"climbing":48,"time":500,"f19":17170449,"f20":16777487,"progress":34560,"customisationId":"106188642319","justWatching":0,"calories":43272,"x":-71414.640625,"altitude":9120.841796875,"y":27425.025390625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189170291","distance":5383,"roadTime":868402,"laps":0,"speed":43465868,"roadPosition":9823563,"cadenceUHz":1121472,"heartrate":0,"power":245,"heading":"2121822","lean":994326,"climbing":48,"time":500,"f19":393232,"f20":16777487,"progress":28928,"customisationId":"106188507653","justWatching":0,"calories":40083,"x":-61079.12890625,"altitude":10136.7783203125,"y":20418.365234375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189171065","distance":5778,"roadTime":810134,"laps":0,"speed":43585780,"roadPosition":10013886,"cadenceUHz":1638550,"heartrate":144,"power":278,"heading":"691575","lean":991603,"climbing":48,"time":501,"f19":393233,"f20":16777487,"progress":31744,"customisationId":"106188453961","justWatching":0,"calories":47684,"x":-49293.69140625,"altitude":9454.9873046875,"y":55951.19921875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189171112","distance":5788,"roadTime":808906,"laps":0,"speed":44416736,"roadPosition":9810899,"cadenceUHz":1511377,"heartrate":0,"power":274,"heading":"680235","lean":991967,"climbing":50,"time":502,"f19":393233,"f20":16777487,"progress":31744,"customisationId":"106188626638","justWatching":0,"calories":30972,"x":-49796.8515625,"altitude":9443.158203125,"y":56111.3203125,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189171156","distance":10405,"roadTime":604378,"laps":0,"speed":33956112,"roadPosition":9764987,"cadenceUHz":1616675,"heartrate":145,"power":152,"heading":"3445155","lean":988789,"climbing":49,"time":1124,"f19":393233,"f20":16783119,"progress":26880,"customisationId":"106187803002","justWatching":0,"calories":56550,"x":19460.794921875,"altitude":11068.703125,"y":-111108.171875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189171225","distance":29208,"roadTime":106087,"laps":0,"speed":14175067,"roadPosition":10310808,"cadenceUHz":1348963,"heartrate":130,"power":263,"heading":"1478215","lean":993794,"climbing":297,"time":3154,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":205949,"x":76904.140625,"altitude":11435.111328125,"y":37666.76953125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189170981","distance":6238,"roadTime":711119,"laps":0,"speed":45084280,"roadPosition":9715259,"cadenceUHz":1664843,"heartrate":162,"power":298,"heading":"-195328","lean":1016477,"climbing":48,"time":501,"f19":393235,"f20":16777487,"progress":34816,"customisationId":"106188387470","justWatching":0,"calories":57284,"x":-73227.7578125,"altitude":9157.5732421875,"y":26429.400390625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189171207","distance":6237,"roadTime":710527,"laps":0,"speed":44964020,"roadPosition":9748596,"cadenceUHz":1536891,"heartrate":0,"power":317,"heading":"-199815","lean":1013966,"climbing":48,"time":502,"f19":17170451,"f20":16777487,"progress":34816,"customisationId":"106188506528","justWatching":0,"calories":36969,"x":-73353.1640625,"altitude":9159.69140625,"y":26441.62109375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189171093","distance":6232,"roadTime":712237,"laps":0,"speed":45260112,"roadPosition":9769439,"cadenceUHz":1401175,"heartrate":175,"power":312,"heading":"-262014","lean":1020618,"climbing":48,"time":502,"f19":33947667,"f20":16777487,"progress":34816,"customisationId":"106188210483","justWatching":0,"calories":52493,"x":-73028.90625,"altitude":9153.58203125,"y":26526.591796875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189171165","distance":6246,"roadTime":710862,"laps":0,"speed":44772400,"roadPosition":9726526,"cadenceUHz":1399999,"heartrate":163,"power":444,"heading":"-199689","lean":1014691,"climbing":48,"time":502,"f19":17170449,"f20":16777487,"progress":34816,"customisationId":"106188114400","justWatching":0,"calories":80855,"x":-73280.53125,"altitude":9158.4921875,"y":26431.392578125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189175277","distance":6287,"roadTime":698427,"laps":0,"speed":44474820,"roadPosition":9741264,"cadenceUHz":996682,"heartrate":0,"power":177,"heading":"44293","lean":999546,"climbing":48,"time":506,"f19":134610961,"f20":16777551,"progress":35072,"customisationId":"106188357552","justWatching":0,"calories":39565,"x":-78241.4140625,"altitude":9180.9462890625,"y":26349.419921875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189174537","distance":6276,"roadTime":700302,"laps":0,"speed":43816236,"roadPosition":9690728,"cadenceUHz":1652896,"heartrate":0,"power":270,"heading":"57558","lean":1000000,"climbing":48,"time":505,"f19":17170449,"f20":16777487,"progress":35072,"customisationId":"106188642319","justWatching":0,"calories":43661,"x":-77101.9296875,"altitude":9180.60546875,"y":26252.984375,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189175294","distance":5442,"roadTime":861716,"laps":0,"speed":42802092,"roadPosition":9774910,"cadenceUHz":1106581,"heartrate":0,"power":231,"heading":"2098630","lean":1000000,"climbing":48,"time":505,"f19":393232,"f20":16777487,"progress":29440,"customisationId":"106188507653","justWatching":0,"calories":40414,"x":-58149.515625,"altitude":10049.9404296875,"y":25649.408203125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189175261","distance":5830,"roadTime":795939,"laps":0,"speed":45619352,"roadPosition":9963996,"cadenceUHz":1663878,"heartrate":144,"power":230,"heading":"-79046","lean":978532,"climbing":48,"time":506,"f19":393233,"f20":16777487,"progress":32000,"customisationId":"106188453961","justWatching":0,"calories":47995,"x":-53935.8203125,"altitude":9326.6318359375,"y":57944.296875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189175312","distance":5841,"roadTime":793669,"laps":0,"speed":44914364,"roadPosition":9816778,"cadenceUHz":1536356,"heartrate":0,"power":202,"heading":"-217251","lean":983649,"climbing":50,"time":506,"f19":393233,"f20":16777487,"progress":32256,"customisationId":"106188626638","justWatching":0,"calories":31254,"x":-54587.578125,"altitude":9308.705078125,"y":57684.88671875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189175344","distance":10446,"roadTime":595963,"laps":0,"speed":37822356,"roadPosition":9778303,"cadenceUHz":1682988,"heartrate":145,"power":165,"heading":"3114378","lean":995730,"climbing":49,"time":1129,"f19":393233,"f20":16783119,"progress":27136,"customisationId":"106187803002","justWatching":0,"calories":56733,"x":23566.5078125,"altitude":10799.4921875,"y":-111580.0234375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189175195","distance":29223,"roadTime":108267,"laps":0,"speed":12697213,"roadPosition":10329307,"cadenceUHz":1322173,"heartrate":129,"power":284,"heading":"1375123","lean":989750,"climbing":298,"time":3158,"f19":33947671,"f20":33554447,"progress":1024,"justWatching":0,"calories":206241,"x":76701.6953125,"altitude":11681.724609375,"y":39130.68359375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189175196","distance":6290,"roadTime":698312,"laps":0,"speed":43395872,"roadPosition":9574913,"cadenceUHz":1633333,"heartrate":162,"power":318,"heading":"37681","lean":1000000,"climbing":48,"time":505,"f19":393235,"f20":16777551,"progress":35072,"customisationId":"106188387470","justWatching":0,"calories":57644,"x":-78316.890625,"altitude":9180.966796875,"y":26185.97265625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189177016","distance":6311,"roadTime":694627,"laps":0,"speed":45765096,"roadPosition":9537620,"cadenceUHz":1471258,"heartrate":0,"power":273,"heading":"36486","lean":1000000,"climbing":48,"time":508,"f19":17170451,"f20":16777551,"progress":35328,"customisationId":"106188506528","justWatching":0,"calories":37451,"x":-80561.2109375,"altitude":9181.63671875,"y":26238.96875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189177093","distance":6307,"roadTime":694895,"laps":0,"speed":45030252,"roadPosition":9733627,"cadenceUHz":1406867,"heartrate":174,"power":269,"heading":"48831","lean":999999,"climbing":48,"time":508,"f19":33947667,"f20":16777551,"progress":35328,"customisationId":"106188210483","justWatching":0,"calories":52986,"x":-80390.6953125,"altitude":9181.587890625,"y":26428.271484375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189176954","distance":6318,"roadTime":695069,"laps":0,"speed":45271092,"roadPosition":9628435,"cadenceUHz":1400026,"heartrate":163,"power":352,"heading":"27047","lean":1000000,"climbing":48,"time":507,"f19":17170449,"f20":16777551,"progress":35328,"customisationId":"106188114400","justWatching":0,"calories":81348,"x":-80288.9609375,"altitude":9181.556640625,"y":26318.900390625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189179275","distance":6336,"roadTime":690448,"laps":0,"speed":43508996,"roadPosition":9739257,"cadenceUHz":1013952,"heartrate":0,"power":200,"heading":"40360","lean":1000000,"climbing":48,"time":510,"f19":134610961,"f20":16777551,"progress":35328,"customisationId":"106188357552","justWatching":0,"calories":39774,"x":-83096.875,"altitude":9182.396484375,"y":26542.8125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189179246","distance":6334,"roadTime":690709,"laps":0,"speed":44676964,"roadPosition":9787088,"cadenceUHz":1662437,"heartrate":0,"power":286,"heading":"63396","lean":999535,"climbing":48,"time":509,"f19":17170449,"f20":16777551,"progress":35328,"customisationId":"106188642319","justWatching":0,"calories":44033,"x":-82936.25,"altitude":9182.349609375,"y":26584.21875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189179298","distance":5490,"roadTime":857358,"laps":0,"speed":42462196,"roadPosition":9804760,"cadenceUHz":1120432,"heartrate":0,"power":242,"heading":"2098630","lean":1000000,"climbing":48,"time":509,"f19":393232,"f20":16777487,"progress":29696,"customisationId":"106188507653","justWatching":0,"calories":40681,"x":-55762.79296875,"altitude":9981.556640625,"y":29743.1953125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189181108","distance":5905,"roadTime":777097,"laps":0,"speed":47278156,"roadPosition":9992015,"cadenceUHz":1517314,"heartrate":144,"power":309,"heading":"-875998","lean":996022,"climbing":48,"time":511,"f19":393233,"f20":16777487,"progress":32512,"customisationId":"106188453961","justWatching":0,"calories":48404,"x":-59899.01171875,"altitude":9192.3310546875,"y":53861.10546875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189181112","distance":5913,"roadTime":776009,"laps":0,"speed":44255148,"roadPosition":9994578,"cadenceUHz":1519919,"heartrate":0,"power":212,"heading":"-910650","lean":995805,"climbing":50,"time":512,"f19":393233,"f20":16777487,"progress":32512,"customisationId":"106188626638","justWatching":0,"calories":31613,"x":-60234.28125,"altitude":9187.04296875,"y":53424.9765625,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189179337","distance":10490,"roadTime":587510,"laps":0,"speed":38586044,"roadPosition":9786013,"cadenceUHz":1683332,"heartrate":145,"power":169,"heading":"2888261","lean":990953,"climbing":49,"time":1133,"f19":393233,"f20":16783119,"progress":27136,"customisationId":"106187803002","justWatching":0,"calories":56916,"x":27845.4375,"altitude":10692.8486328125,"y":-111071.1171875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189181801","distance":29246,"roadTime":112690,"laps":0,"speed":14165726,"roadPosition":10332363,"cadenceUHz":1342083,"heartrate":131,"power":280,"heading":"1082416","lean":995877,"climbing":300,"time":3164,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":206729,"x":75860.015625,"altitude":12020.458984375,"y":41251.546875,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189181798","distance":6371,"roadTime":685428,"laps":0,"speed":44930560,"roadPosition":9714660,"cadenceUHz":1649997,"heartrate":163,"power":336,"heading":"42437","lean":1000000,"climbing":48,"time":512,"f19":393235,"f20":16777551,"progress":35584,"customisationId":"106188387470","justWatching":0,"calories":58261,"x":-86153.0390625,"altitude":9183.30859375,"y":26641.189453125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189181807","distance":6371,"roadTime":684904,"laps":0,"speed":44296536,"roadPosition":9605594,"cadenceUHz":1402484,"heartrate":0,"power":228,"heading":"36486","lean":1000000,"climbing":48,"time":512,"f19":17170451,"f20":16777551,"progress":35584,"customisationId":"106188506528","justWatching":0,"calories":37752,"x":-86476.0390625,"altitude":9183.404296875,"y":26545.03125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189181892","distance":6366,"roadTime":685230,"laps":0,"speed":43930348,"roadPosition":9769037,"cadenceUHz":1394787,"heartrate":173,"power":266,"heading":"45754","lean":1000000,"climbing":48,"time":512,"f19":33947667,"f20":16777551,"progress":35584,"customisationId":"106188210483","justWatching":0,"calories":53311,"x":-86272.90625,"altitude":9183.345703125,"y":26700.435546875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189182567","distance":6389,"roadTime":683574,"laps":0,"speed":45325744,"roadPosition":9539224,"cadenceUHz":1416665,"heartrate":164,"power":191,"heading":"32330","lean":1000000,"climbing":48,"time":513,"f19":17170449,"f20":16777551,"progress":35840,"customisationId":"106188114400","justWatching":0,"calories":81920,"x":-87288,"altitude":9183.6455078125,"y":26511.28515625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189185276","distance":6409,"roadTime":678197,"laps":0,"speed":45002104,"roadPosition":9727944,"cadenceUHz":1167302,"heartrate":0,"power":253,"heading":"91683","lean":1003186,"climbing":48,"time":516,"f19":134610961,"f20":16777551,"progress":35840,"customisationId":"106188357552","justWatching":0,"calories":40194,"x":-90358.7578125,"altitude":9185.626953125,"y":26870.591796875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189185235","distance":6408,"roadTime":678606,"laps":0,"speed":44312028,"roadPosition":9791895,"cadenceUHz":1657965,"heartrate":0,"power":293,"heading":"77101","lean":1004992,"climbing":48,"time":515,"f19":17170449,"f20":16777551,"progress":35840,"customisationId":"106188642319","justWatching":0,"calories":44513,"x":-90178.9140625,"altitude":9185.21875,"y":26912.41796875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189185905","distance":5567,"roadTime":850225,"laps":0,"speed":42095116,"roadPosition":9853621,"cadenceUHz":1122806,"heartrate":0,"power":243,"heading":"2098630","lean":1000000,"climbing":48,"time":516,"f19":393232,"f20":16777487,"progress":30208,"customisationId":"106188507653","justWatching":0,"calories":41124,"x":-51856.54296875,"altitude":9869.638671875,"y":36443.3203125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189186074","distance":5972,"roadTime":766709,"laps":0,"speed":47746416,"roadPosition":9961126,"cadenceUHz":1541594,"heartrate":145,"power":252,"heading":"-1216111","lean":1000433,"climbing":48,"time":516,"f19":393233,"f20":16777487,"progress":33024,"customisationId":"106188453961","justWatching":0,"calories":48889,"x":-62758.50390625,"altitude":9174.9931640625,"y":47982.6328125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189185912","distance":5971,"roadTime":767020,"laps":0,"speed":42894412,"roadPosition":9978016,"cadenceUHz":1497688,"heartrate":0,"power":212,"heading":"-1208587","lean":1000002,"climbing":50,"time":516,"f19":393233,"f20":16777487,"progress":33024,"customisationId":"106188626638","justWatching":0,"calories":31909,"x":-62692.9921875,"altitude":9174.9130859375,"y":48198.0234375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189186709","distance":10561,"roadTime":574652,"laps":0,"speed":31741664,"roadPosition":9719182,"cadenceUHz":1683332,"heartrate":145,"power":189,"heading":"3044533","lean":1010060,"climbing":51,"time":1140,"f19":393233,"f20":16783183,"progress":27392,"customisationId":"106187803002","justWatching":0,"calories":57293,"x":34602.65234375,"altitude":11076.0107421875,"y":-108852.1171875,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189186806","distance":29268,"roadTime":117289,"laps":0,"speed":19050710,"roadPosition":10308704,"cadenceUHz":1391073,"heartrate":132,"power":290,"heading":"597178","lean":961083,"climbing":301,"time":3169,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":207057,"x":74532.0234375,"altitude":12191.595703125,"y":43062.58984375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189186776","distance":6433,"roadTime":672812,"laps":0,"speed":45961468,"roadPosition":9677781,"cadenceUHz":1678718,"heartrate":163,"power":360,"heading":"129623","lean":1002708,"climbing":48,"time":517,"f19":393235,"f20":16777487,"progress":36096,"customisationId":"106188387470","justWatching":0,"calories":58725,"x":-92365.8125,"altitude":9193.365234375,"y":27075.4140625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189186805","distance":6431,"roadTime":672476,"laps":0,"speed":42876888,"roadPosition":9534794,"cadenceUHz":1416323,"heartrate":0,"power":273,"heading":"130964","lean":1002720,"climbing":48,"time":517,"f19":17170451,"f20":16777487,"progress":36096,"customisationId":"106188506528","justWatching":0,"calories":38099,"x":-92498.390625,"altitude":9193.951171875,"y":26950.216796875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189186693","distance":6425,"roadTime":673623,"laps":0,"speed":44132756,"roadPosition":9732357,"cadenceUHz":1390634,"heartrate":174,"power":259,"heading":"122438","lean":1001619,"climbing":48,"time":517,"f19":33947667,"f20":16777487,"progress":36096,"customisationId":"106188210483","justWatching":0,"calories":53662,"x":-92087.2265625,"altitude":9191.9921875,"y":27091.765625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189187542","distance":6450,"roadTime":669913,"laps":0,"speed":43910996,"roadPosition":9549527,"cadenceUHz":1400000,"heartrate":163,"power":269,"heading":"181369","lean":1003997,"climbing":48,"time":518,"f19":17170449,"f20":16777487,"progress":36096,"customisationId":"106188114400","justWatching":0,"calories":82324,"x":-93293.703125,"altitude":9198.599609375,"y":27099.5625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189190684","distance":6477,"roadTime":655797,"laps":0,"speed":44823196,"roadPosition":9714219,"cadenceUHz":922499,"heartrate":0,"power":151,"heading":"893121","lean":1016628,"climbing":48,"time":521,"f19":134610961,"f20":16777487,"progress":36352,"customisationId":"106188357552","justWatching":0,"calories":40514,"x":-96491.671875,"altitude":9216.015625,"y":29090.158203125,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189190845","distance":6478,"roadTime":655627,"laps":0,"speed":44997620,"roadPosition":9783333,"cadenceUHz":1665222,"heartrate":0,"power":292,"heading":"870985","lean":1016560,"climbing":48,"time":521,"f19":17170449,"f20":16777487,"progress":36352,"customisationId":"106188642319","justWatching":0,"calories":44963,"x":-96465.890625,"altitude":9216.0068359375,"y":29170.421875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189190876","distance":5626,"roadTime":844923,"laps":0,"speed":42307468,"roadPosition":9882898,"cadenceUHz":1129772,"heartrate":0,"power":253,"heading":"2098630","lean":1000000,"climbing":48,"time":521,"f19":393232,"f20":16777487,"progress":30720,"customisationId":"106188507653","justWatching":0,"calories":41461,"x":-48959.87109375,"altitude":9786.45703125,"y":41425.74609375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189190968","distance":6033,"roadTime":758216,"laps":0,"speed":43502736,"roadPosition":9863846,"cadenceUHz":1612148,"heartrate":143,"power":108,"heading":"-1227269","lean":999692,"climbing":48,"time":521,"f19":393233,"f20":16777487,"progress":33536,"customisationId":"106188453961","justWatching":0,"calories":49101,"x":-64889.36328125,"altitude":9177.1884765625,"y":42225.703125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189190912","distance":6031,"roadTime":758830,"laps":0,"speed":43278108,"roadPosition":9902623,"cadenceUHz":1484421,"heartrate":0,"power":222,"heading":"-1201956","lean":1000000,"climbing":50,"time":521,"f19":393233,"f20":16777487,"progress":33536,"customisationId":"106188626638","justWatching":0,"calories":32217,"x":-64765.296875,"altitude":9177.0302734375,"y":42652.37109375,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189191569","distance":10604,"roadTime":567569,"laps":0,"speed":32348904,"roadPosition":9718188,"cadenceUHz":1616716,"heartrate":145,"power":196,"heading":"3315642","lean":1002671,"climbing":52,"time":1145,"f19":393233,"f20":16783183,"progress":27648,"customisationId":"106187803002","justWatching":0,"calories":57552,"x":38863.5546875,"altitude":11108.6083984375,"y":-109152.0234375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189191612","distance":29290,"roadTime":122806,"laps":0,"speed":14266455,"roadPosition":10316709,"cadenceUHz":1348756,"heartrate":132,"power":372,"heading":"-883043","lean":979221,"climbing":303,"time":3174,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":207487,"x":72670.15625,"altitude":12640.9140625,"y":42580.70703125,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189191577","distance":6494,"roadTime":651593,"laps":0,"speed":44629168,"roadPosition":9608116,"cadenceUHz":1647988,"heartrate":163,"power":311,"heading":"1135050","lean":1014024,"climbing":48,"time":522,"f19":393235,"f20":16777487,"progress":36352,"customisationId":"106188387470","justWatching":0,"calories":59169,"x":-97208.90625,"altitude":9213.9814453125,"y":30093.908203125,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189191592","distance":6488,"roadTime":653016,"laps":0,"speed":42846732,"roadPosition":9534869,"cadenceUHz":1459693,"heartrate":0,"power":301,"heading":"1048075","lean":1014780,"climbing":48,"time":522,"f19":17170451,"f20":16777487,"progress":36352,"customisationId":"106188506528","justWatching":0,"calories":38478,"x":-97087.421875,"altitude":9215.060546875,"y":29681.37109375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189191692","distance":6486,"roadTime":651953,"laps":0,"speed":43623928,"roadPosition":9738780,"cadenceUHz":1389476,"heartrate":175,"power":253,"heading":"1121246","lean":1012328,"climbing":48,"time":522,"f19":33947667,"f20":16777487,"progress":36352,"customisationId":"106188210483","justWatching":0,"calories":54045,"x":-97046.3046875,"altitude":9214.28515625,"y":30052.6875,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189191547","distance":6499,"roadTime":652827,"laps":0,"speed":44968472,"roadPosition":9590463,"cadenceUHz":1416639,"heartrate":163,"power":334,"heading":"1068688","lean":1014600,"climbing":48,"time":522,"f19":17170449,"f20":16777487,"progress":36352,"customisationId":"106188114400","justWatching":0,"calories":82730,"x":-97064.4609375,"altitude":9214.9375,"y":29756.384765625,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189195678","distance":6539,"roadTime":637820,"laps":0,"speed":44534152,"roadPosition":9621431,"cadenceUHz":1094984,"heartrate":0,"power":231,"heading":"1481058","lean":1001907,"climbing":48,"time":526,"f19":134610961,"f20":16777487,"progress":36864,"customisationId":"106188357552","justWatching":0,"calories":40781,"x":-98054.0703125,"altitude":9194.6298828125,"y":34786.2421875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189195739","distance":6539,"roadTime":637623,"laps":0,"speed":45678732,"roadPosition":9638521,"cadenceUHz":1672999,"heartrate":0,"power":276,"heading":"1485158","lean":1001199,"climbing":48,"time":526,"f19":17170449,"f20":16777487,"progress":36864,"customisationId":"106188642319","justWatching":0,"calories":45330,"x":-98043.140625,"altitude":9194.3671875,"y":34873.85546875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189195698","distance":5683,"roadTime":837834,"laps":0,"speed":42995804,"roadPosition":9891748,"cadenceUHz":1118017,"heartrate":0,"power":253,"heading":"1850299","lean":994223,"climbing":48,"time":526,"f19":393232,"f20":16777487,"progress":30976,"customisationId":"106188507653","justWatching":0,"calories":41797,"x":-46598.390625,"altitude":9695.2041015625,"y":46572.67578125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189195704","distance":6089,"roadTime":750541,"laps":0,"speed":40831604,"roadPosition":9759268,"cadenceUHz":1540643,"heartrate":143,"power":281,"heading":"-1196938","lean":1000000,"climbing":48,"time":526,"f19":393233,"f20":16777487,"progress":33792,"customisationId":"106188453961","justWatching":0,"calories":49327,"x":-66799.6484375,"altitude":9179.171875,"y":37016.70703125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189195712","distance":6090,"roadTime":750774,"laps":0,"speed":45508528,"roadPosition":9752414,"cadenceUHz":1506286,"heartrate":0,"power":295,"heading":"-1189055","lean":1003152,"climbing":50,"time":526,"f19":393233,"f20":16777487,"progress":33792,"customisationId":"106188626638","justWatching":0,"calories":32580,"x":-66732.3984375,"altitude":9179.1123046875,"y":37170.9765625,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189195715","distance":10642,"roadTime":561092,"laps":0,"speed":33648180,"roadPosition":9727696,"cadenceUHz":1633325,"heartrate":147,"power":190,"heading":"3397395","lean":1000952,"climbing":52,"time":1149,"f19":393233,"f20":16783183,"progress":27648,"customisationId":"106187803002","justWatching":0,"calories":57777,"x":42588.765625,"altitude":11083.845703125,"y":-109992.0234375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189195815","distance":29306,"roadTime":124550,"laps":0,"speed":13215498,"roadPosition":10323301,"cadenceUHz":1336494,"heartrate":135,"power":321,"heading":"-1129849","lean":994144,"climbing":304,"time":3178,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":207857,"x":71866.9453125,"altitude":12935.7412109375,"y":41238.484375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189195591","distance":6543,"roadTime":637510,"laps":0,"speed":43893652,"roadPosition":9671017,"cadenceUHz":1650632,"heartrate":164,"power":333,"heading":"1519425","lean":1000516,"climbing":48,"time":526,"f19":393235,"f20":16777487,"progress":36864,"customisationId":"106188387470","justWatching":0,"calories":59531,"x":-98014.0390625,"altitude":9194.2177734375,"y":34923.4140625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189195787","distance":6540,"roadTime":638127,"laps":0,"speed":45645188,"roadPosition":9492093,"cadenceUHz":1513270,"heartrate":0,"power":320,"heading":"1536622","lean":1001288,"climbing":48,"time":526,"f19":17170451,"f20":16777487,"progress":36864,"customisationId":"106188506528","justWatching":0,"calories":38866,"x":-98173.875,"altitude":9195.052734375,"y":34649.2734375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189195693","distance":6535,"roadTime":637972,"laps":0,"speed":44524976,"roadPosition":9652048,"cadenceUHz":1396780,"heartrate":175,"power":269,"heading":"1511473","lean":1000144,"climbing":48,"time":526,"f19":33947667,"f20":16777487,"progress":36864,"customisationId":"106188210483","justWatching":0,"calories":54338,"x":-98019.1015625,"altitude":9194.8388671875,"y":34726.58984375,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189197538","distance":6574,"roadTime":633116,"laps":0,"speed":44929440,"roadPosition":9552297,"cadenceUHz":1400001,"heartrate":164,"power":300,"heading":"1550106","lean":1000000,"climbing":48,"time":528,"f19":17170449,"f20":16777487,"progress":36864,"customisationId":"106188114400","justWatching":0,"calories":83221,"x":-98267.09375,"altitude":9189.6416015625,"y":36934.2734375,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189199881","distance":6591,"roadTime":628593,"laps":0,"speed":44575112,"roadPosition":9567084,"cadenceUHz":1104471,"heartrate":0,"power":188,"heading":"1557240","lean":1000000,"climbing":48,"time":530,"f19":134610961,"f20":16777487,"progress":37120,"customisationId":"106188357552","justWatching":0,"calories":41056,"x":-98256.8125,"altitude":9188.45703125,"y":39905.5,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189199702","distance":6589,"roadTime":628702,"laps":0,"speed":44449028,"roadPosition":9594281,"cadenceUHz":1661929,"heartrate":0,"power":258,"heading":"1580681","lean":1000000,"climbing":48,"time":530,"f19":17170449,"f20":16777487,"progress":37120,"customisationId":"106188642319","justWatching":0,"calories":45628,"x":-98229.703125,"altitude":9188.484375,"y":39835.15625,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189199886","distance":5733,"roadTime":825165,"laps":0,"speed":42889372,"roadPosition":9883610,"cadenceUHz":1109366,"heartrate":0,"power":234,"heading":"1227097","lean":989722,"climbing":48,"time":530,"f19":393232,"f20":16777487,"progress":31488,"customisationId":"106188507653","justWatching":0,"calories":42066,"x":-46595.84765625,"altitude":9589.0712890625,"y":51476.484375,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189199941","distance":6136,"roadTime":741455,"laps":0,"speed":41132380,"roadPosition":9743468,"cadenceUHz":1558433,"heartrate":143,"power":282,"heading":"-1189784","lean":1000000,"climbing":48,"time":530,"f19":393233,"f20":16777487,"progress":34304,"customisationId":"106188453961","justWatching":0,"calories":49626,"x":-68545.8203125,"altitude":9158.81640625,"y":32657.294921875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189199912","distance":6142,"roadTime":740737,"laps":0,"speed":43546108,"roadPosition":9735078,"cadenceUHz":1466027,"heartrate":0,"power":161,"heading":"-1144360","lean":1000000,"climbing":50,"time":530,"f19":393233,"f20":16777487,"progress":34304,"customisationId":"106188626638","justWatching":0,"calories":32793,"x":-68652.0546875,"altitude":9156.181640625,"y":32377.435546875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189201568","distance":10697,"roadTime":544480,"laps":0,"speed":34218672,"roadPosition":9735228,"cadenceUHz":1633332,"heartrate":148,"power":181,"heading":"3695668","lean":997327,"climbing":52,"time":1155,"f19":393233,"f20":16783119,"progress":27904,"customisationId":"106187803002","justWatching":0,"calories":58076,"x":47609.39453125,"altitude":11080.5,"y":-112180.5234375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189201622","distance":29327,"roadTime":126070,"laps":0,"speed":12800364,"roadPosition":10329772,"cadenceUHz":1332524,"heartrate":137,"power":238,"heading":"-1210385","lean":997849,"climbing":306,"time":3184,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":208322,"x":71042.828125,"altitude":13284.447265625,"y":39252.41796875,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189201584","distance":6615,"roadTime":625224,"laps":0,"speed":42465060,"roadPosition":9729460,"cadenceUHz":1648819,"heartrate":163,"power":286,"heading":"1607801","lean":1002041,"climbing":48,"time":532,"f19":393235,"f20":16777487,"progress":37376,"customisationId":"106188387470","justWatching":0,"calories":60035,"x":-98091.546875,"altitude":9187.6025390625,"y":42119.6640625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189201599","distance":6614,"roadTime":625565,"laps":0,"speed":45887600,"roadPosition":9531078,"cadenceUHz":1365220,"heartrate":0,"power":210,"heading":"1588903","lean":999049,"climbing":48,"time":532,"f19":17170451,"f20":16777487,"progress":37376,"customisationId":"106188506528","justWatching":0,"calories":39306,"x":-98290.2265625,"altitude":9187.689453125,"y":41895.2578125,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189201693","distance":6609,"roadTime":625372,"laps":0,"speed":44070392,"roadPosition":9692937,"cadenceUHz":1410554,"heartrate":176,"power":309,"heading":"1575665","lean":1000002,"climbing":48,"time":532,"f19":33947667,"f20":16777487,"progress":37376,"customisationId":"106188210483","justWatching":0,"calories":54803,"x":-98128.203125,"altitude":9187.640625,"y":42021.4453125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189202347","distance":6635,"roadTime":624172,"laps":0,"speed":45423300,"roadPosition":9540743,"cadenceUHz":1322239,"heartrate":163,"power":273,"heading":"1561305","lean":1000000,"climbing":48,"time":533,"f19":17170449,"f20":16777487,"progress":37376,"customisationId":"106188114400","justWatching":0,"calories":83622,"x":-98279.359375,"altitude":9187.3359375,"y":42813.04296875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189205673","distance":6662,"roadTime":617918,"laps":0,"speed":43357448,"roadPosition":9621199,"cadenceUHz":1041068,"heartrate":0,"power":201,"heading":"1557986","lean":1000000,"climbing":48,"time":536,"f19":134610961,"f20":16777487,"progress":37632,"customisationId":"106188357552","justWatching":0,"calories":41357,"x":-98193.546875,"altitude":9185.751953125,"y":46922.79296875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189205698","distance":6661,"roadTime":617751,"laps":0,"speed":42361260,"roadPosition":9679420,"cadenceUHz":1639557,"heartrate":0,"power":275,"heading":"1588126","lean":1000000,"climbing":48,"time":536,"f19":17170449,"f20":16777487,"progress":37632,"customisationId":"106188642319","justWatching":0,"calories":46045,"x":-98135.1796875,"altitude":9185.708984375,"y":47032.17578125,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189205691","distance":5802,"roadTime":805739,"laps":0,"speed":43025592,"roadPosition":9804568,"cadenceUHz":1084531,"heartrate":0,"power":221,"heading":"554548","lean":990831,"climbing":48,"time":536,"f19":393232,"f20":16777487,"progress":32000,"customisationId":"106188507653","justWatching":0,"calories":42430,"x":-50803.95703125,"altitude":9412.998046875,"y":56818.828125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189205657","distance":6205,"roadTime":718725,"laps":0,"speed":42852276,"roadPosition":9701925,"cadenceUHz":1581894,"heartrate":144,"power":263,"heading":"-633515","lean":1029507,"climbing":48,"time":536,"f19":393233,"f20":16777487,"progress":34560,"customisationId":"106188453961","justWatching":0,"calories":50020,"x":-72000.4296875,"altitude":9130.734375,"y":26947.486328125,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189205712","distance":6212,"roadTime":715497,"laps":0,"speed":43124884,"roadPosition":9703960,"cadenceUHz":1504692,"heartrate":0,"power":249,"heading":"-425243","lean":1027876,"climbing":50,"time":536,"f19":393233,"f20":16777487,"progress":34560,"customisationId":"106188626638","justWatching":0,"calories":33214,"x":-72468.3984375,"altitude":9141.685546875,"y":26651.89453125,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189206576","distance":10745,"roadTime":529984,"laps":0,"speed":34709060,"roadPosition":9726604,"cadenceUHz":1599212,"heartrate":148,"power":195,"heading":"3747299","lean":1005494,"climbing":52,"time":1160,"f19":393233,"f20":16783119,"progress":27904,"customisationId":"106187803002","justWatching":0,"calories":58346,"x":51777.4140625,"altitude":11080.5,"y":-114529.9375,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189206393","distance":29344,"roadTime":127035,"laps":0,"speed":8127748,"roadPosition":10333700,"cadenceUHz":224640,"heartrate":138,"power":0,"heading":"-1242361","lean":994546,"climbing":307,"time":3189,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":208601,"x":70477.5390625,"altitude":13539.1083984375,"y":37692.73046875,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189206376","distance":6672,"roadTime":616686,"laps":0,"speed":41889200,"roadPosition":9791062,"cadenceUHz":1625363,"heartrate":162,"power":298,"heading":"1569380","lean":1000000,"climbing":48,"time":537,"f19":393235,"f20":16777487,"progress":37632,"customisationId":"106188387470","justWatching":0,"calories":60446,"x":-98022.625,"altitude":9185.439453125,"y":47731.12890625,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189206400","distance":6672,"roadTime":616911,"laps":0,"speed":42717396,"roadPosition":9575827,"cadenceUHz":1377270,"heartrate":0,"power":202,"heading":"1590915","lean":1002241,"climbing":48,"time":537,"f19":17170451,"f20":16777487,"progress":37632,"customisationId":"106188506528","justWatching":0,"calories":39595,"x":-98238.0546875,"altitude":9185.4970703125,"y":47582.3046875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189206493","distance":6667,"roadTime":616583,"laps":0,"speed":43779408,"roadPosition":9736007,"cadenceUHz":1404777,"heartrate":176,"power":259,"heading":"1575666","lean":1000000,"climbing":48,"time":537,"f19":33947667,"f20":16777487,"progress":37632,"customisationId":"106188210483","justWatching":0,"calories":55161,"x":-98077.59375,"altitude":9185.4130859375,"y":47798.265625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189207155","distance":6695,"roadTime":615248,"laps":0,"speed":43725152,"roadPosition":9537291,"cadenceUHz":1350050,"heartrate":163,"power":251,"heading":"1588154","lean":1000515,"climbing":48,"time":538,"f19":17170449,"f20":16777487,"progress":37888,"customisationId":"106188114400","justWatching":0,"calories":83961,"x":-98275.1640625,"altitude":9185.076171875,"y":48673.6484375,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189210500","distance":6720,"roadTime":609134,"laps":0,"speed":43374408,"roadPosition":9646140,"cadenceUHz":1034864,"heartrate":0,"power":196,"heading":"1471053","lean":985183,"climbing":48,"time":541,"f19":134610961,"f20":16777487,"progress":38144,"customisationId":"106188357552","justWatching":0,"calories":41646,"x":-98198.3828125,"altitude":9183.5576171875,"y":52543.38671875,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189207933","distance":6687,"roadTime":613809,"laps":0,"speed":42126896,"roadPosition":9720887,"cadenceUHz":1636534,"heartrate":0,"power":305,"heading":"1588126","lean":1000000,"climbing":48,"time":538,"f19":17170449,"f20":16777487,"progress":37888,"customisationId":"106188642319","justWatching":0,"calories":46225,"x":-98090.3359375,"altitude":9184.7109375,"y":49620.98046875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189210496","distance":5860,"roadTime":788351,"laps":0,"speed":43314252,"roadPosition":9818592,"cadenceUHz":1124141,"heartrate":0,"power":255,"heading":"-509543","lean":991199,"climbing":48,"time":541,"f19":393232,"f20":16777487,"progress":32256,"customisationId":"106188507653","justWatching":0,"calories":42748,"x":-56221.83984375,"altitude":9266.888671875,"y":57003.765625,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189210515","distance":6261,"roadTime":699493,"laps":0,"speed":43239468,"roadPosition":9750708,"cadenceUHz":1554689,"heartrate":143,"power":240,"heading":"62894","lean":998885,"climbing":48,"time":541,"f19":393233,"f20":16777551,"progress":35072,"customisationId":"106188453961","justWatching":0,"calories":50386,"x":-77591.796875,"altitude":9180.751953125,"y":26332.73046875,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189210511","distance":6268,"roadTime":698748,"laps":0,"speed":41332044,"roadPosition":9728727,"cadenceUHz":1464191,"heartrate":0,"power":181,"heading":"70540","lean":1000000,"climbing":50,"time":541,"f19":393233,"f20":16777551,"progress":35072,"customisationId":"106188626638","justWatching":0,"calories":33505,"x":-78045.4765625,"altitude":9180.8876953125,"y":26328.986328125,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189211339","distance":10791,"roadTime":517852,"laps":0,"speed":35045044,"roadPosition":9730121,"cadenceUHz":1616620,"heartrate":148,"power":204,"heading":"3930941","lean":1006398,"climbing":52,"time":1165,"f19":393233,"f20":16783119,"progress":28160,"customisationId":"106187803002","justWatching":0,"calories":58603,"x":55332.46875,"altitude":11080.5,"y":-117455.203125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189210197","distance":29346,"roadTime":127132,"laps":0,"speed":0,"roadPosition":10337038,"cadenceUHz":1,"heartrate":138,"power":0,"heading":"-1265909","lean":970675,"climbing":308,"time":3193,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":208601,"x":70421.828125,"altitude":13566.0234375,"y":37524.18359375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189211182","distance":6727,"roadTime":607631,"laps":0,"speed":42099100,"roadPosition":9796197,"cadenceUHz":1617583,"heartrate":162,"power":354,"heading":"1358473","lean":991767,"climbing":48,"time":541,"f19":393235,"f20":16777487,"progress":38144,"customisationId":"106188387470","justWatching":0,"calories":60870,"x":-98188.546875,"altitude":9183.3837890625,"y":53231.88671875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189212038","distance":6738,"roadTime":605102,"laps":0,"speed":43803784,"roadPosition":9760891,"cadenceUHz":1421405,"heartrate":0,"power":276,"heading":"1249507","lean":989317,"climbing":48,"time":543,"f19":17170451,"f20":16777487,"progress":38144,"customisationId":"106188506528","justWatching":0,"calories":39983,"x":-98504.515625,"altitude":9183.376953125,"y":54175.96875,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189212092","distance":6735,"roadTime":604506,"laps":0,"speed":43502716,"roadPosition":9778669,"cadenceUHz":1395429,"heartrate":176,"power":266,"heading":"1228537","lean":990088,"climbing":48,"time":543,"f19":33947667,"f20":16777487,"progress":38144,"customisationId":"106188210483","justWatching":0,"calories":55569,"x":-98561.96875,"altitude":9183.412109375,"y":54380.73828125,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189212164","distance":6754,"roadTime":603951,"laps":0,"speed":42145156,"roadPosition":9640400,"cadenceUHz":1349985,"heartrate":162,"power":264,"heading":"1233704","lean":989986,"climbing":48,"time":543,"f19":17170449,"f20":16777487,"progress":38144,"customisationId":"106188114400","justWatching":0,"calories":84336,"x":-98762.40625,"altitude":9183.455078125,"y":54508.38671875,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106189215471","distance":6780,"roadTime":592209,"laps":0,"speed":42715156,"roadPosition":9840876,"cadenceUHz":984741,"heartrate":0,"power":147,"heading":"995382","lean":1003027,"climbing":48,"time":546,"f19":134610961,"f20":16777487,"progress":38400,"customisationId":"106188357552","justWatching":0,"calories":41910,"x":-100556.5859375,"altitude":9183.24609375,"y":57843.15625,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":43392,"totalExperiencePoints":121997,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.10895552922644,"status":{"id":121131,"worldTime":"106189215496","distance":6775,"roadTime":592379,"laps":0,"speed":41915172,"roadPosition":9924360,"cadenceUHz":1633089,"heartrate":0,"power":294,"heading":"994943","lean":1003280,"climbing":48,"time":546,"f19":17170449,"f20":16777487,"progress":38400,"customisationId":"106188642319","justWatching":0,"calories":46851,"x":-100452.9921875,"altitude":9183.302734375,"y":57834.32421875,"watchingRiderId":121131,"groupId":84031,"sport":"0"}},{"id":540487,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":540487,"followersCount":3,"followeesCount":7,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513431,"address":null,"age":57,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1728,"location":"","preferredLanguage":"en","mixpanelDistinctId":"a9d9fb73-61e2-49fb-8d79-a97cc27eaa85","profileChanges":false,"weight":70307,"b":false,"createdOn":"2017-12-19T00:43:33.940+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"12/19/2017 00:43:35 +0000","ftp":249,"userAgent":"CNL/1.5.0 (tvOS 11.2.6) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":705,"totalDistance":354825,"totalDistanceClimbed":3600,"totalTimeInMinutes":708,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":2244,"totalExperiencePoints":7359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"zPower","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":21.943552181340127,"status":{"id":540487,"worldTime":"106189215502","distance":5920,"roadTime":774816,"laps":0,"speed":42982668,"roadPosition":9876055,"cadenceUHz":1170376,"heartrate":0,"power":262,"heading":"-997711","lean":992815,"climbing":48,"time":546,"f19":393232,"f20":16777487,"progress":32768,"customisationId":"106188507653","justWatching":0,"calories":43104,"x":-60497.52734375,"altitude":9181.767578125,"y":52854.1328125,"watchingRiderId":540487,"groupId":84031,"sport":"0"}},{"id":357160,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":357160,"followersCount":1,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513405,"address":null,"age":59,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1753,"location":"","preferredLanguage":"en","mixpanelDistinctId":"139a8577-4501-41f1-a32f-c8a1ab8f8571","profileChanges":false,"weight":72121,"b":false,"createdOn":"2017-06-04T04:48:32.249+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/05/2017 21:30:06 +0000","ftp":269,"userAgent":"CNL/1.5.0 (Windows 8.1; Windows 6.3.9600) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":874,"totalDistance":596842,"totalDistanceClimbed":3623,"totalTimeInMinutes":1018,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":3661,"totalExperiencePoints":12236,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.159109048252216,"status":{"id":357160,"worldTime":"106189216140","distance":6328,"roadTime":688706,"laps":0,"speed":40774628,"roadPosition":9787970,"cadenceUHz":1520307,"heartrate":144,"power":273,"heading":"43851","lean":1000000,"climbing":48,"time":546,"f19":393233,"f20":16777551,"progress":35584,"customisationId":"106188453961","justWatching":0,"calories":50808,"x":-84154.5234375,"altitude":9182.712890625,"y":26634.130859375,"watchingRiderId":357160,"groupId":84031,"sport":"0"}},{"id":56435,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":56435,"followersCount":3,"followeesCount":2,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513414,"address":null,"age":16,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1750,"location":"","preferredLanguage":"en","mixpanelDistinctId":"36919792-217b-4de7-8bca-db23fd7b6192","profileChanges":false,"weight":51000,"b":false,"createdOn":"2015-10-31T15:02:55.349+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"10/31/2015 15:07:51 +0000","ftp":201,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1434,"totalDistance":1679309,"totalDistanceClimbed":14789,"totalTimeInMinutes":2996,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":7979,"totalExperiencePoints":34731,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Specialized Tarmac","numberOfFolloweesInCommon":0,"CdA":22.32445031298935,"status":{"id":56435,"worldTime":"106189216111","distance":6331,"roadTime":688388,"laps":0,"speed":40122072,"roadPosition":9768480,"cadenceUHz":1442315,"heartrate":0,"power":207,"heading":"33372","lean":1000000,"climbing":50,"time":547,"f19":393233,"f20":16777551,"progress":35584,"customisationId":"106188626638","justWatching":0,"calories":33809,"x":-84349.4453125,"altitude":9182.771484375,"y":26622.46875,"watchingRiderId":56435,"groupId":84031,"sport":"0"}},{"id":476278,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":476278,"followersCount":0,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513132,"address":null,"age":29,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1804,"location":"","preferredLanguage":"en","mixpanelDistinctId":"86c849b6-02bf-43c2-9922-f6f4bb382f3b","profileChanges":false,"weight":65771,"b":false,"createdOn":"2017-11-14T19:03:07.214+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/14/2017 19:03:07 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 7 Service Pack 1; Windows 6.1.7601) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":1009,"totalDistance":894286,"totalDistanceClimbed":8752,"totalTimeInMinutes":1640,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":5546,"totalExperiencePoints":16276,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Carbon","numberOfFolloweesInCommon":0,"CdA":22.67687525569375,"status":{"id":476278,"worldTime":"106189216141","distance":10838,"roadTime":504612,"laps":0,"speed":35341932,"roadPosition":9723247,"cadenceUHz":1554968,"heartrate":148,"power":192,"heading":"4593609","lean":1000395,"climbing":52,"time":1169,"f19":393233,"f20":16783119,"progress":28416,"customisationId":"106187803002","justWatching":0,"calories":58868,"x":57264.296875,"altitude":11080.5,"y":-121610.03125,"watchingRiderId":476278,"groupId":0,"sport":"0"}},{"id":412099,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"fra","countryCode":250,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":412099,"followersCount":11,"followeesCount":16,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18512363,"address":null,"age":48,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1854,"location":"","preferredLanguage":"en","mixpanelDistinctId":"6e33a06d-e08a-4b72-8591-b9ce241951fb","profileChanges":false,"weight":86470,"b":false,"createdOn":"2017-09-27T10:58:58.154+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"09/27/2017 10:58:59 +0000","ftp":310,"userAgent":"CNL/1.5.0 (tvOS 11.2.1) curl/7.47.1","publicAttributes":{},"privateAttributes":{},"achievementLevel":1966,"totalDistance":3513808,"totalDistanceClimbed":30923,"totalTimeInMinutes":6261,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":24040,"totalExperiencePoints":67359,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":22.972912338414627,"status":{"id":412099,"worldTime":"106189210197","distance":29346,"roadTime":127132,"laps":0,"speed":0,"roadPosition":10337038,"cadenceUHz":1,"heartrate":138,"power":0,"heading":"-1265909","lean":970675,"climbing":308,"time":3193,"f19":33947671,"f20":33554447,"progress":1280,"justWatching":0,"calories":208601,"x":70421.828125,"altitude":13566.0234375,"y":37524.18359375,"watchingRiderId":412099,"groupId":0,"sport":"0"}},{"id":387767,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"deu","countryCode":276,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":387767,"followersCount":12,"followeesCount":20,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513367,"address":null,"age":43,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1880,"location":"","preferredLanguage":"de","mixpanelDistinctId":"fdf5f2c7-b943-47fe-978e-614b80c53841","profileChanges":false,"weight":78000,"b":false,"createdOn":"2017-08-17T08:09:39.499+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"08/17/2017 08:09:39 +0000","ftp":320,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2366,"totalDistance":4816275,"totalDistanceClimbed":38597,"totalTimeInMinutes":10576,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":27176,"totalExperiencePoints":98009,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Parlee ESX","numberOfFolloweesInCommon":0,"CdA":23.265975125774705,"status":{"id":387767,"worldTime":"106189216193","distance":6787,"roadTime":590407,"laps":0,"speed":43807044,"roadPosition":9860250,"cadenceUHz":1633898,"heartrate":162,"power":332,"heading":"1048700","lean":1005964,"climbing":48,"time":546,"f19":393235,"f20":16777487,"progress":38400,"customisationId":"106188387470","justWatching":0,"calories":61313,"x":-100884.953125,"altitude":9182.470703125,"y":58444.16796875,"watchingRiderId":387767,"groupId":84031,"sport":"0"}},{"id":28349,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":true,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":28349,"followersCount":3,"followeesCount":0,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513430,"address":null,"age":28,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1630,"location":"","preferredLanguage":"en","mixpanelDistinctId":"22198ed8-2710-462d-9fc3-f4692f060d95","profileChanges":false,"weight":60000,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"06/23/2015 02:32:19 +0000","ftp":235,"userAgent":"CNL/1.5.0 (OS X 10.11 El Capitan; Darwin Kernel 15.6.0) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":766,"totalDistance":292313,"totalDistanceClimbed":2709,"totalTimeInMinutes":574,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":1468,"totalExperiencePoints":9310,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Pinarello Dogma 65.1","numberOfFolloweesInCommon":0,"CdA":21.117815045422798,"status":{"id":28349,"worldTime":"106189216240","distance":6790,"roadTime":589958,"laps":0,"speed":44826892,"roadPosition":9828842,"cadenceUHz":1407127,"heartrate":0,"power":253,"heading":"1044852","lean":1007446,"climbing":48,"time":547,"f19":17170451,"f20":16777487,"progress":38400,"customisationId":"106188506528","justWatching":0,"calories":40295,"x":-100998.796875,"altitude":9182.22265625,"y":58587.99609375,"watchingRiderId":28349,"groupId":84031,"sport":"0"}},{"id":96440,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":96440,"followersCount":44,"followeesCount":24,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513084,"address":null,"age":52,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1855,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ef4582c9-4f29-4670-aa63-207cd038a7e9","profileChanges":false,"weight":78472,"b":false,"createdOn":"2016-01-14T02:56:47.724+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"01/14/2016 03:00:08 +0000","ftp":266,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":14770418,"totalDistanceClimbed":89882,"totalTimeInMinutes":26125,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":87257,"totalExperiencePoints":277087,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.037793412846,"status":{"id":96440,"worldTime":"106189216292","distance":6786,"roadTime":589732,"laps":0,"speed":43102028,"roadPosition":9874211,"cadenceUHz":1390971,"heartrate":175,"power":278,"heading":"1072646","lean":1006187,"climbing":48,"time":547,"f19":33947667,"f20":16777487,"progress":38400,"customisationId":"106188210483","justWatching":0,"calories":55870,"x":-101002.3515625,"altitude":9182.0888671875,"y":58691.56640625,"watchingRiderId":96440,"groupId":84031,"sport":"0"}},{"id":7491,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":false,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":7491,"followersCount":23,"followeesCount":46,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513265,"address":null,"age":44,"bodyType":2,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1905,"location":"","preferredLanguage":"en","mixpanelDistinctId":"f2374350-e86a-4b8c-9bb8-11afc643a784","profileChanges":false,"weight":86183,"b":false,"createdOn":"2015-07-03T15:50:53.729+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"02/27/2015 19:58:04 +0000","ftp":323,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":8424439,"totalDistanceClimbed":71623,"totalTimeInMinutes":15418,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":57774,"totalExperiencePoints":156013,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Smart Trainer","virtualBikeModel":"Zwift Concept","numberOfFolloweesInCommon":0,"CdA":23.431274186105206,"status":{"id":7491,"worldTime":"106189216149","distance":6800,"roadTime":590179,"laps":0,"speed":41205488,"roadPosition":9696856,"cadenceUHz":1357809,"heartrate":161,"power":283,"heading":"1077526","lean":1008805,"climbing":48,"time":547,"f19":17170449,"f20":16777487,"progress":38400,"customisationId":"106188114400","justWatching":0,"calories":84634,"x":-101071.921875,"altitude":9182.349609375,"y":58445.4453125,"watchingRiderId":7491,"groupId":84031,"sport":"0"}}]
This file has been truncated, but you can view the full file.
[{"id":188056,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"usa","countryCode":840,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":188056,"followersCount":97,"followeesCount":99,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513351,"address":null,"age":51,"bodyType":0,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1670,"location":"","preferredLanguage":"en","mixpanelDistinctId":"ab7173ba-0b47-4781-b6b6-989c37388b16","profileChanges":false,"weight":56000,"b":false,"createdOn":"2016-11-10T23:15:31.472+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"11/29/2016 12:59:04 +0000","ftp":258,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.16299) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":24716863,"totalDistanceClimbed":150265,"totalTimeInMinutes":39331,"totalInKomJersey":0,"totalInSprintersJersey":0,"totalInOrangeJersey":0,"totalWattHours":120623,"totalExperiencePoints":467430,"totalGold":0,"runAchievementLevel":0,"totalRunDistance":0,"totalRunTimeInMinutes":0,"totalRunExperiencePoints":0,"totalRunCalories":0,"powerSourceType":"Power Source","powerSourceModel":"Power Meter","virtualBikeModel":"Cervelo S5","numberOfFolloweesInCommon":0,"CdA":21.529401305648005,"status":{"id":188056,"worldTime":"106188634477","distance":0,"roadTime":373144,"laps":0,"speed":0,"roadPosition":10078545,"cadenceUHz":420871,"heartrate":0,"power":53,"heading":"4349743","lean":986236,"climbing":0,"time":0,"f19":134610965,"f20":33556303,"progress":0,"customisationId":"106188357552","justWatching":0,"calories":5416,"x":103933.3515625,"altitude":10027.5078125,"y":14961.6396484375,"watchingRiderId":188056,"groupId":84031,"sport":"0"}},{"id":121131,"firstName":"","lastName":"","male":true,"imageSrc":"","imageSrcLarge":"","playerType":"NORMAL","countryAlpha3":"gbr","countryCode":826,"useMetric":true,"riding":true,"privacy":{"approvalRequired":false,"displayWeight":false,"minor":false,"privateMessaging":false},"socialFacts":{"profileId":121131,"followersCount":8,"followeesCount":5,"followeesInCommonWithLoggedInPlayer":0,"followerStatusOfLoggedInPlayer":"NO_RELATIONSHIP","followeeStatusOfLoggedInPlayer":"NO_RELATIONSHIP","isFavoriteOfLoggedInPlayer":false},"worldId":1,"enrolledZwiftAcademy":false,"playerTypeId":1,"playerSubTypeId":null,"currentActivityId":18513275,"address":null,"age":40,"bodyType":4,"connectedToStrava":false,"connectedToTrainingPeaks":false,"connectedToTodaysPlan":false,"connectedToUnderArmour":false,"connectedToWithings":false,"connectedToFitbit":false,"connectedToGarmin":false,"stravaPremium":false,"bt":null,"dob":null,"emailAddress":null,"height":1860,"location":"","preferredLanguage":"en","mixpanelDistinctId":"b27ef6e3-a429-4b88-b6a0-2885ca67c73e","profileChanges":false,"weight":75000,"b":false,"createdOn":"2016-03-05T18:47:08.354+0000","source":"Game_Launcher","origin":null,"launchedGameClient":"03/12/2016 18:13:03 +0000","ftp":300,"userAgent":"CNL/1.5.0 (Windows 10; Windows 10.0.14393) curl/7.36.0-DEV","publicAttributes":{},"privateAttributes":{},"achievementLevel":2500,"totalDistance":6225998,"totalDistanceClimbed":59539,"totalTimeInMinutes":10515,"totalInKomJersey":0,"totalIn
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment