Skip to content

Instantly share code, notes, and snippets.

@rpgove
Last active July 29, 2020 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rpgove/e66f1d921718813ecf507178c7dc8d12 to your computer and use it in GitHub Desktop.
Save rpgove/e66f1d921718813ecf507178c7dc8d12 to your computer and use it in GitHub Desktop.
EuroVis 2019 Twitter interaction network
license: bsd-3-clause
height: 600

This node-link diagram shows the Twitter users who used the #EuroVis hashtag during EuroVis 2019 (thanks to John Alexis Guerra Gómez for collecting the data!). If a user retweeted, replied, or quoted another user's tweet, there is a link connecting them. Nodes with darker colors had more #EuroVis tweets.

This example shows how to combine the Random Vertex Sampling algorithm from d3.forceManyBodySampled() with the Barnes-Hut algorithm from d3.forceManyBody(). The example first computes a fast layout using Random Vertex sampling, and then runs 10 itereations of the Barnes-Hut algorithm to refine the layout.

More information about the algorithm is available in the blog post.

// Copyright 2019 Two Six Labs, LLC. v1.0.0 d3-force-sampled https://github.com/twosixlabs/d3-force-sampled/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.d3 = global.d3 || {})));
}(this, (function (exports) { 'use strict';
function constant(x) {
return function() {
return x;
};
}
function manyBodySampled() {
var nodes,
alpha,
strength = constant(-30),
strengths,
indicesRepulse,
prevIndex = 0,
distanceMin2 = 1,
distanceMax2 = Infinity,
neighborSize = function () {
return 15;
},
updateSize = function (nodes) { return Math.pow(nodes.length, 0.75); },
sampleSize = function (nodes) { return Math.pow(nodes.length, 0.25); },
numNeighbors,
numUpdate,
numSamples,
chargeMultiplier = function (nodes) {
return nodes.length < 100 ? 1 : nodes.length < 200 ? 3 : Math.sqrt(nodes.length);
},
cMult,
rand = Math.random;
function addRandomNode(node) {
var randIdx = Math.floor(rand() * nodes.length),
randNode = nodes[randIdx],
randDist = (node.x - randNode.x) * (node.x - randNode.x) + (node.y - randNode.y) * (node.y - randNode.y),
currIdx,
currNode,
currDist,
maxI,
maxDist = -Infinity,
i = -1;
// Is this already in the list?
if (node.nearest.indexOf(randIdx) >= 0) return;
// If there is room for another, add it.
if (node.nearest.length < numNeighbors) {
node.nearest.push(randIdx);
return;
}
// Replace the farthest away "neighbor" with the new node.
while (++i < node.nearest.length) {
currIdx = node.nearest[i];
currNode = nodes[currIdx];
currDist = Math.hypot(node.x - currNode.x, node.y - currNode.y);
if (currDist > maxDist) {
maxI = i;
maxDist = currDist;
}
}
if (randDist < maxDist) {
node.nearest[maxI] = randIdx;
}
}
function getRandIndices(indices, num) {
num = Math.floor(num);
var i,
n = nodes.length,
cnt = n - num,
randIdx,
temp;
// Choose random indices.
for (i = n-1; i >= cnt; --i) {
randIdx = Math.floor(rand() * i);
temp = indices[randIdx];
indices[randIdx] = indices[i];
indices[i] = temp;
}
return indices.slice(cnt);
}
function approxRepulse(node) {
var i,
randIndices,
currNode,
w,
x,
y,
l;
// Choose random nodes to update.
randIndices = getRandIndices(indicesRepulse, numSamples);
for (i = randIndices.length - 1; i >= 0; --i) {
currNode = nodes[randIndices[i]];
if (currNode === node) continue;
x = currNode.x - node.x;
y = currNode.y - node.y;
l = x * x + y * y;
if (l >= distanceMax2) continue;
// Limit forces for very close nodes; randomize direction if coincident.
if (x === 0) x = (rand() - 0.5) * 1e-6, l += x * x;
if (y === 0) y = (rand() - 0.5) * 1e-6, l += y * y;
if (l < distanceMin2) l = Math.sqrt(distanceMin2 * l);
w = strengths[node.index] * alpha * cMult / l;
node.vx += x * w;
node.vy += y * w;
}
}
function constantRepulse(node) {
var i,
nearest,
currNode,
w,
x,
y,
l;
// Update the list of nearest nodes.
if (numNeighbors) addRandomNode(node);
nearest = node.nearest;
if (numNeighbors) for (i = nearest.length - 1; i >= 0; --i) {
currNode = nodes[nearest[i]];
if (currNode === node) continue;
x = currNode.x - node.x;
y = currNode.y - node.y;
l = x * x + y * y;
if (l >= distanceMax2) continue;
// Limit forces for very close nodes; randomize direction if coincident.
if (x === 0) x = (rand() - 0.5) * 1e-6, l += x * x;
if (y === 0) y = (rand() - 0.5) * 1e-6, l += y * y;
if (l < distanceMin2) l = Math.sqrt(distanceMin2 * l);
w = strengths[node.index] * alpha * cMult / l;
node.vx += x * w;
node.vy += y * w;
}
}
function force(_) {
var i = 0, j = prevIndex, n = nodes.length, upperIndex = prevIndex + numUpdate;
for (alpha = _; i < n || j < upperIndex; ++i, ++j) {
if (j < upperIndex) approxRepulse(nodes[j%n]);
if (numNeighbors && i < n) constantRepulse(nodes[i]);
}
prevIndex = upperIndex % n;
}
function initialize() {
if (!nodes) return;
var i, n = nodes.length, node;
indicesRepulse = new Array(n);
for (i = 0; i < n; ++i) indicesRepulse[i] = i;
strengths = new Array(n);
// Cannot be negative.
numNeighbors = Math.min(Math.ceil(neighborSize(nodes)), n);
numNeighbors = numNeighbors < 0 ? 0 : Math.min(numNeighbors, nodes.length);
numUpdate = Math.ceil(updateSize(nodes));
numUpdate = numUpdate < 0 ? 0 : Math.min(numUpdate, n);
numSamples = Math.ceil(sampleSize(nodes));
numSamples = numSamples < 0 ? 0 : Math.min(numSamples, n);
cMult = chargeMultiplier(nodes);
alpha = 1;
for (i = 0; i < n; ++i) {
node = nodes[i];
strengths[node.index] = +strength(node, i, nodes);
node.nearest = [];
while (node.nearest.length < numNeighbors) addRandomNode(node);
}
}
force.initialize = function(_) {
nodes = _;
initialize();
};
force.strength = function(_) {
return arguments.length ? (strength = typeof _ === "function" ? _ : constant(+_), initialize(), force) : strength;
};
force.distanceMin = function(_) {
return arguments.length ? (distanceMin2 = _ * _, force) : Math.sqrt(distanceMin2);
};
force.distanceMax = function(_) {
return arguments.length ? (distanceMax2 = _ * _, force) : Math.sqrt(distanceMax2);
};
force.neighborSize = function(_) {
return arguments.length ? (neighborSize = typeof _ === "function" ? _ : constant(+_), initialize(), force) : neighborSize;
};
force.updateSize = function(_) {
return arguments.length ? (updateSize = typeof _ === "function" ? _ : constant(+_), initialize(), force) : updateSize;
};
force.sampleSize = function(_) {
return arguments.length ? (sampleSize = typeof _ === "function" ? _ : constant(+_), initialize(), force) : sampleSize;
};
force.chargeMultiplier = function(_) {
return arguments.length ? (chargeMultiplier = typeof _ === "function" ? _ : constant(+_), initialize(), force) : chargeMultiplier;
};
force.source = function(_) {
return arguments.length ? (rand = _, force) : rand;
};
return force;
}
exports.forceManyBodySampled = manyBodySampled;
Object.defineProperty(exports, '__esModule', { value: true });
})));
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('d3-collection'), require('d3-selection')) :
typeof define === 'function' && define.amd ? define(['d3-collection', 'd3-selection'], factory) :
(global.d3 = global.d3 || {}, global.d3.tip = factory(global.d3,global.d3));
}(this, (function (d3Collection,d3Selection) { 'use strict';
/**
* d3.tip
* Copyright (c) 2013-2017 Justin Palmer
*
* Tooltips for d3.js SVG visualizations
*/
// Public - constructs a new tooltip
//
// Returns a tip
function index() {
var direction = d3TipDirection,
offset = d3TipOffset,
html = d3TipHTML,
rootElement = document.body,
node = initNode(),
svg = null,
point = null,
target = null;
function tip(vis) {
svg = getSVGNode(vis);
if (!svg) return
point = svg.createSVGPoint();
rootElement.appendChild(node);
}
// Public - show the tooltip on the screen
//
// Returns a tip
tip.show = function() {
var args = Array.prototype.slice.call(arguments);
if (args[args.length - 1] instanceof SVGElement) target = args.pop();
var content = html.apply(this, args),
poffset = offset.apply(this, args),
dir = direction.apply(this, args),
nodel = getNodeEl(),
i = directions.length,
coords,
scrollTop = document.documentElement.scrollTop ||
rootElement.scrollTop,
scrollLeft = document.documentElement.scrollLeft ||
rootElement.scrollLeft;
nodel.html(content)
.style('opacity', 1).style('pointer-events', 'all');
while (i--) nodel.classed(directions[i], false);
coords = directionCallbacks.get(dir).apply(this);
nodel.classed(dir, true)
.style('top', (coords.top + poffset[0]) + scrollTop + 'px')
.style('left', (coords.left + poffset[1]) + scrollLeft + 'px');
return tip
};
// Public - hide the tooltip
//
// Returns a tip
tip.hide = function() {
var nodel = getNodeEl();
nodel.style('opacity', 0).style('pointer-events', 'none');
return tip
};
// Public: Proxy attr calls to the d3 tip container.
// Sets or gets attribute value.
//
// n - name of the attribute
// v - value of the attribute
//
// Returns tip or attribute value
// eslint-disable-next-line no-unused-vars
tip.attr = function(n, v) {
if (arguments.length < 2 && typeof n === 'string') {
return getNodeEl().attr(n)
}
var args = Array.prototype.slice.call(arguments);
d3Selection.selection.prototype.attr.apply(getNodeEl(), args);
return tip
};
// Public: Proxy style calls to the d3 tip container.
// Sets or gets a style value.
//
// n - name of the property
// v - value of the property
//
// Returns tip or style property value
// eslint-disable-next-line no-unused-vars
tip.style = function(n, v) {
if (arguments.length < 2 && typeof n === 'string') {
return getNodeEl().style(n)
}
var args = Array.prototype.slice.call(arguments);
d3Selection.selection.prototype.style.apply(getNodeEl(), args);
return tip
};
// Public: Set or get the direction of the tooltip
//
// v - One of n(north), s(south), e(east), or w(west), nw(northwest),
// sw(southwest), ne(northeast) or se(southeast)
//
// Returns tip or direction
tip.direction = function(v) {
if (!arguments.length) return direction
direction = v == null ? v : functor(v);
return tip
};
// Public: Sets or gets the offset of the tip
//
// v - Array of [x, y] offset
//
// Returns offset or
tip.offset = function(v) {
if (!arguments.length) return offset
offset = v == null ? v : functor(v);
return tip
};
// Public: sets or gets the html value of the tooltip
//
// v - String value of the tip
//
// Returns html value or tip
tip.html = function(v) {
if (!arguments.length) return html
html = v == null ? v : functor(v);
return tip
};
// Public: sets or gets the root element anchor of the tooltip
//
// v - root element of the tooltip
//
// Returns root node of tip
tip.rootElement = function(v) {
if (!arguments.length) return rootElement
rootElement = v == null ? v : functor(v);
return tip
};
// Public: destroys the tooltip and removes it from the DOM
//
// Returns a tip
tip.destroy = function() {
if (node) {
getNodeEl().remove();
node = null;
}
return tip
};
function d3TipDirection() { return 'n' }
function d3TipOffset() { return [0, 0] }
function d3TipHTML() { return ' ' }
var directionCallbacks = d3Collection.map({
n: directionNorth,
s: directionSouth,
e: directionEast,
w: directionWest,
nw: directionNorthWest,
ne: directionNorthEast,
sw: directionSouthWest,
se: directionSouthEast
}),
directions = directionCallbacks.keys();
function directionNorth() {
var bbox = getScreenBBox(this);
return {
top: bbox.n.y - node.offsetHeight,
left: bbox.n.x - node.offsetWidth / 2
}
}
function directionSouth() {
var bbox = getScreenBBox(this);
return {
top: bbox.s.y,
left: bbox.s.x - node.offsetWidth / 2
}
}
function directionEast() {
var bbox = getScreenBBox(this);
return {
top: bbox.e.y - node.offsetHeight / 2,
left: bbox.e.x
}
}
function directionWest() {
var bbox = getScreenBBox(this);
return {
top: bbox.w.y - node.offsetHeight / 2,
left: bbox.w.x - node.offsetWidth
}
}
function directionNorthWest() {
var bbox = getScreenBBox(this);
return {
top: bbox.nw.y - node.offsetHeight,
left: bbox.nw.x - node.offsetWidth
}
}
function directionNorthEast() {
var bbox = getScreenBBox(this);
return {
top: bbox.ne.y - node.offsetHeight,
left: bbox.ne.x
}
}
function directionSouthWest() {
var bbox = getScreenBBox(this);
return {
top: bbox.sw.y,
left: bbox.sw.x - node.offsetWidth
}
}
function directionSouthEast() {
var bbox = getScreenBBox(this);
return {
top: bbox.se.y,
left: bbox.se.x
}
}
function initNode() {
var div = d3Selection.select(document.createElement('div'));
div
.style('position', 'absolute')
.style('top', 0)
.style('opacity', 0)
.style('pointer-events', 'none')
.style('box-sizing', 'border-box');
return div.node()
}
function getSVGNode(element) {
var svgNode = element.node();
if (!svgNode) return null
if (svgNode.tagName.toLowerCase() === 'svg') return svgNode
return svgNode.ownerSVGElement
}
function getNodeEl() {
if (node == null) {
node = initNode();
// re-add node to DOM
rootElement.appendChild(node);
}
return d3Selection.select(node)
}
// Private - gets the screen coordinates of a shape
//
// Given a shape on the screen, will return an SVGPoint for the directions
// n(north), s(south), e(east), w(west), ne(northeast), se(southeast),
// nw(northwest), sw(southwest).
//
// +-+-+
// | |
// + +
// | |
// +-+-+
//
// Returns an Object {n, s, e, w, nw, sw, ne, se}
function getScreenBBox(targetShape) {
var targetel = target || targetShape;
while (targetel.getScreenCTM == null && targetel.parentNode != null) {
targetel = targetel.parentNode;
}
var bbox = {},
matrix = targetel.getScreenCTM(),
tbbox = targetel.getBBox(),
width = tbbox.width,
height = tbbox.height,
x = tbbox.x,
y = tbbox.y;
point.x = x;
point.y = y;
bbox.nw = point.matrixTransform(matrix);
point.x += width;
bbox.ne = point.matrixTransform(matrix);
point.y += height;
bbox.se = point.matrixTransform(matrix);
point.x -= width;
bbox.sw = point.matrixTransform(matrix);
point.y -= height / 2;
bbox.w = point.matrixTransform(matrix);
point.x += width;
bbox.e = point.matrixTransform(matrix);
point.x -= width / 2;
point.y -= height / 2;
bbox.n = point.matrixTransform(matrix);
point.y += height;
bbox.s = point.matrixTransform(matrix);
return bbox
}
// Private - replace D3JS 3.X d3.functor() function
function functor(v) {
return typeof v === 'function' ? v : function() {
return v
}
}
return tip
}
return index;
})));
{"nodes":[{"id":1136662227329724400,"id_str":"1136662227329724416","user":{"screen_name":"lonnibesancon","followers_count":204},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 15:52:47 +0000 2019","degree":0},{"id":1136659631756009500,"id_str":"1136659631756009472","user":{"screen_name":"duto_guerra","followers_count":2493},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 15:42:28 +0000 2019","degree":0},{"id":1136653761127096300,"id_str":"1136653761127096320","user":{"screen_name":"jwkritchie","followers_count":367},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 15:19:09 +0000 2019","degree":0},{"id":1136651309900345300,"id_str":"1136651309900345344","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 15:09:24 +0000 2019","degree":0},{"id":1136650029022752800,"id_str":"1136650029022752768","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":2,"retweet_count":0,"created_at":"Thu Jun 06 15:04:19 +0000 2019","degree":0},{"id":1136646205021331500,"id_str":"1136646205021331457","user":{"screen_name":"lonnibesancon","followers_count":204},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 14:49:07 +0000 2019","degree":0},{"id":1136646100113399800,"id_str":"1136646100113399808","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 14:48:42 +0000 2019","degree":0},{"id":1136645134899171300,"id_str":"1136645134899171328","user":{"screen_name":"TTrautner","followers_count":140},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 14:44:52 +0000 2019","degree":0},{"id":1136644994956238800,"id_str":"1136644994956238848","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 14:44:19 +0000 2019","degree":0},{"id":1136643730017017900,"id_str":"1136643730017017857","user":{"screen_name":"sbrucknervis","followers_count":18},"favorite_count":7,"retweet_count":3,"created_at":"Thu Jun 06 14:39:17 +0000 2019","degree":0},{"id":1136638830184935400,"id_str":"1136638830184935424","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":6,"retweet_count":0,"created_at":"Thu Jun 06 14:19:49 +0000 2019","degree":0},{"id":1136638217493602300,"id_str":"1136638217493602309","user":{"screen_name":"lonnibesancon","followers_count":204},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 14:17:23 +0000 2019","degree":0},{"id":1136636716146679800,"id_str":"1136636716146679809","user":{"screen_name":"MickaelSereno","followers_count":7},"favorite_count":6,"retweet_count":1,"created_at":"Thu Jun 06 14:11:25 +0000 2019","degree":0},{"id":1136632174185197600,"id_str":"1136632174185197568","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":3,"retweet_count":0,"created_at":"Thu Jun 06 13:53:22 +0000 2019","degree":0},{"id":1136631531156283400,"id_str":"1136631531156283392","user":{"screen_name":"flekschas","followers_count":288},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 13:50:49 +0000 2019","degree":0},{"id":1136631419860660200,"id_str":"1136631419860660224","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":4,"retweet_count":0,"created_at":"Thu Jun 06 13:50:22 +0000 2019","degree":0},{"id":1136626229841260500,"id_str":"1136626229841260550","user":{"screen_name":"accidental_PhD","followers_count":148},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 13:29:45 +0000 2019","degree":0},{"id":1136625964371316700,"id_str":"1136625964371316736","user":{"screen_name":"avilanova01","followers_count":38},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 13:28:42 +0000 2019","degree":0},{"id":1136622020660273200,"id_str":"1136622020660273154","user":{"screen_name":"lonnibesancon","followers_count":204},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 13:13:01 +0000 2019","degree":0},{"id":1136620784942755800,"id_str":"1136620784942755840","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":1,"retweet_count":1,"created_at":"Thu Jun 06 13:08:07 +0000 2019","degree":0},{"id":1136620375721283600,"id_str":"1136620375721283584","user":{"screen_name":"dr_pi","followers_count":822},"favorite_count":19,"retweet_count":3,"created_at":"Thu Jun 06 13:06:29 +0000 2019","degree":0},{"id":1136610645300920300,"id_str":"1136610645300920320","user":{"screen_name":"Twosixlabs","followers_count":160},"favorite_count":2,"retweet_count":0,"created_at":"Thu Jun 06 12:27:49 +0000 2019","degree":0},{"id":1136607169288126500,"id_str":"1136607169288126464","user":{"screen_name":"sharoz","followers_count":1820},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 12:14:00 +0000 2019","degree":0},{"id":1136587811510005800,"id_str":"1136587811510005761","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 10:57:05 +0000 2019","degree":0},{"id":1136585607063461900,"id_str":"1136585607063461888","user":{"screen_name":"antarcticdesign","followers_count":407},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 10:48:20 +0000 2019","degree":0},{"id":1136584655396884500,"id_str":"1136584655396884481","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":6,"retweet_count":2,"created_at":"Thu Jun 06 10:44:33 +0000 2019","degree":0},{"id":1136565935865770000,"id_str":"1136565935865769984","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 09:30:10 +0000 2019","degree":0},{"id":1136563674808750100,"id_str":"1136563674808750080","user":{"screen_name":"mrshahidlatif","followers_count":33},"favorite_count":2,"retweet_count":0,"created_at":"Thu Jun 06 09:21:11 +0000 2019","degree":0},{"id":1136556366896803800,"id_str":"1136556366896803840","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 08:52:08 +0000 2019","degree":0},{"id":1136555445135581200,"id_str":"1136555445135581190","user":{"screen_name":"Friebsch","followers_count":71},"favorite_count":0,"retweet_count":34,"created_at":"Thu Jun 06 08:48:28 +0000 2019","degree":0},{"id":1136554521734373400,"id_str":"1136554521734373376","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 08:44:48 +0000 2019","degree":0},{"id":1136549493317492700,"id_str":"1136549493317492737","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 08:24:49 +0000 2019","degree":0},{"id":1136540668069916700,"id_str":"1136540668069916673","user":{"screen_name":"_____leena_____","followers_count":21},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 07:49:45 +0000 2019","degree":0},{"id":1136538591960666100,"id_str":"1136538591960666113","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 07:41:30 +0000 2019","degree":0},{"id":1136500344572088300,"id_str":"1136500344572088320","user":{"screen_name":"TofHurter","followers_count":317},"favorite_count":0,"retweet_count":34,"created_at":"Thu Jun 06 05:09:31 +0000 2019","degree":0},{"id":1136492571377766400,"id_str":"1136492571377766400","user":{"screen_name":"c_z","followers_count":1882},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 04:38:38 +0000 2019","degree":0},{"id":1136489934708248600,"id_str":"1136489934708248576","user":{"screen_name":"sharoz","followers_count":1820},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 04:28:10 +0000 2019","degree":0},{"id":1136474596520222700,"id_str":"1136474596520222721","user":{"screen_name":"EthanKerzner","followers_count":87},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 03:27:13 +0000 2019","degree":0},{"id":1136451567844905000,"id_str":"1136451567844904960","user":{"screen_name":"FisherDanyel","followers_count":1460},"favorite_count":0,"retweet_count":4,"created_at":"Thu Jun 06 01:55:42 +0000 2019","degree":0},{"id":1136436488084889600,"id_str":"1136436488084889606","user":{"screen_name":"jorgaf","followers_count":775},"favorite_count":0,"retweet_count":34,"created_at":"Thu Jun 06 00:55:47 +0000 2019","degree":0},{"id":1136418939083378700,"id_str":"1136418939083378698","user":{"screen_name":"myjyby","followers_count":383},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 23:46:03 +0000 2019","degree":0},{"id":1136398340457975800,"id_str":"1136398340457975808","user":{"screen_name":"datapirata","followers_count":1506},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 22:24:12 +0000 2019","degree":0},{"id":1136395718820847600,"id_str":"1136395718820847617","user":{"screen_name":"GacquerW","followers_count":35},"favorite_count":0,"retweet_count":22,"created_at":"Wed Jun 05 22:13:47 +0000 2019","degree":0},{"id":1136367017357959200,"id_str":"1136367017357959169","user":{"screen_name":"sharoz","followers_count":1820},"favorite_count":0,"retweet_count":4,"created_at":"Wed Jun 05 20:19:44 +0000 2019","degree":0},{"id":1136363066914947100,"id_str":"1136363066914947072","user":{"screen_name":"auticomics","followers_count":3353},"favorite_count":1,"retweet_count":0,"created_at":"Wed Jun 05 20:04:02 +0000 2019","degree":0},{"id":1136351096199417900,"id_str":"1136351096199417861","user":{"screen_name":"h_heberle","followers_count":48},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 19:16:28 +0000 2019","degree":0},{"id":1136345576679903200,"id_str":"1136345576679903234","user":{"screen_name":"datahobbit","followers_count":19},"favorite_count":0,"retweet_count":4,"created_at":"Wed Jun 05 18:54:32 +0000 2019","degree":0},{"id":1136317721023537200,"id_str":"1136317721023537152","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":6,"retweet_count":0,"created_at":"Wed Jun 05 17:03:51 +0000 2019","degree":0},{"id":1136317383298211800,"id_str":"1136317383298211840","user":{"screen_name":"RAPOSTHUMUS","followers_count":501},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 17:02:30 +0000 2019","degree":0},{"id":1136315347689193500,"id_str":"1136315347689193472","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 16:54:25 +0000 2019","degree":0},{"id":1136313274448982000,"id_str":"1136313274448982017","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":3,"retweet_count":0,"created_at":"Wed Jun 05 16:46:10 +0000 2019","degree":0},{"id":1136304223061041200,"id_str":"1136304223061041152","user":{"screen_name":"kristw","followers_count":2888},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 16:10:12 +0000 2019","degree":0},{"id":1136299550086504400,"id_str":"1136299550086504448","user":{"screen_name":"nostalgiadriven","followers_count":131},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 15:51:38 +0000 2019","degree":0},{"id":1136296619387818000,"id_str":"1136296619387817984","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 15:40:00 +0000 2019","degree":0},{"id":1136296597774569500,"id_str":"1136296597774569474","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 15:39:54 +0000 2019","degree":0},{"id":1136295772683669500,"id_str":"1136295772683669507","user":{"screen_name":"VRVis","followers_count":1004},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 15:36:38 +0000 2019","degree":0},{"id":1136293702307991600,"id_str":"1136293702307991552","user":{"screen_name":"sjengle","followers_count":544},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 15:28:24 +0000 2019","degree":0},{"id":1136292777216630800,"id_str":"1136292777216630784","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 15:24:44 +0000 2019","degree":0},{"id":1136285371283779600,"id_str":"1136285371283779585","user":{"screen_name":"mandykeck","followers_count":23},"favorite_count":5,"retweet_count":0,"created_at":"Wed Jun 05 14:55:18 +0000 2019","degree":0},{"id":1136285291235270700,"id_str":"1136285291235270657","user":{"screen_name":"LacePadilla","followers_count":1414},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 14:54:59 +0000 2019","degree":0},{"id":1136283032590180400,"id_str":"1136283032590180352","user":{"screen_name":"ChrisHeadleand","followers_count":1041},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 14:46:00 +0000 2019","degree":0},{"id":1136282878059454500,"id_str":"1136282878059454466","user":{"screen_name":"BangorCSEE","followers_count":311},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 14:45:23 +0000 2019","degree":0},{"id":1136282699570827300,"id_str":"1136282699570827266","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":6,"retweet_count":2,"created_at":"Wed Jun 05 14:44:41 +0000 2019","degree":0},{"id":1136277337555603500,"id_str":"1136277337555603456","user":{"screen_name":"woollyleanne","followers_count":159},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 14:23:22 +0000 2019","degree":0},{"id":1136272595215626200,"id_str":"1136272595215626240","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 14:04:32 +0000 2019","degree":0},{"id":1136271581003563000,"id_str":"1136271581003563008","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":1,"retweet_count":0,"created_at":"Wed Jun 05 14:00:30 +0000 2019","degree":0},{"id":1136264658774646800,"id_str":"1136264658774646785","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 13:33:00 +0000 2019","degree":0},{"id":1136264617968197600,"id_str":"1136264617968197632","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":3,"retweet_count":0,"created_at":"Wed Jun 05 13:32:50 +0000 2019","degree":0},{"id":1136264406457884700,"id_str":"1136264406457884674","user":{"screen_name":"carolinanobre84","followers_count":61},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 13:31:59 +0000 2019","degree":0},{"id":1136263973802823700,"id_str":"1136263973802823681","user":{"screen_name":"ThomasHurtut","followers_count":69},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 13:30:16 +0000 2019","degree":0},{"id":1136262695819153400,"id_str":"1136262695819153409","user":{"screen_name":"SarahCreem","followers_count":77},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 13:25:12 +0000 2019","degree":0},{"id":1136257193139998700,"id_str":"1136257193139998721","user":{"screen_name":"jandot","followers_count":2533},"favorite_count":5,"retweet_count":1,"created_at":"Wed Jun 05 13:03:20 +0000 2019","degree":0},{"id":1136242605367255000,"id_str":"1136242605367255040","user":{"screen_name":"wilantgomari","followers_count":48},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 12:05:22 +0000 2019","degree":0},{"id":1136241262397415400,"id_str":"1136241262397415424","user":{"screen_name":"aaecheve","followers_count":342},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 12:00:01 +0000 2019","degree":0},{"id":1136240668693684200,"id_str":"1136240668693684225","user":{"screen_name":"duto_guerra","followers_count":2493},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 11:57:40 +0000 2019","degree":0},{"id":1136236770088149000,"id_str":"1136236770088148993","user":{"screen_name":"stevenbeeckman","followers_count":2306},"favorite_count":0,"retweet_count":4,"created_at":"Wed Jun 05 11:42:10 +0000 2019","degree":0},{"id":1136234141656277000,"id_str":"1136234141656276998","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 11:31:44 +0000 2019","degree":0},{"id":1136233813900701700,"id_str":"1136233813900701702","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 11:30:26 +0000 2019","degree":0},{"id":1136233724297846800,"id_str":"1136233724297846784","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 11:30:04 +0000 2019","degree":0},{"id":1136233682455408600,"id_str":"1136233682455408641","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 11:29:54 +0000 2019","degree":0},{"id":1136230324990554100,"id_str":"1136230324990554114","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 11:16:34 +0000 2019","degree":0},{"id":1136230091921535000,"id_str":"1136230091921534977","user":{"screen_name":"geovisual","followers_count":1130},"favorite_count":11,"retweet_count":1,"created_at":"Wed Jun 05 11:15:38 +0000 2019","degree":0},{"id":1136228467362684900,"id_str":"1136228467362684928","user":{"screen_name":"jeffrey_heer","followers_count":10215},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 11:09:11 +0000 2019","degree":0},{"id":1136228245261758500,"id_str":"1136228245261758465","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":21,"retweet_count":4,"created_at":"Wed Jun 05 11:08:18 +0000 2019","degree":0},{"id":1136227066544840700,"id_str":"1136227066544840704","user":{"screen_name":"laneharrison","followers_count":1519},"favorite_count":14,"retweet_count":3,"created_at":"Wed Jun 05 11:03:37 +0000 2019","degree":0},{"id":1136226861363671000,"id_str":"1136226861363671041","user":{"screen_name":"uwdata","followers_count":5506},"favorite_count":14,"retweet_count":1,"created_at":"Wed Jun 05 11:02:48 +0000 2019","degree":0},{"id":1136226040395771900,"id_str":"1136226040395771906","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":3,"retweet_count":0,"created_at":"Wed Jun 05 10:59:32 +0000 2019","degree":0},{"id":1136225646722650100,"id_str":"1136225646722650114","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":13,"retweet_count":0,"created_at":"Wed Jun 05 10:57:58 +0000 2019","degree":0},{"id":1136224656283897900,"id_str":"1136224656283897858","user":{"screen_name":"prashkuntala","followers_count":24},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 10:54:02 +0000 2019","degree":0},{"id":1136221503622697000,"id_str":"1136221503622696961","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 10:41:31 +0000 2019","degree":0},{"id":1136221497796829200,"id_str":"1136221497796829184","user":{"screen_name":"ksuhre","followers_count":1128},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 10:41:29 +0000 2019","degree":0},{"id":1136221083932270600,"id_str":"1136221083932270593","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":11,"retweet_count":2,"created_at":"Wed Jun 05 10:39:51 +0000 2019","degree":0},{"id":1136219572862894100,"id_str":"1136219572862894082","user":{"screen_name":"ngehlenborg","followers_count":2630},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 10:33:50 +0000 2019","degree":0},{"id":1136218832664764400,"id_str":"1136218832664764416","user":{"screen_name":"samquinan","followers_count":64},"favorite_count":10,"retweet_count":3,"created_at":"Wed Jun 05 10:30:54 +0000 2019","degree":0},{"id":1136215971209891800,"id_str":"1136215971209891845","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":9,"retweet_count":0,"created_at":"Wed Jun 05 10:19:32 +0000 2019","degree":0},{"id":1136215675251417100,"id_str":"1136215675251417088","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":7,"retweet_count":0,"created_at":"Wed Jun 05 10:18:21 +0000 2019","degree":0},{"id":1136215550563147800,"id_str":"1136215550563147777","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":18,"retweet_count":1,"created_at":"Wed Jun 05 10:17:51 +0000 2019","degree":0},{"id":1136212168641253400,"id_str":"1136212168641253377","user":{"screen_name":"TrackandKnow","followers_count":73},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 10:04:25 +0000 2019","degree":0},{"id":1136210308517810200,"id_str":"1136210308517810176","user":{"screen_name":"visualisingdata","followers_count":42884},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 09:57:01 +0000 2019","degree":0},{"id":1136206110749339600,"id_str":"1136206110749339649","user":{"screen_name":"alediehl","followers_count":90},"favorite_count":10,"retweet_count":0,"created_at":"Wed Jun 05 09:40:21 +0000 2019","degree":0},{"id":1136205912803369000,"id_str":"1136205912803368961","user":{"screen_name":"geovisual","followers_count":1130},"favorite_count":8,"retweet_count":1,"created_at":"Wed Jun 05 09:39:33 +0000 2019","degree":0},{"id":1136205275852152800,"id_str":"1136205275852152832","user":{"screen_name":"jamesscottbrown","followers_count":141},"favorite_count":1,"retweet_count":0,"created_at":"Wed Jun 05 09:37:02 +0000 2019","degree":0},{"id":1136203201227739100,"id_str":"1136203201227739137","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":4,"retweet_count":0,"created_at":"Wed Jun 05 09:28:47 +0000 2019","degree":0},{"id":1136202651417415700,"id_str":"1136202651417415683","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 09:26:36 +0000 2019","degree":0},{"id":1136202463281864700,"id_str":"1136202463281864704","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 09:25:51 +0000 2019","degree":0},{"id":1136202188693409800,"id_str":"1136202188693409794","user":{"screen_name":"klaus_lml","followers_count":12},"favorite_count":8,"retweet_count":2,"created_at":"Wed Jun 05 09:24:46 +0000 2019","degree":0},{"id":1136199296397848600,"id_str":"1136199296397848577","user":{"screen_name":"rlndscheepens","followers_count":47},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 09:13:16 +0000 2019","degree":0},{"id":1136199111974248400,"id_str":"1136199111974248449","user":{"screen_name":"BangorCSEE","followers_count":311},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 09:12:32 +0000 2019","degree":0},{"id":1136199081414578200,"id_str":"1136199081414578178","user":{"screen_name":"EricMorth","followers_count":5},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 09:12:25 +0000 2019","degree":0},{"id":1136199068684881900,"id_str":"1136199068684881922","user":{"screen_name":"BangorCSEE","followers_count":311},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 09:12:22 +0000 2019","degree":0},{"id":1136198890632437800,"id_str":"1136198890632437765","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":11,"retweet_count":1,"created_at":"Wed Jun 05 09:11:39 +0000 2019","degree":0},{"id":1136198829454184400,"id_str":"1136198829454184449","user":{"screen_name":"craiganslow","followers_count":945},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 09:11:25 +0000 2019","degree":0},{"id":1136196517633675300,"id_str":"1136196517633675264","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":0,"retweet_count":1,"created_at":"Wed Jun 05 09:02:13 +0000 2019","degree":0},{"id":1136196270803116000,"id_str":"1136196270803116032","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 09:01:15 +0000 2019","degree":0},{"id":1136196209029406700,"id_str":"1136196209029406720","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 09:01:00 +0000 2019","degree":0},{"id":1136195359640870900,"id_str":"1136195359640870914","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":10,"retweet_count":1,"created_at":"Wed Jun 05 08:57:37 +0000 2019","degree":0},{"id":1136194568658006000,"id_str":"1136194568658006021","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":3,"retweet_count":0,"created_at":"Wed Jun 05 08:54:29 +0000 2019","degree":0},{"id":1136193659471323100,"id_str":"1136193659471323136","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 08:50:52 +0000 2019","degree":0},{"id":1136193144482144300,"id_str":"1136193144482144256","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":5,"retweet_count":0,"created_at":"Wed Jun 05 08:48:49 +0000 2019","degree":0},{"id":1136190687047823400,"id_str":"1136190687047823360","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":21,"retweet_count":2,"created_at":"Wed Jun 05 08:39:03 +0000 2019","degree":0},{"id":1136187319155908600,"id_str":"1136187319155908609","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":3,"retweet_count":0,"created_at":"Wed Jun 05 08:25:40 +0000 2019","degree":0},{"id":1136184991753355300,"id_str":"1136184991753355265","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":2,"retweet_count":0,"created_at":"Wed Jun 05 08:16:25 +0000 2019","degree":0},{"id":1136184475845636100,"id_str":"1136184475845636096","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":4,"retweet_count":1,"created_at":"Wed Jun 05 08:14:22 +0000 2019","degree":0},{"id":1136183206456246300,"id_str":"1136183206456246273","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":6,"retweet_count":0,"created_at":"Wed Jun 05 08:09:20 +0000 2019","degree":0},{"id":1136182664732561400,"id_str":"1136182664732561409","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":5,"retweet_count":1,"created_at":"Wed Jun 05 08:07:11 +0000 2019","degree":0},{"id":1136180530859429900,"id_str":"1136180530859429889","user":{"screen_name":"ialeT","followers_count":722},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 07:58:42 +0000 2019","degree":0},{"id":1136161953976426500,"id_str":"1136161953976426497","user":{"screen_name":"vanechev","followers_count":274},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 06:44:53 +0000 2019","degree":0},{"id":1136153144524562400,"id_str":"1136153144524562434","user":{"screen_name":"i_mash","followers_count":484},"favorite_count":1,"retweet_count":0,"created_at":"Wed Jun 05 06:09:53 +0000 2019","degree":0},{"id":1136145071659728900,"id_str":"1136145071659728896","user":{"screen_name":"justahappygeek","followers_count":124},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 05:37:48 +0000 2019","degree":0},{"id":1136143787493908500,"id_str":"1136143787493908481","user":{"screen_name":"paolobuono","followers_count":97},"favorite_count":0,"retweet_count":2,"created_at":"Wed Jun 05 05:32:42 +0000 2019","degree":0},{"id":1136118212872015900,"id_str":"1136118212872015872","user":{"screen_name":"OBuchel","followers_count":52},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 03:51:04 +0000 2019","degree":0},{"id":1136115077491449900,"id_str":"1136115077491449856","user":{"screen_name":"CallMeDeconBlue","followers_count":26},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 03:38:37 +0000 2019","degree":0},{"id":1136113901509238800,"id_str":"1136113901509238784","user":{"screen_name":"GarmireGroup","followers_count":1962},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 03:33:56 +0000 2019","degree":0},{"id":1136104017648468000,"id_str":"1136104017648467968","user":{"screen_name":"i_mash","followers_count":484},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 02:54:40 +0000 2019","degree":0},{"id":1136103996043620400,"id_str":"1136103996043620352","user":{"screen_name":"anshulkundaje","followers_count":5358},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 02:54:35 +0000 2019","degree":0},{"id":1136103415732420600,"id_str":"1136103415732420608","user":{"screen_name":"Jiang0717","followers_count":75},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 02:52:16 +0000 2019","degree":0},{"id":1136072754464268300,"id_str":"1136072754464268289","user":{"screen_name":"ljegou","followers_count":2190},"favorite_count":0,"retweet_count":3,"created_at":"Wed Jun 05 00:50:26 +0000 2019","degree":0},{"id":1136072542387658800,"id_str":"1136072542387658753","user":{"screen_name":"martonolbei","followers_count":158},"favorite_count":0,"retweet_count":6,"created_at":"Wed Jun 05 00:49:35 +0000 2019","degree":0},{"id":1136069297233682400,"id_str":"1136069297233682432","user":{"screen_name":"johliem","followers_count":83},"favorite_count":0,"retweet_count":7,"created_at":"Wed Jun 05 00:36:42 +0000 2019","degree":0},{"id":1136061331813965800,"id_str":"1136061331813965825","user":{"screen_name":"Biff_Bruise","followers_count":3445},"favorite_count":0,"retweet_count":0,"created_at":"Wed Jun 05 00:05:03 +0000 2019","degree":0},{"id":1136061259009396700,"id_str":"1136061259009396737","user":{"screen_name":"dphansti","followers_count":251},"favorite_count":0,"retweet_count":34,"created_at":"Wed Jun 05 00:04:45 +0000 2019","degree":0},{"id":1136026823148691500,"id_str":"1136026823148691457","user":{"screen_name":"jandot","followers_count":2533},"favorite_count":2,"retweet_count":0,"created_at":"Tue Jun 04 21:47:55 +0000 2019","degree":0},{"id":1136006025851691000,"id_str":"1136006025851691008","user":{"screen_name":"Asem_A_A","followers_count":32},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 20:25:17 +0000 2019","degree":0},{"id":1135998353974546400,"id_str":"1135998353974546432","user":{"screen_name":"flekschas","followers_count":288},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 19:54:48 +0000 2019","degree":0},{"id":1135990906509828100,"id_str":"1135990906509828096","user":{"screen_name":"gauravjain49","followers_count":319},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 19:25:12 +0000 2019","degree":0},{"id":1135990758224347100,"id_str":"1135990758224347136","user":{"screen_name":"jaumetet","followers_count":709},"favorite_count":0,"retweet_count":4,"created_at":"Tue Jun 04 19:24:37 +0000 2019","degree":0},{"id":1135987371063816200,"id_str":"1135987371063816192","user":{"screen_name":"rJBeecham","followers_count":237},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 19:11:09 +0000 2019","degree":0},{"id":1135973851974766600,"id_str":"1135973851974766598","user":{"screen_name":"MickaelSereno","followers_count":7},"favorite_count":6,"retweet_count":0,"created_at":"Tue Jun 04 18:17:26 +0000 2019","degree":0},{"id":1135970694649516000,"id_str":"1135970694649516033","user":{"screen_name":"jvilledieu","followers_count":996},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 18:04:53 +0000 2019","degree":0},{"id":1135968976322932700,"id_str":"1135968976322932736","user":{"screen_name":"MickaelSereno","followers_count":7},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 17:58:03 +0000 2019","degree":0},{"id":1135963786957840400,"id_str":"1135963786957840384","user":{"screen_name":"wjrl59","followers_count":289},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 17:37:26 +0000 2019","degree":0},{"id":1135957042546532400,"id_str":"1135957042546532352","user":{"screen_name":"jwoLondon","followers_count":1028},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 17:10:38 +0000 2019","degree":0},{"id":1135953260496470000,"id_str":"1135953260496470016","user":{"screen_name":"jameschurchman","followers_count":815},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 16:55:36 +0000 2019","degree":0},{"id":1135953185384742900,"id_str":"1135953185384742912","user":{"screen_name":"micahstubbs","followers_count":4721},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 16:55:19 +0000 2019","degree":0},{"id":1135952665924526100,"id_str":"1135952665924526080","user":{"screen_name":"TweetBrigita","followers_count":359},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 16:53:15 +0000 2019","degree":0},{"id":1135945499947753500,"id_str":"1135945499947753472","user":{"screen_name":"rfsaldanhario","followers_count":147},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 16:24:46 +0000 2019","degree":0},{"id":1135940434427928600,"id_str":"1135940434427928582","user":{"screen_name":"colourspeak","followers_count":1095},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 16:04:38 +0000 2019","degree":0},{"id":1135940243037704200,"id_str":"1135940243037704192","user":{"screen_name":"ngehlenborg","followers_count":2630},"favorite_count":8,"retweet_count":1,"created_at":"Tue Jun 04 16:03:53 +0000 2019","degree":0},{"id":1135939269829320700,"id_str":"1135939269829320705","user":{"screen_name":"antarcticdesign","followers_count":407},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 16:00:01 +0000 2019","degree":0},{"id":1135937385013710800,"id_str":"1135937385013710849","user":{"screen_name":"ngehlenborg","followers_count":2630},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 15:52:31 +0000 2019","degree":0},{"id":1135929434962321400,"id_str":"1135929434962321408","user":{"screen_name":"junpatti","followers_count":26},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 15:20:56 +0000 2019","degree":0},{"id":1135928996154269700,"id_str":"1135928996154269696","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":4,"retweet_count":0,"created_at":"Tue Jun 04 15:19:11 +0000 2019","degree":0},{"id":1135928729635631100,"id_str":"1135928729635631105","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":4,"retweet_count":1,"created_at":"Tue Jun 04 15:18:08 +0000 2019","degree":0},{"id":1135922925914210300,"id_str":"1135922925914210304","user":{"screen_name":"geovisual","followers_count":1130},"favorite_count":4,"retweet_count":1,"created_at":"Tue Jun 04 14:55:04 +0000 2019","degree":0},{"id":1135921599801020400,"id_str":"1135921599801020416","user":{"screen_name":"kjpryan","followers_count":39},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 14:49:48 +0000 2019","degree":0},{"id":1135919921429340200,"id_str":"1135919921429340160","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":11,"retweet_count":1,"created_at":"Tue Jun 04 14:43:08 +0000 2019","degree":0},{"id":1135918867274842100,"id_str":"1135918867274842121","user":{"screen_name":"paolobuono","followers_count":97},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 14:38:56 +0000 2019","degree":0},{"id":1135916669270761500,"id_str":"1135916669270761473","user":{"screen_name":"geovisual","followers_count":1130},"favorite_count":3,"retweet_count":1,"created_at":"Tue Jun 04 14:30:12 +0000 2019","degree":0},{"id":1135913780066447400,"id_str":"1135913780066447362","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 14:18:44 +0000 2019","degree":0},{"id":1135911538659741700,"id_str":"1135911538659741701","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":2,"created_at":"Tue Jun 04 14:09:49 +0000 2019","degree":0},{"id":1135907548563771400,"id_str":"1135907548563771397","user":{"screen_name":"cagatay_turkay","followers_count":334},"favorite_count":0,"retweet_count":2,"created_at":"Tue Jun 04 13:53:58 +0000 2019","degree":0},{"id":1135904710446211100,"id_str":"1135904710446211073","user":{"screen_name":"martonolbei","followers_count":158},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 13:42:41 +0000 2019","degree":0},{"id":1135904017186467800,"id_str":"1135904017186467840","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 13:39:56 +0000 2019","degree":0},{"id":1135903972806594600,"id_str":"1135903972806594560","user":{"screen_name":"marc_streit","followers_count":554},"favorite_count":24,"retweet_count":3,"created_at":"Tue Jun 04 13:39:45 +0000 2019","degree":0},{"id":1135903806494007300,"id_str":"1135903806494007297","user":{"screen_name":"arnicas","followers_count":11943},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 13:39:06 +0000 2019","degree":0},{"id":1135903379404873700,"id_str":"1135903379404873728","user":{"screen_name":"denisparra","followers_count":1540},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 13:37:24 +0000 2019","degree":0},{"id":1135903185208533000,"id_str":"1135903185208532992","user":{"screen_name":"visdesignlab","followers_count":579},"favorite_count":9,"retweet_count":1,"created_at":"Tue Jun 04 13:36:38 +0000 2019","degree":0},{"id":1135902806223794200,"id_str":"1135902806223794176","user":{"screen_name":"carolinanobre84","followers_count":61},"favorite_count":0,"retweet_count":34,"created_at":"Tue Jun 04 13:35:07 +0000 2019","degree":0},{"id":1135902782387605500,"id_str":"1135902782387605506","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":6,"created_at":"Tue Jun 04 13:35:02 +0000 2019","degree":0},{"id":1135902708559437800,"id_str":"1135902708559437825","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":4,"created_at":"Tue Jun 04 13:34:44 +0000 2019","degree":0},{"id":1135902544125976600,"id_str":"1135902544125976577","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":114,"retweet_count":34,"created_at":"Tue Jun 04 13:34:05 +0000 2019","degree":0},{"id":1135902436793696300,"id_str":"1135902436793696257","user":{"screen_name":"XiaoruYuan","followers_count":57},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 13:33:39 +0000 2019","degree":0},{"id":1135902316396261400,"id_str":"1135902316396261376","user":{"screen_name":"XiaoruYuan","followers_count":57},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 13:33:10 +0000 2019","degree":0},{"id":1135900072460394500,"id_str":"1135900072460394497","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":4,"retweet_count":2,"created_at":"Tue Jun 04 13:24:15 +0000 2019","degree":0},{"id":1135898951314542600,"id_str":"1135898951314542592","user":{"screen_name":"ale_pal_","followers_count":85},"favorite_count":2,"retweet_count":0,"created_at":"Tue Jun 04 13:19:48 +0000 2019","degree":0},{"id":1135897626010902500,"id_str":"1135897626010902528","user":{"screen_name":"grjenkin","followers_count":6842},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 13:14:32 +0000 2019","degree":0},{"id":1135891949087596500,"id_str":"1135891949087596544","user":{"screen_name":"FraunhoferIAIS","followers_count":2015},"favorite_count":8,"retweet_count":1,"created_at":"Tue Jun 04 12:51:59 +0000 2019","degree":0},{"id":1135887216767512600,"id_str":"1135887216767512581","user":{"screen_name":"craiganslow","followers_count":945},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 12:33:10 +0000 2019","degree":0},{"id":1135877633273716700,"id_str":"1135877633273716736","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 11:55:06 +0000 2019","degree":0},{"id":1135875692426666000,"id_str":"1135875692426665984","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":5,"retweet_count":0,"created_at":"Tue Jun 04 11:47:23 +0000 2019","degree":0},{"id":1135870208567074800,"id_str":"1135870208567074816","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 11:25:35 +0000 2019","degree":0},{"id":1135869389776011300,"id_str":"1135869389776011265","user":{"screen_name":"johliem","followers_count":83},"favorite_count":0,"retweet_count":2,"created_at":"Tue Jun 04 11:22:20 +0000 2019","degree":0},{"id":1135868140871671800,"id_str":"1135868140871671816","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":4,"retweet_count":2,"created_at":"Tue Jun 04 11:17:22 +0000 2019","degree":0},{"id":1135864845574856700,"id_str":"1135864845574856704","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":1,"retweet_count":0,"created_at":"Tue Jun 04 11:04:17 +0000 2019","degree":0},{"id":1135862387444265000,"id_str":"1135862387444264960","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":8,"retweet_count":2,"created_at":"Tue Jun 04 10:54:31 +0000 2019","degree":0},{"id":1135860581871837200,"id_str":"1135860581871837185","user":{"screen_name":"CityR_E","followers_count":32},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 10:47:20 +0000 2019","degree":0},{"id":1135858905463099400,"id_str":"1135858905463099392","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 10:40:40 +0000 2019","degree":0},{"id":1135854230936465400,"id_str":"1135854230936465413","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":7,"created_at":"Tue Jun 04 10:22:06 +0000 2019","degree":0},{"id":1135851950652690400,"id_str":"1135851950652690437","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 10:13:02 +0000 2019","degree":0},{"id":1135848369761456100,"id_str":"1135848369761456128","user":{"screen_name":"benjbach","followers_count":1746},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 09:58:49 +0000 2019","degree":0},{"id":1135847982086144000,"id_str":"1135847982086144000","user":{"screen_name":"benjbach","followers_count":1746},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 09:57:16 +0000 2019","degree":0},{"id":1135846759446601700,"id_str":"1135846759446601729","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":42,"retweet_count":7,"created_at":"Tue Jun 04 09:52:25 +0000 2019","degree":0},{"id":1135843881478762500,"id_str":"1135843881478762496","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 09:40:58 +0000 2019","degree":0},{"id":1135841357354930200,"id_str":"1135841357354930176","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":0,"retweet_count":2,"created_at":"Tue Jun 04 09:30:57 +0000 2019","degree":0},{"id":1135841078643482600,"id_str":"1135841078643482624","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":1,"retweet_count":0,"created_at":"Tue Jun 04 09:29:50 +0000 2019","degree":0},{"id":1135840777005932500,"id_str":"1135840777005932544","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 09:28:38 +0000 2019","degree":0},{"id":1135840295180996600,"id_str":"1135840295180996614","user":{"screen_name":"flueko","followers_count":662},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 09:26:43 +0000 2019","degree":0},{"id":1135839173158592500,"id_str":"1135839173158592512","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 09:22:16 +0000 2019","degree":0},{"id":1135838478506364900,"id_str":"1135838478506364928","user":{"screen_name":"mirelard","followers_count":84},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 09:19:30 +0000 2019","degree":0},{"id":1135838468993671200,"id_str":"1135838468993671168","user":{"screen_name":"mirelard","followers_count":84},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 09:19:28 +0000 2019","degree":0},{"id":1135838458524643300,"id_str":"1135838458524643328","user":{"screen_name":"mirelard","followers_count":84},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 09:19:26 +0000 2019","degree":0},{"id":1135838448936525800,"id_str":"1135838448936525825","user":{"screen_name":"mirelard","followers_count":84},"favorite_count":0,"retweet_count":1,"created_at":"Tue Jun 04 09:19:23 +0000 2019","degree":0},{"id":1135838359606181900,"id_str":"1135838359606181889","user":{"screen_name":"mirelard","followers_count":84},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 09:19:02 +0000 2019","degree":0},{"id":1135837787423498200,"id_str":"1135837787423498240","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":2,"retweet_count":0,"created_at":"Tue Jun 04 09:16:46 +0000 2019","degree":0},{"id":1135837609597517800,"id_str":"1135837609597517825","user":{"screen_name":"mandykeck","followers_count":23},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 09:16:03 +0000 2019","degree":0},{"id":1135837597165662200,"id_str":"1135837597165662208","user":{"screen_name":"rafaelhenkin","followers_count":13},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 09:16:00 +0000 2019","degree":0},{"id":1135837274397184000,"id_str":"1135837274397184002","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":3,"retweet_count":1,"created_at":"Tue Jun 04 09:14:43 +0000 2019","degree":0},{"id":1135834049459740700,"id_str":"1135834049459740672","user":{"screen_name":"jsndyks","followers_count":610},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 09:01:54 +0000 2019","degree":0},{"id":1135832583814680600,"id_str":"1135832583814680577","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Tue Jun 04 08:56:05 +0000 2019","degree":0},{"id":1135832562805461000,"id_str":"1135832562805460994","user":{"screen_name":"cagatay_turkay","followers_count":334},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 08:56:00 +0000 2019","degree":0},{"id":1135832323000295400,"id_str":"1135832323000295425","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 08:55:03 +0000 2019","degree":0},{"id":1135831906069688300,"id_str":"1135831906069688327","user":{"screen_name":"KevinAllain451","followers_count":31},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 08:53:23 +0000 2019","degree":0},{"id":1135831648854061000,"id_str":"1135831648854061056","user":{"screen_name":"johliem","followers_count":83},"favorite_count":0,"retweet_count":12,"created_at":"Tue Jun 04 08:52:22 +0000 2019","degree":0},{"id":1135831313829834800,"id_str":"1135831313829834753","user":{"screen_name":"LaughlinPaul","followers_count":1189},"favorite_count":2,"retweet_count":0,"created_at":"Tue Jun 04 08:51:02 +0000 2019","degree":0},{"id":1135831298117947400,"id_str":"1135831298117947392","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":51,"retweet_count":12,"created_at":"Tue Jun 04 08:50:58 +0000 2019","degree":0},{"id":1135829233278890000,"id_str":"1135829233278889985","user":{"screen_name":"leena_0516","followers_count":267},"favorite_count":2,"retweet_count":0,"created_at":"Tue Jun 04 08:42:46 +0000 2019","degree":0},{"id":1135825393255100400,"id_str":"1135825393255100417","user":{"screen_name":"_____leena_____","followers_count":21},"favorite_count":3,"retweet_count":0,"created_at":"Tue Jun 04 08:27:31 +0000 2019","degree":0},{"id":1135720176203079700,"id_str":"1135720176203079680","user":{"screen_name":"_shimizu","followers_count":2731},"favorite_count":0,"retweet_count":22,"created_at":"Tue Jun 04 01:29:25 +0000 2019","degree":0},{"id":1135655086321995800,"id_str":"1135655086321995776","user":{"screen_name":"Almecid","followers_count":2096},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 21:10:46 +0000 2019","degree":0},{"id":1135628823481999400,"id_str":"1135628823481999360","user":{"screen_name":"lonnibesancon","followers_count":204},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 19:26:25 +0000 2019","degree":0},{"id":1135620154056945700,"id_str":"1135620154056945666","user":{"screen_name":"yumnamoony","followers_count":195},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 18:51:58 +0000 2019","degree":0},{"id":1135606531842564100,"id_str":"1135606531842564102","user":{"screen_name":"tmrhyne","followers_count":329},"favorite_count":1,"retweet_count":0,"created_at":"Mon Jun 03 17:57:50 +0000 2019","degree":0},{"id":1135583884068892700,"id_str":"1135583884068892672","user":{"screen_name":"kristw","followers_count":2888},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 16:27:50 +0000 2019","degree":0},{"id":1135581918643314700,"id_str":"1135581918643314689","user":{"screen_name":"mackeprm","followers_count":31},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 16:20:02 +0000 2019","degree":0},{"id":1135581100313665500,"id_str":"1135581100313665543","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":10,"retweet_count":0,"created_at":"Mon Jun 03 16:16:47 +0000 2019","degree":0},{"id":1135580791495430100,"id_str":"1135580791495430145","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 16:15:33 +0000 2019","degree":0},{"id":1135573133736517600,"id_str":"1135573133736517632","user":{"screen_name":"MichelleSaxton9","followers_count":30},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 15:45:07 +0000 2019","degree":0},{"id":1135564524382277600,"id_str":"1135564524382277632","user":{"screen_name":"RSevastjanova","followers_count":47},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 15:10:55 +0000 2019","degree":0},{"id":1135558267361349600,"id_str":"1135558267361349632","user":{"screen_name":"b8con","followers_count":7093},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 14:46:03 +0000 2019","degree":0},{"id":1135557033007050800,"id_str":"1135557033007050752","user":{"screen_name":"Tacitia","followers_count":313},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 14:41:08 +0000 2019","degree":0},{"id":1135548223341420500,"id_str":"1135548223341420545","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":1,"retweet_count":1,"created_at":"Mon Jun 03 14:06:08 +0000 2019","degree":0},{"id":1135547798684950500,"id_str":"1135547798684950529","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":3,"retweet_count":0,"created_at":"Mon Jun 03 14:04:27 +0000 2019","degree":0},{"id":1135542815801434100,"id_str":"1135542815801434113","user":{"screen_name":"talkdatatomee","followers_count":323},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 13:44:39 +0000 2019","degree":0},{"id":1135541639315804200,"id_str":"1135541639315804162","user":{"screen_name":"trygist","followers_count":171},"favorite_count":0,"retweet_count":6,"created_at":"Mon Jun 03 13:39:58 +0000 2019","degree":0},{"id":1135540257909301200,"id_str":"1135540257909301248","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 13:34:29 +0000 2019","degree":0},{"id":1135538718025093100,"id_str":"1135538718025093120","user":{"screen_name":"jurib","followers_count":184},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 13:28:22 +0000 2019","degree":0},{"id":1135538216810029000,"id_str":"1135538216810029056","user":{"screen_name":"dbvis","followers_count":280},"favorite_count":1,"retweet_count":1,"created_at":"Mon Jun 03 13:26:22 +0000 2019","degree":0},{"id":1135536562966601700,"id_str":"1135536562966601734","user":{"screen_name":"sacquin_mo","followers_count":662},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 13:19:48 +0000 2019","degree":0},{"id":1135536257965154300,"id_str":"1135536257965154310","user":{"screen_name":"N3zix","followers_count":153},"favorite_count":10,"retweet_count":1,"created_at":"Mon Jun 03 13:18:35 +0000 2019","degree":0},{"id":1135533091332796400,"id_str":"1135533091332796418","user":{"screen_name":"flekschas","followers_count":288},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 13:06:00 +0000 2019","degree":0},{"id":1135521891307917300,"id_str":"1135521891307917317","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":2,"retweet_count":1,"created_at":"Mon Jun 03 12:21:30 +0000 2019","degree":0},{"id":1135521704317468700,"id_str":"1135521704317468672","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":1,"retweet_count":1,"created_at":"Mon Jun 03 12:20:45 +0000 2019","degree":0},{"id":1135521511836651500,"id_str":"1135521511836651520","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":5,"retweet_count":1,"created_at":"Mon Jun 03 12:20:00 +0000 2019","degree":0},{"id":1135520946431955000,"id_str":"1135520946431954945","user":{"screen_name":"giCentre","followers_count":558},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 12:17:45 +0000 2019","degree":0},{"id":1135517547091173400,"id_str":"1135517547091173377","user":{"screen_name":"datavizwpg","followers_count":316},"favorite_count":0,"retweet_count":6,"created_at":"Mon Jun 03 12:04:14 +0000 2019","degree":0},{"id":1135514930030006300,"id_str":"1135514930030006274","user":{"screen_name":"marionkuhs","followers_count":189},"favorite_count":1,"retweet_count":1,"created_at":"Mon Jun 03 11:53:50 +0000 2019","degree":0},{"id":1135514114669854700,"id_str":"1135514114669854720","user":{"screen_name":"data_starship","followers_count":975},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 11:50:36 +0000 2019","degree":0},{"id":1135505951136636900,"id_str":"1135505951136636928","user":{"screen_name":"marc_streit","followers_count":554},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 11:18:10 +0000 2019","degree":0},{"id":1135504333963976700,"id_str":"1135504333963976706","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":7,"retweet_count":2,"created_at":"Mon Jun 03 11:11:44 +0000 2019","degree":0},{"id":1135503703123931100,"id_str":"1135503703123931136","user":{"screen_name":"dogvile","followers_count":3264},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 11:09:14 +0000 2019","degree":0},{"id":1135502478752079900,"id_str":"1135502478752079873","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 11:04:22 +0000 2019","degree":0},{"id":1135502082650378200,"id_str":"1135502082650378243","user":{"screen_name":"marc_streit","followers_count":554},"favorite_count":17,"retweet_count":4,"created_at":"Mon Jun 03 11:02:47 +0000 2019","degree":0},{"id":1135499065800765400,"id_str":"1135499065800765441","user":{"screen_name":"marc_streit","followers_count":554},"favorite_count":0,"retweet_count":1,"created_at":"Mon Jun 03 10:50:48 +0000 2019","degree":0},{"id":1135497943597944800,"id_str":"1135497943597944832","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":7,"retweet_count":1,"created_at":"Mon Jun 03 10:46:20 +0000 2019","degree":0},{"id":1135496736154292200,"id_str":"1135496736154292224","user":{"screen_name":"mrshahidlatif","followers_count":33},"favorite_count":2,"retweet_count":0,"created_at":"Mon Jun 03 10:41:33 +0000 2019","degree":0},{"id":1135496433350713300,"id_str":"1135496433350713347","user":{"screen_name":"geovisual","followers_count":1130},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 10:40:20 +0000 2019","degree":0},{"id":1135494464536023000,"id_str":"1135494464536023041","user":{"screen_name":"leonel_merino","followers_count":154},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 10:32:31 +0000 2019","degree":0},{"id":1135493838376788000,"id_str":"1135493838376787969","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Mon Jun 03 10:30:02 +0000 2019","degree":0},{"id":1135492194779971600,"id_str":"1135492194779971584","user":{"screen_name":"Seebacher90","followers_count":5},"favorite_count":9,"retweet_count":2,"created_at":"Mon Jun 03 10:23:30 +0000 2019","degree":0},{"id":1135491585179824100,"id_str":"1135491585179824128","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":11,"retweet_count":3,"created_at":"Mon Jun 03 10:21:04 +0000 2019","degree":0},{"id":1135488180239646700,"id_str":"1135488180239646720","user":{"screen_name":"dej611","followers_count":429},"favorite_count":0,"retweet_count":6,"created_at":"Mon Jun 03 10:07:33 +0000 2019","degree":0},{"id":1135480799032217600,"id_str":"1135480799032217600","user":{"screen_name":"m_raffeiner","followers_count":92},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 09:38:13 +0000 2019","degree":0},{"id":1135473954339139600,"id_str":"1135473954339139585","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 09:11:01 +0000 2019","degree":0},{"id":1135473481515188200,"id_str":"1135473481515188224","user":{"screen_name":"eagereyes_feed","followers_count":889},"favorite_count":22,"retweet_count":4,"created_at":"Mon Jun 03 09:09:08 +0000 2019","degree":0},{"id":1135470541203263500,"id_str":"1135470541203263488","user":{"screen_name":"dogvile","followers_count":3264},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 08:57:27 +0000 2019","degree":0},{"id":1135469579579400200,"id_str":"1135469579579400197","user":{"screen_name":"klaus_lml","followers_count":12},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 08:53:38 +0000 2019","degree":0},{"id":1135467952290095100,"id_str":"1135467952290095104","user":{"screen_name":"arnicas","followers_count":11943},"favorite_count":11,"retweet_count":0,"created_at":"Mon Jun 03 08:47:10 +0000 2019","degree":0},{"id":1135467521102901200,"id_str":"1135467521102901248","user":{"screen_name":"drbehardisty","followers_count":260},"favorite_count":0,"retweet_count":4,"created_at":"Mon Jun 03 08:45:27 +0000 2019","degree":0},{"id":1135466836475162600,"id_str":"1135466836475162624","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":19,"retweet_count":4,"created_at":"Mon Jun 03 08:42:44 +0000 2019","degree":0},{"id":1135466646490013700,"id_str":"1135466646490013697","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":6,"retweet_count":0,"created_at":"Mon Jun 03 08:41:59 +0000 2019","degree":0},{"id":1135465381118849000,"id_str":"1135465381118849024","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":0,"retweet_count":6,"created_at":"Mon Jun 03 08:36:57 +0000 2019","degree":0},{"id":1135464226955366400,"id_str":"1135464226955366400","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":20,"retweet_count":6,"created_at":"Mon Jun 03 08:32:22 +0000 2019","degree":0},{"id":1135463894082871300,"id_str":"1135463894082871297","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 08:31:02 +0000 2019","degree":0},{"id":1135461716635082800,"id_str":"1135461716635082752","user":{"screen_name":"eagereyes","followers_count":21097},"favorite_count":0,"retweet_count":2,"created_at":"Mon Jun 03 08:22:23 +0000 2019","degree":0},{"id":1135459359037820900,"id_str":"1135459359037820928","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":8,"retweet_count":2,"created_at":"Mon Jun 03 08:13:01 +0000 2019","degree":0},{"id":1135458820791160800,"id_str":"1135458820791160832","user":{"screen_name":"alexander_lex","followers_count":1048},"favorite_count":5,"retweet_count":0,"created_at":"Mon Jun 03 08:10:53 +0000 2019","degree":0},{"id":1135454384572289000,"id_str":"1135454384572289025","user":{"screen_name":"jurib","followers_count":184},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 07:53:15 +0000 2019","degree":0},{"id":1135453898595012600,"id_str":"1135453898595012608","user":{"screen_name":"dbvis","followers_count":280},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 07:51:19 +0000 2019","degree":0},{"id":1135453474664210400,"id_str":"1135453474664210432","user":{"screen_name":"manunna_91","followers_count":208},"favorite_count":0,"retweet_count":3,"created_at":"Mon Jun 03 07:49:38 +0000 2019","degree":0},{"id":1135453250499620900,"id_str":"1135453250499620864","user":{"screen_name":"LingVISio","followers_count":42},"favorite_count":13,"retweet_count":3,"created_at":"Mon Jun 03 07:48:45 +0000 2019","degree":0},{"id":1135450319096307700,"id_str":"1135450319096307715","user":{"screen_name":"ClemPellegrin","followers_count":65},"favorite_count":0,"retweet_count":286,"created_at":"Mon Jun 03 07:37:06 +0000 2019","degree":0},{"id":1135420539567087600,"id_str":"1135420539567087616","user":{"screen_name":"rssyid","followers_count":63},"favorite_count":0,"retweet_count":286,"created_at":"Mon Jun 03 05:38:46 +0000 2019","degree":0},{"id":1135318174298234900,"id_str":"1135318174298234880","user":{"screen_name":"MichaelTaylorEO","followers_count":67},"favorite_count":0,"retweet_count":286,"created_at":"Sun Jun 02 22:52:00 +0000 2019","degree":0},{"id":1135303234980130800,"id_str":"1135303234980130816","user":{"screen_name":"pedropalomobcn","followers_count":1658},"favorite_count":0,"retweet_count":1,"created_at":"Sun Jun 02 21:52:38 +0000 2019","degree":0},{"id":1135303232668995600,"id_str":"1135303232668995584","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":2,"retweet_count":0,"created_at":"Sun Jun 02 21:52:38 +0000 2019","degree":0},{"id":1135303206605643800,"id_str":"1135303206605643776","user":{"screen_name":"pedropalomobcn","followers_count":1658},"favorite_count":3,"retweet_count":1,"created_at":"Sun Jun 02 21:52:32 +0000 2019","degree":0},{"id":1135267506694869000,"id_str":"1135267506694868993","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 19:30:40 +0000 2019","degree":0},{"id":1135264601485054000,"id_str":"1135264601485053952","user":{"screen_name":"ahmedElkoussy","followers_count":396},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 19:19:07 +0000 2019","degree":0},{"id":1135257306835427300,"id_str":"1135257306835427331","user":{"screen_name":"dogvile","followers_count":3264},"favorite_count":0,"retweet_count":1,"created_at":"Sun Jun 02 18:50:08 +0000 2019","degree":0},{"id":1135251914197733400,"id_str":"1135251914197733376","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":1,"retweet_count":1,"created_at":"Sun Jun 02 18:28:42 +0000 2019","degree":0},{"id":1135212717160091600,"id_str":"1135212717160091649","user":{"screen_name":"TofHurter","followers_count":317},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 15:52:57 +0000 2019","degree":0},{"id":1135206248582930400,"id_str":"1135206248582930434","user":{"screen_name":"avilanova01","followers_count":38},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 15:27:15 +0000 2019","degree":0},{"id":1135191831187218400,"id_str":"1135191831187218432","user":{"screen_name":"nicolapezzotti","followers_count":579},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 14:29:58 +0000 2019","degree":0},{"id":1135161501336121300,"id_str":"1135161501336121344","user":{"screen_name":"tdmckee","followers_count":1440},"favorite_count":0,"retweet_count":1,"created_at":"Sun Jun 02 12:29:26 +0000 2019","degree":0},{"id":1135161440199938000,"id_str":"1135161440199938048","user":{"screen_name":"tdmckee","followers_count":1440},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 12:29:12 +0000 2019","degree":0},{"id":1135156101899534300,"id_str":"1135156101899534336","user":{"screen_name":"noisource","followers_count":120},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 12:07:59 +0000 2019","degree":0},{"id":1135133221467893800,"id_str":"1135133221467893765","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":4,"retweet_count":1,"created_at":"Sun Jun 02 10:37:04 +0000 2019","degree":0},{"id":1135132835604553700,"id_str":"1135132835604553728","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":1,"retweet_count":0,"created_at":"Sun Jun 02 10:35:32 +0000 2019","degree":0},{"id":1135132628150030300,"id_str":"1135132628150030336","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":1,"created_at":"Sun Jun 02 10:34:42 +0000 2019","degree":0},{"id":1135132614883500000,"id_str":"1135132614883500032","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":6,"created_at":"Sun Jun 02 10:34:39 +0000 2019","degree":0},{"id":1135131757311811600,"id_str":"1135131757311811586","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":2,"retweet_count":1,"created_at":"Sun Jun 02 10:31:15 +0000 2019","degree":0},{"id":1135131080196071400,"id_str":"1135131080196071424","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":33,"retweet_count":6,"created_at":"Sun Jun 02 10:28:33 +0000 2019","degree":0},{"id":1135122605445460000,"id_str":"1135122605445459968","user":{"screen_name":"ThomasHollt","followers_count":171},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 09:54:53 +0000 2019","degree":0},{"id":1135119049963266000,"id_str":"1135119049963266048","user":{"screen_name":"avilanova01","followers_count":38},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 09:40:45 +0000 2019","degree":0},{"id":1135116895764537300,"id_str":"1135116895764537344","user":{"screen_name":"openp2pdesign","followers_count":6023},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 09:32:12 +0000 2019","degree":0},{"id":1135114293945491500,"id_str":"1135114293945491456","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 09:21:51 +0000 2019","degree":0},{"id":1135114198801887200,"id_str":"1135114198801887232","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":1,"created_at":"Sun Jun 02 09:21:29 +0000 2019","degree":0},{"id":1135114182314156000,"id_str":"1135114182314156033","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 09:21:25 +0000 2019","degree":0},{"id":1135102830266802200,"id_str":"1135102830266802176","user":{"screen_name":"marc_streit","followers_count":554},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 08:36:18 +0000 2019","degree":0},{"id":1135099067015417900,"id_str":"1135099067015417856","user":{"screen_name":"colourspeak","followers_count":1095},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 02 08:21:21 +0000 2019","degree":0},{"id":1135098921154469900,"id_str":"1135098921154469888","user":{"screen_name":"_Noeska_","followers_count":552},"favorite_count":24,"retweet_count":7,"created_at":"Sun Jun 02 08:20:46 +0000 2019","degree":0},{"id":1135081016002056200,"id_str":"1135081016002056193","user":{"screen_name":"MattySmith8687","followers_count":2},"favorite_count":0,"retweet_count":0,"created_at":"Sun Jun 02 07:09:37 +0000 2019","degree":0},{"id":1135049462756368400,"id_str":"1135049462756368384","user":{"screen_name":"antarcticdesign","followers_count":407},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 05:04:14 +0000 2019","degree":0},{"id":1135040859437772800,"id_str":"1135040859437772803","user":{"screen_name":"luca","followers_count":12938},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 04:30:03 +0000 2019","degree":0},{"id":1135022017076498400,"id_str":"1135022017076498432","user":{"screen_name":"seisciento","followers_count":48},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 03:15:11 +0000 2019","degree":0},{"id":1135021204916641800,"id_str":"1135021204916641792","user":{"screen_name":"d3visualization","followers_count":11211},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 03:11:57 +0000 2019","degree":0},{"id":1135018441247809500,"id_str":"1135018441247809536","user":{"screen_name":"crashlaker","followers_count":17},"favorite_count":0,"retweet_count":22,"created_at":"Sun Jun 02 03:00:58 +0000 2019","degree":0},{"id":1134973991955902500,"id_str":"1134973991955902464","user":{"screen_name":"mrworldsoccer","followers_count":429},"favorite_count":0,"retweet_count":0,"created_at":"Sun Jun 02 00:04:21 +0000 2019","degree":0},{"id":1134973912834551800,"id_str":"1134973912834551809","user":{"screen_name":"mrworldsoccer","followers_count":429},"favorite_count":0,"retweet_count":0,"created_at":"Sun Jun 02 00:04:02 +0000 2019","degree":0},{"id":1134877462943416300,"id_str":"1134877462943416320","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":2,"retweet_count":0,"created_at":"Sat Jun 01 17:40:46 +0000 2019","degree":0},{"id":1134871256531177500,"id_str":"1134871256531177472","user":{"screen_name":"_mcnutt_","followers_count":160},"favorite_count":1,"retweet_count":0,"created_at":"Sat Jun 01 17:16:07 +0000 2019","degree":0},{"id":1134866051316015100,"id_str":"1134866051316015106","user":{"screen_name":"jamesscottbrown","followers_count":141},"favorite_count":3,"retweet_count":1,"created_at":"Sat Jun 01 16:55:26 +0000 2019","degree":0},{"id":1134838645301661700,"id_str":"1134838645301661698","user":{"screen_name":"jorgaf","followers_count":775},"favorite_count":0,"retweet_count":22,"created_at":"Sat Jun 01 15:06:31 +0000 2019","degree":0},{"id":1134786107554635800,"id_str":"1134786107554635777","user":{"screen_name":"duto_guerra","followers_count":2493},"favorite_count":0,"retweet_count":22,"created_at":"Sat Jun 01 11:37:46 +0000 2019","degree":0},{"id":1134771689621995500,"id_str":"1134771689621995521","user":{"screen_name":"10qviz","followers_count":47},"favorite_count":0,"retweet_count":286,"created_at":"Sat Jun 01 10:40:28 +0000 2019","degree":0},{"id":1134764491474964500,"id_str":"1134764491474964480","user":{"screen_name":"Ee2Dev","followers_count":38},"favorite_count":0,"retweet_count":22,"created_at":"Sat Jun 01 10:11:52 +0000 2019","degree":0},{"id":1134698609130246100,"id_str":"1134698609130246144","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Sat Jun 01 05:50:04 +0000 2019","degree":0},{"id":1134696085526589400,"id_str":"1134696085526589440","user":{"screen_name":"eurovis","followers_count":354},"favorite_count":0,"retweet_count":0,"created_at":"Sat Jun 01 05:40:03 +0000 2019","degree":0},{"id":1134647526118907900,"id_str":"1134647526118907905","user":{"screen_name":"awalinsopan","followers_count":609},"favorite_count":0,"retweet_count":22,"created_at":"Sat Jun 01 02:27:05 +0000 2019","degree":0},{"id":1134639462221197300,"id_str":"1134639462221197312","user":{"screen_name":"sjengle","followers_count":544},"favorite_count":0,"retweet_count":22,"created_at":"Sat Jun 01 01:55:03 +0000 2019","degree":0},{"id":1134614623318159400,"id_str":"1134614623318159361","user":{"screen_name":"mrworldsoccer","followers_count":429},"favorite_count":0,"retweet_count":0,"created_at":"Sat Jun 01 00:16:20 +0000 2019","degree":0},{"id":1134614578254495700,"id_str":"1134614578254495746","user":{"screen_name":"mrworldsoccer","followers_count":429},"favorite_count":2,"retweet_count":0,"created_at":"Sat Jun 01 00:16:10 +0000 2019","degree":0},{"id":1134579340656762900,"id_str":"1134579340656762880","user":{"screen_name":"jcrbrts","followers_count":509},"favorite_count":0,"retweet_count":3,"created_at":"Fri May 31 21:56:08 +0000 2019","degree":0},{"id":1134567700838133800,"id_str":"1134567700838133760","user":{"screen_name":"widged","followers_count":700},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 21:09:53 +0000 2019","degree":0},{"id":1134561873272033300,"id_str":"1134561873272033280","user":{"screen_name":"micahstubbs","followers_count":4721},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 20:46:44 +0000 2019","degree":0},{"id":1134557679165222900,"id_str":"1134557679165222912","user":{"screen_name":"case_sqrd","followers_count":45},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 20:30:04 +0000 2019","degree":0},{"id":1134537239680233500,"id_str":"1134537239680233474","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":2,"retweet_count":0,"created_at":"Fri May 31 19:08:51 +0000 2019","degree":0},{"id":1134530490369597400,"id_str":"1134530490369597440","user":{"screen_name":"kolu_nsquare","followers_count":247},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 18:42:02 +0000 2019","degree":0},{"id":1134529144346177500,"id_str":"1134529144346177537","user":{"screen_name":"tidal_Simon","followers_count":447},"favorite_count":0,"retweet_count":286,"created_at":"Fri May 31 18:36:41 +0000 2019","degree":0},{"id":1134522967457783800,"id_str":"1134522967457783808","user":{"screen_name":"BCKwon","followers_count":224},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 18:12:08 +0000 2019","degree":0},{"id":1134514020038381600,"id_str":"1134514020038381568","user":{"screen_name":"zakjan","followers_count":408},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 17:36:35 +0000 2019","degree":0},{"id":1134513945778171900,"id_str":"1134513945778171904","user":{"screen_name":"amitkaps","followers_count":1227},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 17:36:17 +0000 2019","degree":0},{"id":1134513815440252900,"id_str":"1134513815440252928","user":{"screen_name":"QuickQanava","followers_count":33},"favorite_count":0,"retweet_count":22,"created_at":"Fri May 31 17:35:46 +0000 2019","degree":0},{"id":1134511233389011000,"id_str":"1134511233389010946","user":{"screen_name":"rpgove","followers_count":540},"favorite_count":68,"retweet_count":22,"created_at":"Fri May 31 17:25:30 +0000 2019","degree":0},{"id":1134236244962136000,"id_str":"1134236244962136064","user":{"screen_name":"eurovis2019","followers_count":124},"favorite_count":3,"retweet_count":0,"created_at":"Thu May 30 23:12:48 +0000 2019","degree":0},{"id":1134204972973862900,"id_str":"1134204972973862912","user":{"screen_name":"indonoso_","followers_count":336},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 21:08:32 +0000 2019","degree":0},{"id":1134178407732916200,"id_str":"1134178407732916224","user":{"screen_name":"svetislavbosko1","followers_count":4},"favorite_count":1,"retweet_count":0,"created_at":"Thu May 30 19:22:59 +0000 2019","degree":0},{"id":1134131984631050200,"id_str":"1134131984631050241","user":{"screen_name":"dheerajksk","followers_count":22},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 16:18:30 +0000 2019","degree":0},{"id":1134080153393487900,"id_str":"1134080153393487883","user":{"screen_name":"JohnCallery","followers_count":254},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 12:52:33 +0000 2019","degree":0},{"id":1134077314915082200,"id_str":"1134077314915082241","user":{"screen_name":"PRomanczuk","followers_count":242},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 12:41:16 +0000 2019","degree":0},{"id":1134074051708817400,"id_str":"1134074051708817409","user":{"screen_name":"umiacs","followers_count":1111},"favorite_count":0,"retweet_count":2,"created_at":"Thu May 30 12:28:18 +0000 2019","degree":0},{"id":1134069294910922800,"id_str":"1134069294910922752","user":{"screen_name":"teague_o","followers_count":809},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 12:09:24 +0000 2019","degree":0},{"id":1134066260134703100,"id_str":"1134066260134703104","user":{"screen_name":"Kayla_Amel","followers_count":95},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 11:57:21 +0000 2019","degree":0},{"id":1134064066908102700,"id_str":"1134064066908102657","user":{"screen_name":"grawoig","followers_count":2919},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 11:48:38 +0000 2019","degree":0},{"id":1134058049256251400,"id_str":"1134058049256251392","user":{"screen_name":"theastralj","followers_count":238},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 11:24:43 +0000 2019","degree":0},{"id":1134055637690789900,"id_str":"1134055637690789893","user":{"screen_name":"m_apfelthaler","followers_count":852},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 11:15:08 +0000 2019","degree":0},{"id":1134048088920862700,"id_str":"1134048088920862720","user":{"screen_name":"KellerScholl","followers_count":20},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 10:45:08 +0000 2019","degree":0},{"id":1134045624796622800,"id_str":"1134045624796622848","user":{"screen_name":"prokopsky","followers_count":722},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 10:35:21 +0000 2019","degree":0},{"id":1134031469242986500,"id_str":"1134031469242986497","user":{"screen_name":"whelanaround","followers_count":150},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 09:39:06 +0000 2019","degree":0},{"id":1134024428222857200,"id_str":"1134024428222857216","user":{"screen_name":"jhpantel","followers_count":207},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 09:11:07 +0000 2019","degree":0},{"id":1134024311533187100,"id_str":"1134024311533187072","user":{"screen_name":"MattBonnerFire","followers_count":249},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 09:10:39 +0000 2019","degree":0},{"id":1134022222715195400,"id_str":"1134022222715195392","user":{"screen_name":"mirkolorenz","followers_count":3971},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 09:02:21 +0000 2019","degree":0},{"id":1134018645774835700,"id_str":"1134018645774835714","user":{"screen_name":"round","followers_count":11806},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 08:48:08 +0000 2019","degree":0},{"id":1134018098229522400,"id_str":"1134018098229522432","user":{"screen_name":"neylano","followers_count":1258},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 08:45:58 +0000 2019","degree":0},{"id":1134006296225747000,"id_str":"1134006296225746944","user":{"screen_name":"Plymouth_Hydro","followers_count":715},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 07:59:04 +0000 2019","degree":0},{"id":1133988766090178600,"id_str":"1133988766090178560","user":{"screen_name":"NElmqvist","followers_count":1449},"favorite_count":0,"retweet_count":0,"created_at":"Thu May 30 06:49:24 +0000 2019","degree":0},{"id":1133988756934058000,"id_str":"1133988756934057985","user":{"screen_name":"NElmqvist","followers_count":1449},"favorite_count":10,"retweet_count":2,"created_at":"Thu May 30 06:49:22 +0000 2019","degree":0},{"id":1133979396027629600,"id_str":"1133979396027629568","user":{"screen_name":"SpatialProf","followers_count":808},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 06:12:10 +0000 2019","degree":0},{"id":1133969593922412500,"id_str":"1133969593922412545","user":{"screen_name":"ALoopingIcon","followers_count":165},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 05:33:13 +0000 2019","degree":0},{"id":1133963149265264600,"id_str":"1133963149265264640","user":{"screen_name":"giorgioarcara","followers_count":239},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 05:07:37 +0000 2019","degree":0},{"id":1133934762035417100,"id_str":"1133934762035417088","user":{"screen_name":"cnsidero","followers_count":563},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 03:14:49 +0000 2019","degree":0},{"id":1133919056384467000,"id_str":"1133919056384466946","user":{"screen_name":"ziman_k","followers_count":37},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 02:12:24 +0000 2019","degree":0},{"id":1133909789182795800,"id_str":"1133909789182795776","user":{"screen_name":"othesharon","followers_count":87},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 01:35:35 +0000 2019","degree":0},{"id":1133902033721782300,"id_str":"1133902033721782274","user":{"screen_name":"Ayana_Dayo_","followers_count":92},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 01:04:46 +0000 2019","degree":0},{"id":1133902014075641900,"id_str":"1133902014075641857","user":{"screen_name":"wootwootwo","followers_count":8},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 01:04:41 +0000 2019","degree":0},{"id":1133895024628944900,"id_str":"1133895024628944897","user":{"screen_name":"mmoran0032","followers_count":66},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 00:36:55 +0000 2019","degree":0},{"id":1133893967572013000,"id_str":"1133893967572013056","user":{"screen_name":"raflynn5","followers_count":355},"favorite_count":0,"retweet_count":286,"created_at":"Thu May 30 00:32:43 +0000 2019","degree":0},{"id":1137843157939499000,"id_str":"1137843157939499008","user":{"screen_name":"guerravis","followers_count":177},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 22:05:23 +0000 2019","degree":0},{"id":1137834540037226500,"id_str":"1137834540037226497","user":{"screen_name":"mrshahidlatif","followers_count":34},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 21:31:08 +0000 2019","degree":0},{"id":1137799147480899600,"id_str":"1137799147480899584","user":{"screen_name":"philshapiro","followers_count":55304},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 19:10:30 +0000 2019","degree":0},{"id":1137789767444287500,"id_str":"1137789767444287488","user":{"screen_name":"pauvasquezh","followers_count":275},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 18:33:14 +0000 2019","degree":0},{"id":1137761110717804500,"id_str":"1137761110717804545","user":{"screen_name":"pallards","followers_count":22307},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 16:39:22 +0000 2019","degree":0},{"id":1137741169763475500,"id_str":"1137741169763475458","user":{"screen_name":"jorgefabrega","followers_count":3058},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 15:20:07 +0000 2019","degree":0},{"id":1137738694755070000,"id_str":"1137738694755069957","user":{"screen_name":"leoferres","followers_count":867},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 15:10:17 +0000 2019","degree":0},{"id":1137738675486363600,"id_str":"1137738675486363648","user":{"screen_name":"DataScienceUDD","followers_count":1624},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 15:10:13 +0000 2019","degree":0},{"id":1137738032063361000,"id_str":"1137738032063361024","user":{"screen_name":"calipsotornasol","followers_count":308},"favorite_count":0,"retweet_count":7,"created_at":"Sun Jun 09 15:07:39 +0000 2019","degree":0},{"id":1137737025296175100,"id_str":"1137737025296175104","user":{"screen_name":"carnby","followers_count":2633},"favorite_count":20,"retweet_count":7,"created_at":"Sun Jun 09 15:03:39 +0000 2019","degree":0},{"id":1137710880873828400,"id_str":"1137710880873828353","user":{"screen_name":"noelfish","followers_count":75},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 13:19:46 +0000 2019","degree":0},{"id":1137699283740717000,"id_str":"1137699283740717056","user":{"screen_name":"rukku","followers_count":1578},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 12:33:41 +0000 2019","degree":0},{"id":1137674166260326400,"id_str":"1137674166260326400","user":{"screen_name":"TofHurter","followers_count":316},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 10:53:52 +0000 2019","degree":0},{"id":1137608573599359000,"id_str":"1137608573599358976","user":{"screen_name":"nacyo_t","followers_count":409},"favorite_count":0,"retweet_count":64,"created_at":"Sun Jun 09 06:33:14 +0000 2019","degree":0},{"id":1137478504268861400,"id_str":"1137478504268861441","user":{"screen_name":"minsukkahng","followers_count":680},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 21:56:23 +0000 2019","degree":0},{"id":1137465973940858900,"id_str":"1137465973940858883","user":{"screen_name":"eurovis2019","followers_count":127},"favorite_count":0,"retweet_count":1,"created_at":"Sat Jun 08 21:06:35 +0000 2019","degree":0},{"id":1137465901824041000,"id_str":"1137465901824040960","user":{"screen_name":"eurovis2019","followers_count":127},"favorite_count":0,"retweet_count":1,"created_at":"Sat Jun 08 21:06:18 +0000 2019","degree":0},{"id":1137462776958292000,"id_str":"1137462776958291969","user":{"screen_name":"MaxNAdul","followers_count":135},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 20:53:53 +0000 2019","degree":0},{"id":1137442450996379600,"id_str":"1137442450996379650","user":{"screen_name":"johliem","followers_count":84},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 19:33:07 +0000 2019","degree":0},{"id":1137428441391927300,"id_str":"1137428441391927307","user":{"screen_name":"mpromann","followers_count":152},"favorite_count":0,"retweet_count":9,"created_at":"Sat Jun 08 18:37:27 +0000 2019","degree":0},{"id":1137422634692431900,"id_str":"1137422634692431872","user":{"screen_name":"un1crom","followers_count":560},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 18:14:23 +0000 2019","degree":0},{"id":1137415693723287600,"id_str":"1137415693723287553","user":{"screen_name":"vinuct","followers_count":404},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 17:46:48 +0000 2019","degree":0},{"id":1137413050498109400,"id_str":"1137413050498109441","user":{"screen_name":"1dot61803","followers_count":107},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 17:36:18 +0000 2019","degree":0},{"id":1137400665423192000,"id_str":"1137400665423192064","user":{"screen_name":"antarcticdesign","followers_count":408},"favorite_count":0,"retweet_count":6,"created_at":"Sat Jun 08 16:47:05 +0000 2019","degree":0},{"id":1137400623035572200,"id_str":"1137400623035572229","user":{"screen_name":"antarcticdesign","followers_count":408},"favorite_count":0,"retweet_count":2,"created_at":"Sat Jun 08 16:46:55 +0000 2019","degree":0},{"id":1137395911292645400,"id_str":"1137395911292645382","user":{"screen_name":"sanand0","followers_count":2475},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 16:28:11 +0000 2019","degree":0},{"id":1137383405308375000,"id_str":"1137383405308375042","user":{"screen_name":"manaswisaha","followers_count":360},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 15:38:30 +0000 2019","degree":0},{"id":1137380561033531400,"id_str":"1137380561033531393","user":{"screen_name":"BergenMMIV","followers_count":85},"favorite_count":0,"retweet_count":2,"created_at":"Sat Jun 08 15:27:11 +0000 2019","degree":0},{"id":1137370377955549200,"id_str":"1137370377955549185","user":{"screen_name":"mandykeck","followers_count":25},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 14:46:44 +0000 2019","degree":0},{"id":1137364992456581100,"id_str":"1137364992456581121","user":{"screen_name":"FromYesterdayIn","followers_count":362},"favorite_count":2,"retweet_count":1,"created_at":"Sat Jun 08 14:25:20 +0000 2019","degree":0},{"id":1137353548365254700,"id_str":"1137353548365254656","user":{"screen_name":"jfelipe","followers_count":849},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 13:39:51 +0000 2019","degree":0},{"id":1137349946330492900,"id_str":"1137349946330492928","user":{"screen_name":"geovis_isprs","followers_count":1342},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 13:25:32 +0000 2019","degree":0},{"id":1137324080733012000,"id_str":"1137324080733011968","user":{"screen_name":"jemtzl","followers_count":132},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 11:42:45 +0000 2019","degree":0},{"id":1137306109189009400,"id_str":"1137306109189009408","user":{"screen_name":"EricMorth","followers_count":7},"favorite_count":0,"retweet_count":2,"created_at":"Sat Jun 08 10:31:21 +0000 2019","degree":0},{"id":1137286929651777500,"id_str":"1137286929651777536","user":{"screen_name":"_Noeska_","followers_count":555},"favorite_count":11,"retweet_count":2,"created_at":"Sat Jun 08 09:15:08 +0000 2019","degree":0},{"id":1137274938921050100,"id_str":"1137274938921050112","user":{"screen_name":"mgrafit","followers_count":102},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 08:27:29 +0000 2019","degree":0},{"id":1137273433711095800,"id_str":"1137273433711095808","user":{"screen_name":"widged","followers_count":702},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 08:21:30 +0000 2019","degree":0},{"id":1137256285647196200,"id_str":"1137256285647196160","user":{"screen_name":"c_z","followers_count":1882},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 07:13:22 +0000 2019","degree":0},{"id":1137254011118137300,"id_str":"1137254011118137344","user":{"screen_name":"Hansatyam","followers_count":74},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 07:04:20 +0000 2019","degree":0},{"id":1137253338427383800,"id_str":"1137253338427383808","user":{"screen_name":"statisticiana","followers_count":124},"favorite_count":0,"retweet_count":3,"created_at":"Sat Jun 08 07:01:39 +0000 2019","degree":0},{"id":1137243826328879100,"id_str":"1137243826328879105","user":{"screen_name":"cybunk","followers_count":1723},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 06:23:51 +0000 2019","degree":0},{"id":1137238644106891300,"id_str":"1137238644106891269","user":{"screen_name":"synerscope","followers_count":802},"favorite_count":0,"retweet_count":9,"created_at":"Sat Jun 08 06:03:16 +0000 2019","degree":0},{"id":1137232733678243800,"id_str":"1137232733678243840","user":{"screen_name":"jminguillona","followers_count":1097},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 05:39:47 +0000 2019","degree":0},{"id":1137209836305821700,"id_str":"1137209836305821696","user":{"screen_name":"DataOhio","followers_count":18},"favorite_count":0,"retweet_count":4,"created_at":"Sat Jun 08 04:08:47 +0000 2019","degree":0},{"id":1137198128380014600,"id_str":"1137198128380014592","user":{"screen_name":"kristw","followers_count":2894},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 03:22:16 +0000 2019","degree":0},{"id":1137196116745904100,"id_str":"1137196116745904128","user":{"screen_name":"AndrewTBurks","followers_count":41},"favorite_count":0,"retweet_count":7,"created_at":"Sat Jun 08 03:14:16 +0000 2019","degree":0},{"id":1137179567247056900,"id_str":"1137179567247056897","user":{"screen_name":"guerravis","followers_count":177},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 02:08:31 +0000 2019","degree":0},{"id":1137170835897180200,"id_str":"1137170835897180160","user":{"screen_name":"LacePadilla","followers_count":1396},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 01:33:49 +0000 2019","degree":0},{"id":1137169210944184300,"id_str":"1137169210944184320","user":{"screen_name":"henry_shenhao","followers_count":126},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 01:27:22 +0000 2019","degree":0},{"id":1137159829016010800,"id_str":"1137159829016010753","user":{"screen_name":"CerebroWs","followers_count":70},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 00:50:05 +0000 2019","degree":0},{"id":1137156039768330200,"id_str":"1137156039768330240","user":{"screen_name":"dyobs","followers_count":1452},"favorite_count":0,"retweet_count":64,"created_at":"Sat Jun 08 00:35:01 +0000 2019","degree":0},{"id":1137140418594910200,"id_str":"1137140418594910208","user":{"screen_name":"datavizwpg","followers_count":318},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 23:32:57 +0000 2019","degree":0},{"id":1137138793750904800,"id_str":"1137138793750904832","user":{"screen_name":"__rsoper__","followers_count":352},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 23:26:30 +0000 2019","degree":0},{"id":1137137073301991400,"id_str":"1137137073301991425","user":{"screen_name":"namwkim85","followers_count":340},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 23:19:39 +0000 2019","degree":0},{"id":1137136315688992800,"id_str":"1137136315688992768","user":{"screen_name":"_____leena_____","followers_count":21},"favorite_count":3,"retweet_count":0,"created_at":"Fri Jun 07 23:16:39 +0000 2019","degree":0},{"id":1137135742608654300,"id_str":"1137135742608654337","user":{"screen_name":"_____leena_____","followers_count":21},"favorite_count":0,"retweet_count":0,"created_at":"Fri Jun 07 23:14:22 +0000 2019","degree":0},{"id":1137135175710543900,"id_str":"1137135175710543872","user":{"screen_name":"KrishaMehta2","followers_count":81},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 23:12:07 +0000 2019","degree":0},{"id":1137134385520660500,"id_str":"1137134385520660480","user":{"screen_name":"AndrewTBurks","followers_count":41},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 23:08:59 +0000 2019","degree":0},{"id":1137123385253748700,"id_str":"1137123385253748736","user":{"screen_name":"andrea_no_","followers_count":54},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 22:25:16 +0000 2019","degree":0},{"id":1137120622541246500,"id_str":"1137120622541246464","user":{"screen_name":"jamesscottbrown","followers_count":141},"favorite_count":0,"retweet_count":0,"created_at":"Fri Jun 07 22:14:17 +0000 2019","degree":0},{"id":1137109239183355900,"id_str":"1137109239183355906","user":{"screen_name":"andrea_no_","followers_count":54},"favorite_count":0,"retweet_count":3,"created_at":"Fri Jun 07 21:29:03 +0000 2019","degree":0},{"id":1137109058505175000,"id_str":"1137109058505175040","user":{"screen_name":"tongshuangwu","followers_count":63},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 21:28:20 +0000 2019","degree":0},{"id":1137108327714844700,"id_str":"1137108327714844673","user":{"screen_name":"fadlan_anam","followers_count":94},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 21:25:26 +0000 2019","degree":0},{"id":1137105515123826700,"id_str":"1137105515123826693","user":{"screen_name":"andrea_no_","followers_count":54},"favorite_count":0,"retweet_count":1,"created_at":"Fri Jun 07 21:14:15 +0000 2019","degree":0},{"id":1137104239061348400,"id_str":"1137104239061348355","user":{"screen_name":"zhihuachen","followers_count":137},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 21:09:11 +0000 2019","degree":0},{"id":1137101803764371500,"id_str":"1137101803764371456","user":{"screen_name":"uwdata","followers_count":5526},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 20:59:31 +0000 2019","degree":0},{"id":1137099174795722800,"id_str":"1137099174795722752","user":{"screen_name":"JessicaHullman","followers_count":2250},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 20:49:04 +0000 2019","degree":0},{"id":1137096059446947800,"id_str":"1137096059446947840","user":{"screen_name":"amitkaps","followers_count":1226},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 20:36:41 +0000 2019","degree":0},{"id":1137094669983277000,"id_str":"1137094669983277056","user":{"screen_name":"dr_tj","followers_count":974},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 20:31:10 +0000 2019","degree":0},{"id":1137090140193484800,"id_str":"1137090140193484800","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 20:13:10 +0000 2019","degree":0},{"id":1137084840761798700,"id_str":"1137084840761798657","user":{"screen_name":"zakjan","followers_count":408},"favorite_count":0,"retweet_count":37,"created_at":"Fri Jun 07 19:52:06 +0000 2019","degree":0},{"id":1137081389822689300,"id_str":"1137081389822689282","user":{"screen_name":"ryanwesslen","followers_count":216},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:38:23 +0000 2019","degree":0},{"id":1137079766517858300,"id_str":"1137079766517858306","user":{"screen_name":"ziwphd","followers_count":720},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:31:56 +0000 2019","degree":0},{"id":1137079211162652700,"id_str":"1137079211162652672","user":{"screen_name":"arvindsatya1","followers_count":3244},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:29:44 +0000 2019","degree":0},{"id":1137077628345540600,"id_str":"1137077628345540608","user":{"screen_name":"ProfHollan","followers_count":285},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:23:27 +0000 2019","degree":0},{"id":1137075680376774700,"id_str":"1137075680376774657","user":{"screen_name":"klaus_lml","followers_count":12},"favorite_count":1,"retweet_count":0,"created_at":"Fri Jun 07 19:15:42 +0000 2019","degree":0},{"id":1137072656295968800,"id_str":"1137072656295968768","user":{"screen_name":"ngehlenborg","followers_count":2634},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:03:41 +0000 2019","degree":0},{"id":1137071878596702200,"id_str":"1137071878596702209","user":{"screen_name":"rpgove","followers_count":548},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 19:00:36 +0000 2019","degree":0},{"id":1137071291029184500,"id_str":"1137071291029184513","user":{"screen_name":"monfera","followers_count":1368},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:58:16 +0000 2019","degree":0},{"id":1137070363802832900,"id_str":"1137070363802832896","user":{"screen_name":"rmflight","followers_count":1079},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:54:35 +0000 2019","degree":0},{"id":1137069403575660500,"id_str":"1137069403575660545","user":{"screen_name":"mathisonian","followers_count":3631},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:50:46 +0000 2019","degree":0},{"id":1137069302337511400,"id_str":"1137069302337511424","user":{"screen_name":"domoritz","followers_count":1403},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:50:22 +0000 2019","degree":0},{"id":1137068875516960800,"id_str":"1137068875516960770","user":{"screen_name":"cagatay_turkay","followers_count":340},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:48:40 +0000 2019","degree":0},{"id":1137068105623121900,"id_str":"1137068105623121920","user":{"screen_name":"ThomasHollt","followers_count":175},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:45:36 +0000 2019","degree":0},{"id":1137066607056998400,"id_str":"1137066607056998400","user":{"screen_name":"ssn","followers_count":806},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:39:39 +0000 2019","degree":0},{"id":1137066588673208300,"id_str":"1137066588673208321","user":{"screen_name":"scheidegger","followers_count":2122},"favorite_count":0,"retweet_count":64,"created_at":"Fri Jun 07 18:39:35 +0000 2019","degree":0},{"id":1137066366924664800,"id_str":"1137066366924664833","user":{"screen_name":"jeffrey_heer","followers_count":10264},"favorite_count":205,"retweet_count":64,"created_at":"Fri Jun 07 18:38:42 +0000 2019","degree":0},{"id":1137044826531090400,"id_str":"1137044826531090432","user":{"screen_name":"micahstubbs","followers_count":4727},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 17:13:06 +0000 2019","degree":0},{"id":1137044445755392000,"id_str":"1137044445755392000","user":{"screen_name":"micahstubbs","followers_count":4727},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 17:11:35 +0000 2019","degree":0},{"id":1137042495265787900,"id_str":"1137042495265787904","user":{"screen_name":"dr_tj","followers_count":974},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 17:03:50 +0000 2019","degree":0},{"id":1137041719747317800,"id_str":"1137041719747317760","user":{"screen_name":"Jason_Craggs","followers_count":267},"favorite_count":0,"retweet_count":11,"created_at":"Fri Jun 07 17:00:45 +0000 2019","degree":0},{"id":1137041648959889400,"id_str":"1137041648959889408","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 17:00:28 +0000 2019","degree":0},{"id":1137041567301038100,"id_str":"1137041567301038083","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":2,"created_at":"Fri Jun 07 17:00:09 +0000 2019","degree":0},{"id":1137041561357836300,"id_str":"1137041561357836289","user":{"screen_name":"dataandme","followers_count":37970},"favorite_count":0,"retweet_count":11,"created_at":"Fri Jun 07 17:00:08 +0000 2019","degree":0},{"id":1137041491614883800,"id_str":"1137041491614883841","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 16:59:51 +0000 2019","degree":0},{"id":1137041415572078600,"id_str":"1137041415572078592","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":3,"created_at":"Fri Jun 07 16:59:33 +0000 2019","degree":0},{"id":1137041393308774400,"id_str":"1137041393308774401","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 16:59:28 +0000 2019","degree":0},{"id":1137041369992781800,"id_str":"1137041369992781825","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 16:59:22 +0000 2019","degree":0},{"id":1137041344814129200,"id_str":"1137041344814129152","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 16:59:16 +0000 2019","degree":0},{"id":1137041270646251500,"id_str":"1137041270646251520","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":11,"created_at":"Fri Jun 07 16:58:58 +0000 2019","degree":0},{"id":1137039429430784000,"id_str":"1137039429430784000","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":37,"created_at":"Fri Jun 07 16:51:39 +0000 2019","degree":0},{"id":1137038984683515900,"id_str":"1137038984683515904","user":{"screen_name":"tamaramunzner","followers_count":5185},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 16:49:53 +0000 2019","degree":0},{"id":1137031147211436000,"id_str":"1137031147211436033","user":{"screen_name":"nostalgiadriven","followers_count":133},"favorite_count":0,"retweet_count":1,"created_at":"Fri Jun 07 16:18:45 +0000 2019","degree":0},{"id":1137029644144783400,"id_str":"1137029644144783361","user":{"screen_name":"avilanova01","followers_count":38},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 16:12:46 +0000 2019","degree":0},{"id":1137026721801166800,"id_str":"1137026721801166848","user":{"screen_name":"AlexKale17","followers_count":118},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 16:01:10 +0000 2019","degree":0},{"id":1137020712114360300,"id_str":"1137020712114360322","user":{"screen_name":"tillnm","followers_count":3441},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 15:37:17 +0000 2019","degree":0},{"id":1137008013150175200,"id_str":"1137008013150175233","user":{"screen_name":"StefvandenElzen","followers_count":264},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 14:46:49 +0000 2019","degree":0},{"id":1137007547024650200,"id_str":"1137007547024650240","user":{"screen_name":"rlndscheepens","followers_count":49},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 14:44:58 +0000 2019","degree":0},{"id":1137004794101428200,"id_str":"1137004794101428224","user":{"screen_name":"kristw","followers_count":2894},"favorite_count":0,"retweet_count":2,"created_at":"Fri Jun 07 14:34:02 +0000 2019","degree":0},{"id":1137004240495235100,"id_str":"1137004240495235072","user":{"screen_name":"kristw","followers_count":2894},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 14:31:50 +0000 2019","degree":0},{"id":1137003647232094200,"id_str":"1137003647232094209","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 14:29:28 +0000 2019","degree":0},{"id":1136994557206454300,"id_str":"1136994557206454275","user":{"screen_name":"ThomasHollt","followers_count":175},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 13:53:21 +0000 2019","degree":0},{"id":1136982258781306900,"id_str":"1136982258781306881","user":{"screen_name":"SeanMiPhillips","followers_count":1270},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 13:04:29 +0000 2019","degree":0},{"id":1136978577059209200,"id_str":"1136978577059209217","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":0,"retweet_count":5,"created_at":"Fri Jun 07 12:49:51 +0000 2019","degree":0},{"id":1136978130856554500,"id_str":"1136978130856554496","user":{"screen_name":"jozilla","followers_count":1077},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 12:48:05 +0000 2019","degree":0},{"id":1136977768380600300,"id_str":"1136977768380600321","user":{"screen_name":"nicoguaro","followers_count":255},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 12:46:38 +0000 2019","degree":0},{"id":1136977207631343600,"id_str":"1136977207631343620","user":{"screen_name":"_JimWallace","followers_count":183},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 12:44:24 +0000 2019","degree":0},{"id":1136974812935524400,"id_str":"1136974812935524352","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":0,"retweet_count":3,"created_at":"Fri Jun 07 12:34:54 +0000 2019","degree":0},{"id":1136974430767341600,"id_str":"1136974430767341569","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 12:33:22 +0000 2019","degree":0},{"id":1136972470127333400,"id_str":"1136972470127333376","user":{"screen_name":"JessicaHullman","followers_count":2250},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 12:25:35 +0000 2019","degree":0},{"id":1136968785456271400,"id_str":"1136968785456271360","user":{"screen_name":"dawn_vis","followers_count":3},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 12:10:56 +0000 2019","degree":0},{"id":1136965590197907500,"id_str":"1136965590197907457","user":{"screen_name":"DavidGotz","followers_count":385},"favorite_count":0,"retweet_count":9,"created_at":"Fri Jun 07 11:58:15 +0000 2019","degree":0},{"id":1136965404302172200,"id_str":"1136965404302172165","user":{"screen_name":"wallnergue","followers_count":185},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 11:57:30 +0000 2019","degree":0},{"id":1136964066688323600,"id_str":"1136964066688323584","user":{"screen_name":"EvanMPeck","followers_count":1776},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 11:52:11 +0000 2019","degree":0},{"id":1136962828986925000,"id_str":"1136962828986925056","user":{"screen_name":"magneticnorth","followers_count":760},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 11:47:16 +0000 2019","degree":0},{"id":1136961402470568000,"id_str":"1136961402470567937","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":3,"created_at":"Fri Jun 07 11:41:36 +0000 2019","degree":0},{"id":1136961358744997900,"id_str":"1136961358744997888","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 11:41:26 +0000 2019","degree":0},{"id":1136960990157914100,"id_str":"1136960990157914112","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":1,"created_at":"Fri Jun 07 11:39:58 +0000 2019","degree":0},{"id":1136960816853475300,"id_str":"1136960816853475328","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 11:39:17 +0000 2019","degree":0},{"id":1136960500464574500,"id_str":"1136960500464574464","user":{"screen_name":"MichaelAupetit","followers_count":47},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 11:38:01 +0000 2019","degree":0},{"id":1136951376389574700,"id_str":"1136951376389574656","user":{"screen_name":"mandykeck","followers_count":25},"favorite_count":3,"retweet_count":1,"created_at":"Fri Jun 07 11:01:46 +0000 2019","degree":0},{"id":1136951149892907000,"id_str":"1136951149892907011","user":{"screen_name":"laneharrison","followers_count":1522},"favorite_count":34,"retweet_count":6,"created_at":"Fri Jun 07 11:00:52 +0000 2019","degree":0},{"id":1136951070964498400,"id_str":"1136951070964498432","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":1,"retweet_count":1,"created_at":"Fri Jun 07 11:00:33 +0000 2019","degree":0},{"id":1136949469176574000,"id_str":"1136949469176573954","user":{"screen_name":"alexander_lex","followers_count":1053},"favorite_count":2,"retweet_count":0,"created_at":"Fri Jun 07 10:54:11 +0000 2019","degree":0},{"id":1136948722242400300,"id_str":"1136948722242400256","user":{"screen_name":"BLACKSTEMUSA","followers_count":4350},"favorite_count":0,"retweet_count":1,"created_at":"Fri Jun 07 10:51:13 +0000 2019","degree":0},{"id":1136948569074806800,"id_str":"1136948569074806784","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":2,"retweet_count":1,"created_at":"Fri Jun 07 10:50:37 +0000 2019","degree":0},{"id":1136948106128449500,"id_str":"1136948106128449537","user":{"screen_name":"alexander_lex","followers_count":1053},"favorite_count":4,"retweet_count":1,"created_at":"Fri Jun 07 10:48:46 +0000 2019","degree":0},{"id":1136943322025594900,"id_str":"1136943322025594882","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":0,"retweet_count":0,"created_at":"Fri Jun 07 10:29:46 +0000 2019","degree":0},{"id":1136942950502608900,"id_str":"1136942950502608896","user":{"screen_name":"leerraum","followers_count":238},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 10:28:17 +0000 2019","degree":0},{"id":1136942932672561200,"id_str":"1136942932672561152","user":{"screen_name":"leerraum","followers_count":238},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 10:28:13 +0000 2019","degree":0},{"id":1136942774283132900,"id_str":"1136942774283132928","user":{"screen_name":"ryanwesslen","followers_count":216},"favorite_count":4,"retweet_count":0,"created_at":"Fri Jun 07 10:27:35 +0000 2019","degree":0},{"id":1136940278970028000,"id_str":"1136940278970028033","user":{"screen_name":"leerraum","followers_count":238},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 10:17:40 +0000 2019","degree":0},{"id":1136938834988589000,"id_str":"1136938834988589057","user":{"screen_name":"CerebroWs","followers_count":70},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 10:11:56 +0000 2019","degree":0},{"id":1136938082459103200,"id_str":"1136938082459103232","user":{"screen_name":"_ddjlab","followers_count":136},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 10:08:56 +0000 2019","degree":0},{"id":1136936237271437300,"id_str":"1136936237271437312","user":{"screen_name":"aneesha","followers_count":1491},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 10:01:36 +0000 2019","degree":0},{"id":1136934518068338700,"id_str":"1136934518068338688","user":{"screen_name":"geovisual","followers_count":1135},"favorite_count":9,"retweet_count":0,"created_at":"Fri Jun 07 09:54:46 +0000 2019","degree":0},{"id":1136934146650103800,"id_str":"1136934146650103809","user":{"screen_name":"rpgove","followers_count":548},"favorite_count":22,"retweet_count":9,"created_at":"Fri Jun 07 09:53:18 +0000 2019","degree":0},{"id":1136934114395873300,"id_str":"1136934114395873280","user":{"screen_name":"arnicas","followers_count":11959},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 09:53:10 +0000 2019","degree":0},{"id":1136933914377904100,"id_str":"1136933914377904128","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":7,"retweet_count":0,"created_at":"Fri Jun 07 09:52:23 +0000 2019","degree":0},{"id":1136933542548709400,"id_str":"1136933542548709381","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":9,"retweet_count":1,"created_at":"Fri Jun 07 09:50:54 +0000 2019","degree":0},{"id":1136933160510513200,"id_str":"1136933160510513152","user":{"screen_name":"dogvile","followers_count":3258},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 09:49:23 +0000 2019","degree":0},{"id":1136932976334213100,"id_str":"1136932976334213120","user":{"screen_name":"Ken_Yamamura","followers_count":1403},"favorite_count":0,"retweet_count":8,"created_at":"Fri Jun 07 09:48:39 +0000 2019","degree":0},{"id":1136932597668483100,"id_str":"1136932597668483072","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":22,"retweet_count":8,"created_at":"Fri Jun 07 09:47:09 +0000 2019","degree":0},{"id":1136932310526378000,"id_str":"1136932310526377986","user":{"screen_name":"rlndscheepens","followers_count":49},"favorite_count":3,"retweet_count":0,"created_at":"Fri Jun 07 09:46:00 +0000 2019","degree":0},{"id":1136931586539184100,"id_str":"1136931586539184129","user":{"screen_name":"geovisual","followers_count":1135},"favorite_count":2,"retweet_count":0,"created_at":"Fri Jun 07 09:43:08 +0000 2019","degree":0},{"id":1136930668439625700,"id_str":"1136930668439625728","user":{"screen_name":"SantchiWeb","followers_count":5632},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 09:39:29 +0000 2019","degree":0},{"id":1136930556267114500,"id_str":"1136930556267114497","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":8,"retweet_count":4,"created_at":"Fri Jun 07 09:39:02 +0000 2019","degree":0},{"id":1136928954948948000,"id_str":"1136928954948947968","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":1,"retweet_count":0,"created_at":"Fri Jun 07 09:32:40 +0000 2019","degree":0},{"id":1136928868374331400,"id_str":"1136928868374331392","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":20,"retweet_count":7,"created_at":"Fri Jun 07 09:32:19 +0000 2019","degree":0},{"id":1136928655869915100,"id_str":"1136928655869915138","user":{"screen_name":"JanWillemTulp","followers_count":12184},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 09:31:29 +0000 2019","degree":0},{"id":1136928236150173700,"id_str":"1136928236150173696","user":{"screen_name":"dougmcneall","followers_count":10052},"favorite_count":0,"retweet_count":7,"created_at":"Fri Jun 07 09:29:49 +0000 2019","degree":0},{"id":1136928021565321200,"id_str":"1136928021565321217","user":{"screen_name":"rlndscheepens","followers_count":49},"favorite_count":0,"retweet_count":0,"created_at":"Fri Jun 07 09:28:58 +0000 2019","degree":0},{"id":1136927673798811600,"id_str":"1136927673798811648","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":29,"retweet_count":7,"created_at":"Fri Jun 07 09:27:35 +0000 2019","degree":0},{"id":1136926874154733600,"id_str":"1136926874154733568","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":20,"retweet_count":3,"created_at":"Fri Jun 07 09:24:24 +0000 2019","degree":0},{"id":1136924728030060500,"id_str":"1136924728030060546","user":{"screen_name":"giCentre","followers_count":559},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 09:15:52 +0000 2019","degree":0},{"id":1136924334881148900,"id_str":"1136924334881148929","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":2,"retweet_count":0,"created_at":"Fri Jun 07 09:14:19 +0000 2019","degree":0},{"id":1136923783246336000,"id_str":"1136923783246336005","user":{"screen_name":"neuwirthe","followers_count":4838},"favorite_count":0,"retweet_count":4,"created_at":"Fri Jun 07 09:12:07 +0000 2019","degree":0},{"id":1136923652841246700,"id_str":"1136923652841246720","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":0,"retweet_count":0,"created_at":"Fri Jun 07 09:11:36 +0000 2019","degree":0},{"id":1136923264264101900,"id_str":"1136923264264101888","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":8,"retweet_count":4,"created_at":"Fri Jun 07 09:10:03 +0000 2019","degree":0},{"id":1136920356944580600,"id_str":"1136920356944580610","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":5,"retweet_count":0,"created_at":"Fri Jun 07 08:58:30 +0000 2019","degree":0},{"id":1136919207038410800,"id_str":"1136919207038410753","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":12,"retweet_count":2,"created_at":"Fri Jun 07 08:53:56 +0000 2019","degree":0},{"id":1136881455584501800,"id_str":"1136881455584501761","user":{"screen_name":"manunna_91","followers_count":211},"favorite_count":0,"retweet_count":2,"created_at":"Fri Jun 07 06:23:55 +0000 2019","degree":0},{"id":1136801510774444000,"id_str":"1136801510774444032","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":0,"retweet_count":6,"created_at":"Fri Jun 07 01:06:15 +0000 2019","degree":0},{"id":1136767703920894000,"id_str":"1136767703920893953","user":{"screen_name":"nicolapezzotti","followers_count":581},"favorite_count":0,"retweet_count":4,"created_at":"Thu Jun 06 22:51:55 +0000 2019","degree":0},{"id":1136759004699471900,"id_str":"1136759004699471877","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:17:21 +0000 2019","degree":0},{"id":1136758963679182800,"id_str":"1136758963679182849","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:17:11 +0000 2019","degree":0},{"id":1136757156575928300,"id_str":"1136757156575928320","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:10:00 +0000 2019","degree":0},{"id":1136755437276213200,"id_str":"1136755437276213248","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:03:10 +0000 2019","degree":0},{"id":1136755282791604200,"id_str":"1136755282791604224","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:02:33 +0000 2019","degree":0},{"id":1136755259962011600,"id_str":"1136755259962011648","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:02:28 +0000 2019","degree":0},{"id":1136755119335387100,"id_str":"1136755119335387137","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:01:54 +0000 2019","degree":0},{"id":1136754911469887500,"id_str":"1136754911469887489","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:01:05 +0000 2019","degree":0},{"id":1136754888531173400,"id_str":"1136754888531173377","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:59 +0000 2019","degree":0},{"id":1136754847041163300,"id_str":"1136754847041163264","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:50 +0000 2019","degree":0},{"id":1136754778128752600,"id_str":"1136754778128752647","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:33 +0000 2019","degree":0},{"id":1136754749582336000,"id_str":"1136754749582336000","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:26 +0000 2019","degree":0},{"id":1136754728694681600,"id_str":"1136754728694681601","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:21 +0000 2019","degree":0},{"id":1136754679046651900,"id_str":"1136754679046651904","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:10 +0000 2019","degree":0},{"id":1136754664328892400,"id_str":"1136754664328892420","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 22:00:06 +0000 2019","degree":0},{"id":1136754629604204500,"id_str":"1136754629604204550","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:59:58 +0000 2019","degree":0},{"id":1136754619441438700,"id_str":"1136754619441438725","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:59:55 +0000 2019","degree":0},{"id":1136754600009244700,"id_str":"1136754600009244672","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:59:51 +0000 2019","degree":0},{"id":1136754505272479700,"id_str":"1136754505272479745","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:59:28 +0000 2019","degree":0},{"id":1136754474415022100,"id_str":"1136754474415022080","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:59:21 +0000 2019","degree":0},{"id":1136754303094415400,"id_str":"1136754303094415360","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:58:40 +0000 2019","degree":0},{"id":1136754265387651100,"id_str":"1136754265387651072","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:58:31 +0000 2019","degree":0},{"id":1136752101063835600,"id_str":"1136752101063835649","user":{"screen_name":"eurovis","followers_count":355},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 21:49:55 +0000 2019","degree":0},{"id":1136746913431265300,"id_str":"1136746913431265287","user":{"screen_name":"stevenbeeckman","followers_count":2301},"favorite_count":0,"retweet_count":6,"created_at":"Thu Jun 06 21:29:18 +0000 2019","degree":0},{"id":1136704911071219700,"id_str":"1136704911071219713","user":{"screen_name":"rndblnch","followers_count":102},"favorite_count":0,"retweet_count":4,"created_at":"Thu Jun 06 18:42:24 +0000 2019","degree":0},{"id":1136695923503968300,"id_str":"1136695923503968256","user":{"screen_name":"leonel_merino","followers_count":154},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 18:06:41 +0000 2019","degree":0},{"id":1136694194989424600,"id_str":"1136694194989424640","user":{"screen_name":"rpgove","followers_count":548},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 17:59:49 +0000 2019","degree":0},{"id":1136689170338893800,"id_str":"1136689170338893824","user":{"screen_name":"mathisonian","followers_count":3631},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 17:39:51 +0000 2019","degree":0},{"id":1136688325270548500,"id_str":"1136688325270548480","user":{"screen_name":"mathisonian","followers_count":3631},"favorite_count":0,"retweet_count":3,"created_at":"Thu Jun 06 17:36:30 +0000 2019","degree":0},{"id":1136680941286543400,"id_str":"1136680941286543368","user":{"screen_name":"uwdata","followers_count":5526},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 17:07:09 +0000 2019","degree":0},{"id":1136680907262312400,"id_str":"1136680907262312448","user":{"screen_name":"MickaelSereno","followers_count":9},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 17:07:01 +0000 2019","degree":0},{"id":1136680887276507100,"id_str":"1136680887276507140","user":{"screen_name":"uwdata","followers_count":5526},"favorite_count":23,"retweet_count":3,"created_at":"Thu Jun 06 17:06:56 +0000 2019","degree":0},{"id":1136680847426371600,"id_str":"1136680847426371584","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":12,"retweet_count":2,"created_at":"Thu Jun 06 17:06:47 +0000 2019","degree":0},{"id":1136680609647071200,"id_str":"1136680609647071232","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":2,"retweet_count":0,"created_at":"Thu Jun 06 17:05:50 +0000 2019","degree":0},{"id":1136679248213790700,"id_str":"1136679248213790721","user":{"screen_name":"ryanwesslen","followers_count":216},"favorite_count":0,"retweet_count":6,"created_at":"Thu Jun 06 17:00:25 +0000 2019","degree":0},{"id":1136679145134579700,"id_str":"1136679145134579715","user":{"screen_name":"uwdata","followers_count":5526},"favorite_count":0,"retweet_count":6,"created_at":"Thu Jun 06 17:00:01 +0000 2019","degree":0},{"id":1136678852942602200,"id_str":"1136678852942602240","user":{"screen_name":"digidickinson","followers_count":6996},"favorite_count":0,"retweet_count":6,"created_at":"Thu Jun 06 16:58:51 +0000 2019","degree":0},{"id":1136678746520510500,"id_str":"1136678746520510465","user":{"screen_name":"marie_ototoi","followers_count":264},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 16:58:26 +0000 2019","degree":0},{"id":1136678164254605300,"id_str":"1136678164254605314","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":21,"retweet_count":6,"created_at":"Thu Jun 06 16:56:07 +0000 2019","degree":0},{"id":1136677997459546100,"id_str":"1136677997459546117","user":{"screen_name":"uusci","followers_count":273},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 16:55:27 +0000 2019","degree":0},{"id":1136677805977165800,"id_str":"1136677805977165824","user":{"screen_name":"alexander_lex","followers_count":1053},"favorite_count":1,"retweet_count":1,"created_at":"Thu Jun 06 16:54:42 +0000 2019","degree":0},{"id":1136677168103264300,"id_str":"1136677168103264257","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":0,"retweet_count":0,"created_at":"Thu Jun 06 16:52:09 +0000 2019","degree":0},{"id":1136676589415088100,"id_str":"1136676589415088128","user":{"screen_name":"eagereyes","followers_count":21112},"favorite_count":2,"retweet_count":0,"created_at":"Thu Jun 06 16:49:52 +0000 2019","degree":0},{"id":1136676447651868700,"id_str":"1136676447651868674","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 16:49:18 +0000 2019","degree":0},{"id":1136674209566998500,"id_str":"1136674209566998531","user":{"screen_name":"NElmqvist","followers_count":1452},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 16:40:24 +0000 2019","degree":0},{"id":1136673770284965900,"id_str":"1136673770284965889","user":{"screen_name":"mandykeck","followers_count":25},"favorite_count":1,"retweet_count":1,"created_at":"Thu Jun 06 16:38:39 +0000 2019","degree":0},{"id":1136671119874973700,"id_str":"1136671119874973701","user":{"screen_name":"_Noeska_","followers_count":555},"favorite_count":7,"retweet_count":0,"created_at":"Thu Jun 06 16:28:07 +0000 2019","degree":0},{"id":1136670141213749200,"id_str":"1136670141213749248","user":{"screen_name":"tomhorak21","followers_count":152},"favorite_count":13,"retweet_count":1,"created_at":"Thu Jun 06 16:24:14 +0000 2019","degree":0},{"id":1136669942764277800,"id_str":"1136669942764277760","user":{"screen_name":"uusci","followers_count":273},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 16:23:27 +0000 2019","degree":0},{"id":1136669756348493800,"id_str":"1136669756348493824","user":{"screen_name":"uusci","followers_count":273},"favorite_count":0,"retweet_count":4,"created_at":"Thu Jun 06 16:22:42 +0000 2019","degree":0},{"id":1136669047871987700,"id_str":"1136669047871987712","user":{"screen_name":"duto_guerra","followers_count":2496},"favorite_count":8,"retweet_count":2,"created_at":"Thu Jun 06 16:19:53 +0000 2019","degree":0},{"id":1136668244608266200,"id_str":"1136668244608266247","user":{"screen_name":"giCentre","followers_count":559},"favorite_count":0,"retweet_count":1,"created_at":"Thu Jun 06 16:16:42 +0000 2019","degree":0},{"id":1136668117516599300,"id_str":"1136668117516599297","user":{"screen_name":"jsndyks","followers_count":615},"favorite_count":1,"retweet_count":0,"created_at":"Thu Jun 06 16:16:12 +0000 2019","degree":0},{"id":1136666740530827300,"id_str":"1136666740530827265","user":{"screen_name":"MickaelSereno","followers_count":9},"favorite_count":0,"retweet_count":2,"created_at":"Thu Jun 06 16:10:43 +0000 2019","degree":0},{"id":1134382594290831400,"id_str":"1134382594290831360","user":{"screen_name":"mosautoshina","followers_count":164},"favorite_count":0,"retweet_count":0,"created_at":"Fri May 31 08:54:20 +0000 2019","degree":0}],"links":[{"target":"1136584655396884481","target_id":"1136584655396884481","source":"1136659631756009472","type":"retweet"},{"target":"1136620375721283584","target_id":"1136620375721283584","source":"1136653761127096320","type":"retweet"},{"target":"1136643730017017857","target_id":"1136643730017017857","source":"1136646205021331457","type":"retweet"},{"target":"1136643730017017857","target_id":"1136643730017017857","source":"1136645134899171328","type":"retweet"},{"target":"1136643730017017857","target_id":"1136643730017017857","source":"1136644994956238848","type":"retweet"},{"target":"1136636716146679809","target_id":"1136636716146679809","source":"1136638217493602309","type":"retweet"},{"target":"1136620375721283584","target_id":"1136620375721283584","source":"1136631531156283392","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1136626229841260550","type":"retweet"},{"target":"1136620784942755840","target_id":"1136620784942755840","source":"1136625964371316736","type":"retweet"},{"target":"1136620375721283584","target_id":"1136620375721283584","source":"1136622020660273154","type":"retweet"},{"target":"1136584655396884481","target_id":"1136584655396884481","source":"1136585607063461888","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136555445135581190","type":"retweet"},{"target":"1136538591960666113","target_id":"1136538591960666113","source":"1136540668069916673","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136500344572088320","type":"retweet"},{"target":"1135903185208532992","target_id":"1135903185208532992","source":"1136474596520222721","type":"retweet"},{"target":"1136228245261758465","target_id":"1136228245261758465","source":"1136451567844904960","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136436488084889606","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136418939083378698","type":"retweet"},{"target":"1136190687047823360","target_id":"1136190687047823360","source":"1136398340457975808","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1136395718820847617","type":"retweet"},{"target":"1136228245261758465","target_id":"1136228245261758465","source":"1136367017357959169","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136351096199417861","type":"retweet"},{"target":"1136228245261758465","target_id":"1136228245261758465","source":"1136345576679903234","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136317383298211840","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136304223061041152","type":"retweet"},{"target":"1136221083932270593","target_id":"1136221083932270593","source":"1136299550086504448","type":"retweet"},{"target":"1136184475845636096","target_id":"1136184475845636096","source":"1136295772683669507","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136293702307991552","type":"retweet"},{"target":"1136218832664764416","target_id":"1136218832664764416","source":"1136285291235270657","type":"retweet"},{"target":"1136282699570827266","target_id":"1136282699570827266","source":"1136283032590180352","type":"retweet"},{"target":"1136282699570827266","target_id":"1136282699570827266","source":"1136282878059454466","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136277337555603456","type":"retweet"},{"target":"1136257193139998721","target_id":"1136257193139998721","source":"1136264658774646785","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1136264406457884674","type":"retweet"},{"target":"1135903972806594560","target_id":"1135903972806594560","source":"1136263973802823681","type":"retweet"},{"target":"1136218832664764416","target_id":"1136218832664764416","source":"1136262695819153409","type":"retweet"},{"target":"1136221083932270593","target_id":"1136221083932270593","source":"1136242605367255040","type":"retweet"},{"target":"1136215550563147777","target_id":"1136215550563147777","source":"1136241262397415424","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136240668693684225","type":"retweet"},{"target":"1136228245261758465","target_id":"1136228245261758465","source":"1136236770088148993","type":"retweet"},{"target":"1136205912803368961","target_id":"1136205912803368961","source":"1136234141656276998","type":"retweet"},{"target":"1136182664732561409","target_id":"1136182664732561409","source":"1136233813900701702","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1136233724297846784","type":"retweet"},{"target":"1136218832664764416","target_id":"1136218832664764416","source":"1136233682455408641","type":"retweet"},{"target":"1136230091921534977","target_id":"1136230091921534977","source":"1136230324990554114","type":"retweet"},{"target":"1136226861363671041","target_id":"1136226861363671041","source":"1136228467362684928","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136224656283897858","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136221497796829184","type":"retweet"},{"target":"1136202188693409794","target_id":"1136202188693409794","source":"1136219572862894082","type":"retweet"},{"target":"1135891949087596544","target_id":"1135891949087596544","source":"1136212168641253377","type":"retweet"},{"target":"1136202188693409794","target_id":"1136202188693409794","source":"1136202463281864704","type":"retweet"},{"target":"1135900072460394497","target_id":"1135900072460394497","source":"1136199296397848577","type":"retweet"},{"target":"1136198890632437765","target_id":"1136198890632437765","source":"1136199111974248449","type":"retweet"},{"target":"1135928729635631105","target_id":"1135928729635631105","source":"1136199081414578178","type":"retweet"},{"target":"1135862387444264960","target_id":"1135862387444264960","source":"1136199068684881922","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136198829454184449","type":"retweet"},{"target":"1136195359640870914","target_id":"1136195359640870914","source":"1136196517633675264","type":"retweet"},{"target":"1136190687047823360","target_id":"1136190687047823360","source":"1136193659471323136","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136180530859429889","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136161953976426497","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136145071659728896","type":"retweet"},{"target":"1135900072460394497","target_id":"1135900072460394497","source":"1136143787493908481","type":"retweet"},{"target":"1135903972806594560","target_id":"1135903972806594560","source":"1136118212872015872","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136115077491449856","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136113901509238784","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136103996043620352","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136103415732420608","type":"retweet"},{"target":"1135903972806594560","target_id":"1135903972806594560","source":"1136072754464268289","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1136072542387658753","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1136069297233682432","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136061259009396737","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1136006025851691008","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135998353974546432","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135990906509828096","type":"retweet"},{"target":"1135473481515188224","target_id":"1135473481515188224","source":"1135990758224347136","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135987371063816192","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135970694649516033","type":"retweet"},{"target":"1135922925914210304","target_id":"1135922925914210304","source":"1135968976322932736","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135963786957840384","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135957042546532352","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135953260496470016","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135953185384742912","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135952665924526080","type":"retweet"},{"target":"1135919921429340160","target_id":"1135919921429340160","source":"1135945499947753472","type":"retweet"},{"target":"1135940243037704192","target_id":"1135940243037704192","source":"1135940434427928582","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135939269829320705","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135937385013710849","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135929434962321408","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135921599801020416","type":"retweet"},{"target":"1135916669270761473","target_id":"1135916669270761473","source":"1135918867274842121","type":"retweet"},{"target":"1135862387444264960","target_id":"1135862387444264960","source":"1135911538659741701","type":"retweet"},{"target":"1135868140871671816","target_id":"1135868140871671816","source":"1135907548563771397","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135904710446211073","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135903806494007297","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135903379404873728","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1135902806223794176","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1135902782387605506","type":"retweet"},{"target":"1135466836475162624","target_id":"1135466836475162624","source":"1135902708559437825","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135902436793696257","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135902316396261376","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135887216767512581","type":"retweet"},{"target":"1135868140871671816","target_id":"1135868140871671816","source":"1135869389776011265","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135860581871837185","type":"retweet"},{"target":"1135846759446601729","target_id":"1135846759446601729","source":"1135854230936465413","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135847982086144000","type":"retweet"},{"target":"1135504333963976706","target_id":"1135504333963976706","source":"1135841357354930176","type":"retweet"},{"target":"1135837274397184002","target_id":"1135837274397184002","source":"1135839173158592512","type":"retweet"},{"target":"1135520946431954945","target_id":"1135520946431954945","source":"1135838478506364928","type":"retweet"},{"target":"1135521511836651520","target_id":"1135521511836651520","source":"1135838468993671168","type":"retweet"},{"target":"1135521704317468672","target_id":"1135521704317468672","source":"1135838458524643328","type":"retweet"},{"target":"1135521891307917317","target_id":"1135521891307917317","source":"1135838448936525825","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135838359606181889","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135837597165662208","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135832562805460994","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135832323000295425","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135831906069688327","type":"retweet"},{"target":"1135831298117947392","target_id":"1135831298117947392","source":"1135831648854061056","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135720176203079680","type":"retweet"},{"target":"1135491585179824128","target_id":"1135491585179824128","source":"1135628823481999360","type":"retweet"},{"target":"1135548223341420545","target_id":"1135548223341420545","source":"1135583884068892672","type":"retweet"},{"target":"1135491585179824128","target_id":"1135491585179824128","source":"1135581918643314689","type":"retweet"},{"target":"1135502082650378243","target_id":"1135502082650378243","source":"1135580791495430145","type":"retweet"},{"target":"1135514930030006274","target_id":"1135514930030006274","source":"1135573133736517632","type":"retweet"},{"target":"1135492194779971584","target_id":"1135492194779971584","source":"1135564524382277632","type":"retweet"},{"target":"1133988756934057985","target_id":"1133988756934057985","source":"1135557033007050752","type":"retweet"},{"target":"1135473481515188224","target_id":"1135473481515188224","source":"1135542815801434113","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1135541639315804162","type":"retweet"},{"target":"1135538216810029056","target_id":"1135538216810029056","source":"1135538718025093120","type":"retweet"},{"target":"1135536257965154310","target_id":"1135536257965154310","source":"1135536562966601734","type":"retweet"},{"target":"1135502082650378243","target_id":"1135502082650378243","source":"1135533091332796418","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1135517547091173377","type":"retweet"},{"target":"1135504333963976706","target_id":"1135504333963976706","source":"1135505951136636928","type":"retweet"},{"target":"1135502082650378243","target_id":"1135502082650378243","source":"1135503703123931136","type":"retweet"},{"target":"1135502082650378243","target_id":"1135502082650378243","source":"1135502478752079873","type":"retweet"},{"target":"1135497943597944832","target_id":"1135497943597944832","source":"1135499065800765441","type":"retweet"},{"target":"1135491585179824128","target_id":"1135491585179824128","source":"1135496433350713347","type":"retweet"},{"target":"1135492194779971584","target_id":"1135492194779971584","source":"1135494464536023041","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1135488180239646720","type":"retweet"},{"target":"1135473481515188224","target_id":"1135473481515188224","source":"1135480799032217600","type":"retweet"},{"target":"1135473481515188224","target_id":"1135473481515188224","source":"1135473954339139585","type":"retweet"},{"target":"1135466836475162624","target_id":"1135466836475162624","source":"1135470541203263488","type":"retweet"},{"target":"1135466836475162624","target_id":"1135466836475162624","source":"1135469579579400197","type":"retweet"},{"target":"1135466836475162624","target_id":"1135466836475162624","source":"1135467521102901248","type":"retweet"},{"target":"1135464226955366400","target_id":"1135464226955366400","source":"1135465381118849024","type":"retweet"},{"target":"1135459359037820928","target_id":"1135459359037820928","source":"1135463894082871297","type":"retweet"},{"target":"1135459359037820928","target_id":"1135459359037820928","source":"1135461716635082752","type":"retweet"},{"target":"1135453250499620864","target_id":"1135453250499620864","source":"1135454384572289025","type":"retweet"},{"target":"1135453250499620864","target_id":"1135453250499620864","source":"1135453898595012608","type":"retweet"},{"target":"1135453250499620864","target_id":"1135453250499620864","source":"1135453474664210432","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1135450319096307715","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1135420539567087616","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1135318174298234880","type":"retweet"},{"target":"1135303206605643776","target_id":"1135303206605643776","source":"1135303234980130816","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135267506694868993","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135264601485053952","type":"retweet"},{"target":"1135251914197733376","target_id":"1135251914197733376","source":"1135257306835427331","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135212717160091649","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135206248582930434","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135191831187218432","type":"retweet"},{"target":"1135133221467893765","target_id":"1135133221467893765","source":"1135161501336121344","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135161440199938048","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135156101899534336","type":"retweet"},{"target":"1135131757311811586","target_id":"1135131757311811586","source":"1135132628150030336","type":"retweet"},{"target":"1135131080196071424","target_id":"1135131080196071424","source":"1135132614883500032","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135122605445459968","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135119049963266048","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135116895764537344","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135114293945491456","type":"retweet"},{"target":"1134866051316015106","target_id":"1134866051316015106","source":"1135114198801887232","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135114182314156033","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135102830266802176","type":"retweet"},{"target":"1135098921154469888","target_id":"1135098921154469888","source":"1135099067015417856","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135049462756368384","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135040859437772803","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135022017076498432","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135021204916641792","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1135018441247809536","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134838645301661698","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134786107554635777","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134771689621995521","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134764491474964480","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134647526118907905","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134639462221197312","type":"retweet"},{"target":"1128398422766235648","target_id":"1128398422766235648","source":"1134579340656762880","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134567700838133760","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134561873272033280","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134557679165222912","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134530490369597440","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134529144346177537","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134522967457783808","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134514020038381568","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134513945778171904","type":"retweet"},{"target":"1134511233389010946","target_id":"1134511233389010946","source":"1134513815440252928","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134204972973862912","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134131984631050241","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134080153393487883","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134077314915082241","type":"retweet"},{"target":"1133988756934057985","target_id":"1133988756934057985","source":"1134074051708817409","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134069294910922752","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134066260134703104","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134064066908102657","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134058049256251392","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134055637690789893","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134048088920862720","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134045624796622848","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134031469242986497","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134024428222857216","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134024311533187072","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134022222715195392","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134018645774835714","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134018098229522432","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1134006296225746944","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133979396027629568","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133969593922412545","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133963149265264640","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133934762035417088","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133919056384466946","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133909789182795776","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133902033721782274","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133902014075641857","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133895024628944897","type":"retweet"},{"target":"1133479348554686467","target_id":"1133479348554686467","source":"1133893967572013056","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137843157939499008","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137834540037226497","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137799147480899584","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137789767444287488","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137761110717804545","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137741169763475458","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137738694755069957","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137738675486363648","type":"retweet"},{"target":"1137737025296175104","target_id":"1137737025296175104","source":"1137738032063361024","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137710880873828353","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137699283740717056","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137674166260326400","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137608573599358976","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137478504268861441","type":"retweet"},{"target":"1136951070964498432","target_id":"1136951070964498432","source":"1137465973940858883","type":"retweet"},{"target":"1136951376389574656","target_id":"1136951376389574656","source":"1137465901824040960","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137462776958291969","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137442450996379650","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1137428441391927307","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137422634692431872","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137415693723287553","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137413050498109441","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1137400665423192064","type":"retweet"},{"target":"1136313274448982017","target_id":"1136313274448982017","source":"1137400623035572229","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137395911292645382","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137383405308375042","type":"retweet"},{"target":"1137286929651777536","target_id":"1137286929651777536","source":"1137380561033531393","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137370377955549185","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137353548365254656","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137349946330492928","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137324080733011968","type":"retweet"},{"target":"1137286929651777536","target_id":"1137286929651777536","source":"1137306109189009408","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137274938921050112","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137273433711095808","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137256285647196160","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137254011118137344","type":"retweet"},{"target":"1136926874154733568","target_id":"1136926874154733568","source":"1137253338427383808","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137243826328879105","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1137238644106891269","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137232733678243840","type":"retweet"},{"target":"1136923264264101888","target_id":"1136923264264101888","source":"1137209836305821696","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137198128380014592","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1137196116745904128","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137179567247056897","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137170835897180160","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137169210944184320","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137159829016010753","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137156039768330240","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137140418594910208","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137138793750904832","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137137073301991425","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137135175710543872","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137134385520660480","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137123385253748736","type":"retweet"},{"target":"1136282699570827266","target_id":"1136282699570827266","source":"1137109239183355906","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137109058505175040","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137108327714844673","type":"retweet"},{"target":"1136673770284965889","target_id":"1136673770284965889","source":"1137105515123826693","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137104239061348355","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137101803764371456","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137099174795722752","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137096059446947840","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137094669983277056","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137090140193484800","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1137084840761798657","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137081389822689282","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137079766517858306","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137079211162652672","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137077628345540608","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137072656295968768","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137071878596702209","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137071291029184513","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137070363802832896","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137069403575660545","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137069302337511424","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137068875516960770","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137068105623121920","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137066607056998400","type":"retweet"},{"target":"1137066366924664833","target_id":"1137066366924664833","source":"1137066588673208321","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1137044826531090432","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1137044445755392000","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1137042495265787904","type":"retweet"},{"target":"1130425949571485696","target_id":"1130425949571485696","source":"1137041719747317760","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1137041648959889408","type":"retweet"},{"target":"1136919207038410753","target_id":"1136919207038410753","source":"1137041567301038083","type":"retweet"},{"target":"1130425949571485696","target_id":"1130425949571485696","source":"1137041561357836289","type":"retweet"},{"target":"1136930556267114497","target_id":"1136930556267114497","source":"1137041491614883841","type":"retweet"},{"target":"1136926874154733568","target_id":"1136926874154733568","source":"1137041415572078592","type":"retweet"},{"target":"1136923264264101888","target_id":"1136923264264101888","source":"1137041393308774401","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1137041369992781825","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1137041344814129152","type":"retweet"},{"target":"1130425949571485696","target_id":"1130425949571485696","source":"1137041270646251520","type":"retweet"},{"target":"1135902544125976577","target_id":"1135902544125976577","source":"1137039429430784000","type":"retweet"},{"target":"1136227066544840704","target_id":"1136227066544840704","source":"1137038984683515904","type":"retweet"},{"target":"1136948106128449537","target_id":"1136948106128449537","source":"1137031147211436033","type":"retweet"},{"target":"1136638830184935424","target_id":"1136638830184935424","source":"1137029644144783361","type":"retweet"},{"target":"1136930556267114497","target_id":"1136930556267114497","source":"1137026721801166848","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1137020712114360322","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1137008013150175233","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1137007547024650240","type":"retweet"},{"target":"1136919207038410753","target_id":"1136919207038410753","source":"1137004794101428224","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1137004240495235072","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1137003647232094209","type":"retweet"},{"target":"1136638830184935424","target_id":"1136638830184935424","source":"1136994557206454275","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136982258781306881","type":"retweet"},{"target":"1135466836475162624","target_id":"1135466836475162624","source":"1136978577059209217","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1136978130856554496","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1136977768380600321","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1136977207631343620","type":"retweet"},{"target":"1136680887276507140","target_id":"1136680887276507140","source":"1136974812935524352","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1136974430767341569","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136972470127333376","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136968785456271360","type":"retweet"},{"target":"1136934146650103809","target_id":"1136934146650103809","source":"1136965590197907457","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1136965404302172165","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1136964066688323584","type":"retweet"},{"target":"1136951149892907011","target_id":"1136951149892907011","source":"1136962828986925056","type":"retweet"},{"target":"1136926874154733568","target_id":"1136926874154733568","source":"1136961402470567937","type":"retweet"},{"target":"1136930556267114497","target_id":"1136930556267114497","source":"1136961358744997888","type":"retweet"},{"target":"1136933542548709381","target_id":"1136933542548709381","source":"1136960990157914112","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136960816853475328","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1136960500464574464","type":"retweet"},{"target":"1136948569074806784","target_id":"1136948569074806784","source":"1136948722242400256","type":"retweet"},{"target":"1136928868374331392","target_id":"1136928868374331392","source":"1136942950502608896","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136942932672561152","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136940278970028033","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136938834988589057","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136938082459103232","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136936237271437312","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136934114395873280","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136933160510513152","type":"retweet"},{"target":"1136932597668483072","target_id":"1136932597668483072","source":"1136932976334213120","type":"retweet"},{"target":"1136930556267114497","target_id":"1136930556267114497","source":"1136930668439625728","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136928655869915138","type":"retweet"},{"target":"1136927673798811648","target_id":"1136927673798811648","source":"1136928236150173696","type":"retweet"},{"target":"1136923264264101888","target_id":"1136923264264101888","source":"1136924728030060546","type":"retweet"},{"target":"1136923264264101888","target_id":"1136923264264101888","source":"1136923783246336005","type":"retweet"},{"target":"1136669047871987712","target_id":"1136669047871987712","source":"1136881455584501761","type":"retweet"},{"target":"1136678164254605314","target_id":"1136678164254605314","source":"1136801510774444032","type":"retweet"},{"target":"1136638830184935424","target_id":"1136638830184935424","source":"1136767703920893953","type":"retweet"},{"target":"1136678164254605314","target_id":"1136678164254605314","source":"1136746913431265287","type":"retweet"},{"target":"1136620375721283584","target_id":"1136620375721283584","source":"1136704911071219713","type":"retweet"},{"target":"1136563674808750080","target_id":"1136563674808750080","source":"1136695923503968256","type":"retweet"},{"target":"1136669047871987712","target_id":"1136669047871987712","source":"1136694194989424640","type":"retweet"},{"target":"1136680847426371584","target_id":"1136680847426371584","source":"1136689170338893824","type":"retweet"},{"target":"1136680887276507140","target_id":"1136680887276507140","source":"1136688325270548480","type":"retweet"},{"target":"1136680847426371584","target_id":"1136680847426371584","source":"1136680941286543368","type":"retweet"},{"target":"1136678164254605314","target_id":"1136678164254605314","source":"1136679248213790721","type":"retweet"},{"target":"1136678164254605314","target_id":"1136678164254605314","source":"1136679145134579715","type":"retweet"},{"target":"1136678164254605314","target_id":"1136678164254605314","source":"1136678852942602240","type":"retweet"},{"target":"1136662227329724416","target_id":"1136662227329724416","source":"1136678746520510465","type":"retweet"},{"target":"1136677805977165824","target_id":"1136677805977165824","source":"1136677997459546117","type":"retweet"},{"target":"1136670141213749248","target_id":"1136670141213749248","source":"1136674209566998531","type":"retweet"},{"target":"1136313274448982017","target_id":"1136313274448982017","source":"1136669942764277760","type":"retweet"},{"target":"1136638830184935424","target_id":"1136638830184935424","source":"1136669756348493824","type":"retweet"},{"target":"1136646100113399808","target_id":"1136646100113399808","source":"1136668244608266247","type":"retweet"},{"target":"1136662227329724416","target_id":"1136662227329724416","source":"1136666740530827265","type":"retweet"},{"source":"1136651309900345344","target":1136650029022752800,"target_id":1136650029022752800,"type":"reply"},{"source":"1136620784942755840","target":1135134029831909400,"target_id":1135134029831909400,"type":"reply"},{"source":"1136607169288126464","target":1136489934708248600,"target_id":1136489934708248600,"type":"reply"},{"source":"1136556366896803840","target":1136554587224191000,"target_id":1136554587224191000,"type":"reply"},{"source":"1136549493317492737","target":1136370877594046500,"target_id":1136370877594046500,"type":"reply"},{"source":"1136226040395771906","target":1136225646722650100,"target_id":1136225646722650100,"type":"reply"},{"source":"1136215971209891845","target":1136215675251417100,"target_id":1136215675251417100,"type":"reply"},{"source":"1136205275852152832","target":1135939626047221800,"target_id":1135939626047221800,"type":"reply"},{"source":"1136196270803116032","target":1136184991753355300,"target_id":1136184991753355300,"type":"reply"},{"source":"1136196209029406720","target":1136184991753355300,"target_id":1136184991753355300,"type":"reply"},{"source":"1136194568658006021","target":1136190687047823400,"target_id":1136190687047823400,"type":"reply"},{"source":"1135848369761456128","target":1135831298117947400,"target_id":1135831298117947400,"type":"reply"},{"source":"1135840777005932544","target":1135837274397184000,"target_id":1135837274397184000,"type":"reply"},{"source":"1135832583814680577","target":1135831298117947400,"target_id":1135831298117947400,"type":"reply"},{"source":"1135538216810029056","target":1135495286678274000,"target_id":1135495286678274000,"type":"reply"},{"source":"1135133221467893765","target":1135132835604553700,"target_id":1135132835604553700,"type":"reply"},{"source":"1135132835604553728","target":1135131757311811600,"target_id":1135131757311811600,"type":"reply"},{"source":"1135131757311811586","target":1135131080196071400,"target_id":1135131080196071400,"type":"reply"},{"source":"1135081016002056193","target":1134614578254495700,"target_id":1134614578254495700,"type":"reply"},{"source":"1134973991955902464","target":1133544640450256900,"target_id":1133544640450256900,"type":"reply"},{"source":"1134973912834551809","target":1133546978854309900,"target_id":1133546978854309900,"type":"reply"},{"source":"1134866051316015106","target":1134580911977173000,"target_id":1134580911977173000,"type":"reply"},{"source":"1134614578254495746","target":1134188269246255100,"target_id":1134188269246255100,"type":"reply"},{"source":"1133988766090178560","target":1133988763389124600,"target_id":1133988763389124600,"type":"reply"},{"source":"1137120622541246464","target":1137117912886464500,"target_id":1137117912886464500,"type":"reply"},{"source":"1136951070964498432","target":1136949469176574000,"target_id":1136949469176574000,"type":"reply"},{"source":"1136949469176573954","target":1136943322025594900,"target_id":1136943322025594900,"type":"reply"},{"source":"1136680609647071232","target":1136676447651868700,"target_id":1136676447651868700,"type":"reply"},{"source":"1136669047871987712","target":1136659592010784800,"target_id":1136659592010784800,"type":"reply"},{"source":"1136620784942755840","target":"1135134029831909376","target_id":"1135134029831909376","type":"quote"},{"source":"1136264617968197632","target":"1136257193139998721","target_id":"1136257193139998721","type":"quote"},{"source":"1136215675251417088","target":"1135902544125976577","target_id":"1135902544125976577","type":"quote"},{"source":"1136202188693409794","target":"1129463666103820289","target_id":"1129463666103820289","type":"quote"},{"source":"1136182664732561409","target":"1135473481515188224","target_id":"1135473481515188224","type":"quote"},{"source":"1136153144524562434","target":"1136152433296646146","target_id":"1136152433296646146","type":"quote"},{"source":"1135940243037704192","target":"1129463666103820289","target_id":"1129463666103820289","type":"quote"},{"source":"1135903972806594560","target":"1135902544125976577","target_id":"1135902544125976577","type":"quote"},{"source":"1135903185208532992","target":"1135902544125976577","target_id":"1135902544125976577","type":"quote"},{"source":"1135891949087596544","target":"1135539184695959552","target_id":"1135539184695959552","type":"quote"},{"source":"1135548223341420545","target":"1135473481515188224","target_id":"1135473481515188224","type":"quote"},{"source":"1135502082650378243","target":"1135464226955366400","target_id":"1135464226955366400","type":"quote"},{"source":"1135496736154292224","target":"1135466836475162624","target_id":"1135466836475162624","type":"quote"},{"source":"1135251914197733376","target":"1135249202274086913","target_id":"1135249202274086913","type":"quote"},{"source":"1134871256531177472","target":"1130425949571485696","target_id":"1130425949571485696","type":"quote"},{"source":"1134614623318159361","target":"1134188269246255105","target_id":"1134188269246255105","type":"quote"},{"source":"1137737025296175104","target":"1137734392544137221","target_id":"1137734392544137221","type":"quote"},{"source":"1136951149892907011","target":"1136934146650103809","target_id":"1136934146650103809","type":"quote"},{"source":"1136677805977165824","target":"1136676447651868674","target_id":"1136676447651868674","type":"quote"},{"source":"1136671119874973701","target":"1136669047871987712","target_id":"1136669047871987712","type":"quote"}]}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: white;
font: 12px sans-serif;
}
.d3-tip strong {
color: #fafafa;
}
.d3-tip {
line-height: 1;
font-weight: normal;
padding: 8px;
background: rgba(0, 0, 0, 0.8);
color: #eee;
border-radius: 2px;
pointer-events: none !important;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
position: absolute;
pointer-events: none;
}
/* Northward tooltips */
.d3-tip.n:after {
content: "\25BC";
margin: -1px 0 0 0;
top: 100%;
left: 0;
text-align: center;
}
.links line {
stroke: #999;
stroke-opacity: 0.4;
}
.nodes circle {
stroke: #333;
stroke-width: 2px;
}
</style>
<svg></svg>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="d3-tip.js"></script>
<script src="d3-force-sampled.js"></script>
<script>
var width = 960;
var height = 600;
var nodeRadius = 6;
var nodeColor = d3.scaleSequential().interpolator(d3.interpolateMagma);
var linkWidth = d3.scaleLinear().range([1, 2 * nodeRadius]);
var svg = d3.select('svg')
.attr('width', width)
.attr('height', height)
.append('g')
.attr('transform', 'scale(0.5)');
var nodeTip = d3.tip()
.attr('class', 'd3-tip')
.offset([-10, 0])
.html(function(d) {
return '<strong>'
+ d.screen_name
+ '</strong> had <strong>'
+ d.tweet_count
+ (d.tweet_count === 1 ? '</strong> tweet' : '</strong> tweets');
});
var linkTip = d3.tip()
.attr('class', 'd3-tip')
.offset(function() {
return [this.getBBox().height / 4 - 10, 0];
})
.html(function(d) {
return '<p style="width:200px;"><strong>'
+ d.source.screen_name
+ '</strong> and <strong>'
+ d.target.screen_name
+ '</strong> retweeted, replied, or quoted each other <strong>'
+ d.interact_count
+ (d.interact_count === 1 ? '</strong> time' : '</strong> times')
+ '</p>';
});
svg.call(nodeTip);
svg.call(linkTip);
var linkForce = d3.forceLink()
.id(function(d) { return d.id; });
var forceSim = d3.forceSimulation()
.velocityDecay(0.2)
.force('link', linkForce)
.force('charge', d3.forceManyBodySampled())
.force('forceX', d3.forceX().strength(0.015))
.force('forceY', d3.forceY().strength(0.015 * width / height))
.force('center', d3.forceCenter(width, height));
d3.json('Eurovis2019_rt_network.json').then(function (graph) {
var drag = d3.drag()
.on('drag', dragging);
var nodes = graph.nodes.reduce(function (userMap, d) {
var user;
if (userMap.has(d.user.screen_name)) {
user = userMap.get(d.user.screen_name);
++user.tweet_count;
user.retweet_count += d.retweet_count;
user.favorite_count += d.favorite_count;
} else {
user = {
favorite_count: d.favorite_count,
retweet_count: d.retweet_count,
screen_name: d.user.screen_name,
tweet_count: 1
};
userMap.set(user.screen_name, user);
}
return userMap;
}, d3.map());
var tweetsToUsers = graph.nodes.reduce(function (tweetMap, d) {
tweetMap.set(d.id, d.user.screen_name);
return tweetMap;
}, d3.map());
var links = graph.links.reduce(function (interactMap, d) {
var link;
var sourceUser = nodes.get(tweetsToUsers.get(+d.source));
var targetUser = nodes.get(tweetsToUsers.get(+d.target));
if (sourceUser && targetUser && sourceUser !== targetUser) {
var link;
if (interactMap.has(sourceUser.screen_name + '-' + targetUser.screen_name))
++interactMap.get(sourceUser.screen_name + '-' + targetUser.screen_name).interact_count;
else if (interactMap.has(targetUser.screen_name + '-' + sourceUser.screen_name))
++interactMap.get(targetUser.screen_name + '-' + sourceUser.screen_name).interact_count;
else
interactMap.set(sourceUser.screen_name + '-' + targetUser.screen_name, {source: sourceUser, target: targetUser, interact_count: 1});
}
return interactMap;
}, d3.map());
nodes = nodes.values();
links = links.values();
// Make sure small nodes are drawn on top of larger nodes
nodes.sort(function (a, b) { return b.tweet_count - a.tweet_count; });
nodeColor.domain([d3.max(nodes, function (d) { return d.tweet_count; }), 0]);
linkWidth.domain([0, d3.max(links, function (d) { return d.interact_count; })]);
var link = svg.append('g')
.attr('class', 'links')
.selectAll('line')
.data(links)
.enter().append('line')
.attr('stroke-width', function (d) { return linkWidth(d.interact_count); })
.on('mouseover', linkTip.show)
.on('mouseout', linkTip.hide);
var node = svg.append('g')
.attr('class', 'nodes')
.selectAll('circle')
.data(nodes)
.enter().append('circle')
.attr('r', nodeRadius)
.attr('fill', function (d) { return nodeColor(d.tweet_count); })
.call(drag)
.on('mouseover', nodeTip.show)
.on('mouseout', nodeTip.hide);
forceSim.nodes(nodes)
.on('tick', draw)
.stop();
forceSim.force('link').links(links);
for (var t = 100; t > 0; --t) forceSim.tick();
forceSim.velocityDecay(0.4)
.force('charge', d3.forceManyBody());
for (var t = 10; t > 0; --t) forceSim.tick();
draw();
function draw () {
link
.attr('x1', function (d) { return d.source.x; })
.attr('x2', function (d) { return d.target.x; })
.attr('y1', function (d) { return d.source.y; })
.attr('y2', function (d) { return d.target.y; });
node
.attr('cx', function (d) { return d.x; })
.attr('cy', function (d) { return d.y; });
}
function dragging (d) {
d.x = d3.event.x;
d.y = d3.event.y;
draw();
nodeTip.hide();
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment