Skip to content

Instantly share code, notes, and snippets.

@tmthyjames
Last active July 20, 2016 02:33
Show Gist options
  • Save tmthyjames/56b764713eeeb914bd1b54c49f6f1825 to your computer and use it in GitHub Desktop.
Save tmthyjames/56b764713eeeb914bd1b54c49f6f1825 to your computer and use it in GitHub Desktop.
Leaflet rendering and calculation of perfect geographical circles in python jupyter kernel
var radiusFromLatLon = function(latIn, lonIn, radius){
var locs = [];
var lat1 = parseFloat(latIn) * Math.PI/180.0;
var lon1 = parseFloat(lonIn) * Math.PI/180.0;
var d = radius/3956.0;
var range360 = Array.apply(null, Array(360)).map(function (_, i) {return i;});
for (var i in range360){
var lon, loc;
var tc = (range360[i] / 90.0) * Math.PI/2.0;
var lat = Math.asin(Math.sin(lat1)*Math.cos(d)+Math.cos(lat1)*Math.sin(d)*Math.cos(tc));
lat = (180.0 * lat) / Math.PI;
if (Math.cos(lat1) == 0){
lon = lonIn;
} else {
lon = ((lon1 - Math.asin(Math.sin(tc) * Math.sin(d)/Math.cos(lat1)) + Math.PI) % (2 * Math.PI)) - Math.PI;
}
lon = (180.0 * lon) / Math.PI;
loc = [lat, lon];
locs.push(loc);
}
return locs;
}
var features = geojson.nodes.features;
var featureKeys = Object.keys(features);
var geocontainer = {};
for (var i in featureKeys){
var npi = featureKeys[i];
var lat = features[npi].geometry.coordinates[0];
var lon = features[npi].geometry.coordinates[1];
var key = lat + '|' + lon;
if (!(key in geocontainer)){
geocontainer[key] = {
npis: [npi],
coords: {
lat: lat,
lon: lon
}
};
} else {
geocontainer[key].npis.push(npi);
}
}
var radius = 2;
var geocontainerKeys = Object.keys(geocontainer);
for (var i in geocontainerKeys){
var latLonKey = geocontainer[geocontainerKeys[i]]
var npilist = latLonKey.npis;
if (npilist.length > 1){
var coords = latLonKey.coords;
var lat = coords.lat;
var lon = coords.lon;
var circlePoints = radiusFromLatLon(lat, lon, radius);
countby = ((360/npilist.length) < 2) ? 2 : Math.round(360/npilist.length);
// console.log(countby, "count");
// var newCoords = [];
// for (var k=0;k<circlePoints.length;k+=countby){
// newCoords.push(circlePoints[k]);
// };
// console.log(newCoords, npi);
var j = 0;
for (var index in npilist){
// console.log(index, "index", j, circlePoints[j], circlePoints);
// break
var npi = npilist[index];
var entitytype = features[npi].type;
if (entitytype == 'source'){
features[npi].geometry.coordinates = circlePoints[j];
}
j+=countby
}
}
}
geojson = {"source": {"lat": "36.1794001929745000", "lng": "-86.606352273440393", "npi": "1982650024"}, "nodes": {"type": "FeatureCollection", "features": {"1780630608": {"geometry": {"type": "point", "coordinates": ["38.0319434979552000", "-78.498723791144670"]}, "type": "comp", "npi": "1780630608", "name": "UVA HEALTH SCIENCES CENTER", "classification": "General Acute Care Hospital"}, "1164794046": {"npi": "1164794046", "name": "LINDSEY CULBRETH", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["35.9464359048682000", "-85.025124855985837"]}, "charges": 285646, "payments": 28416, "type": "source", "leakage": 1}, "1720086317": {"npi": "1720086317", "name": "SUE LEE", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 379391, "payments": 75439, "type": "source", "leakage": 1}, "1548281124": {"npi": "1548281124", "name": "ZACHARY COLLER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1748090000000000", "-86.486170000000016"]}, "charges": 100180, "payments": 34685, "type": "source", "leakage": 0}, "1730123175": {"geometry": {"type": "point", "coordinates": ["34.8389837526623000", "-82.420365007854343"]}, "type": "comp", "npi": "1730123175", "name": "ST. FRANCIS HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1699779017": {"geometry": {"type": "point", "coordinates": ["38.0383290000000000", "-86.699088999999901"]}, "type": "comp", "npi": "1699779017", "name": "PERRY COUNTY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1033102942": {"geometry": {"type": "point", "coordinates": ["37.2249210000001000", "-79.911814999999933"]}, "type": "comp", "npi": "1033102942", "name": "CARILION ROANOKE MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1730566027": {"geometry": {"type": "point", "coordinates": ["33.0621461554471000", "-89.603626158847206"]}, "type": "comp", "npi": "1730566027", "name": "BAPTIST MEDICAL CENTER - ATTALA", "classification": "General Acute Care Hospital"}, "1821060526": {"npi": "1821060526", "name": "RONALD WATERS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 1040411, "payments": 110851, "type": "source", "leakage": 0}, "1447457775": {"geometry": {"type": "point", "coordinates": ["38.0009968246787000", "-84.439590681040258"]}, "type": "comp", "npi": "1447457775", "name": "SAINT JOSEPH EAST", "classification": "General Acute Care Hospital"}, "1417938846": {"geometry": {"type": "point", "coordinates": ["36.5192528165572000", "-86.025163016528921"]}, "type": "comp", "npi": "1417938846", "name": "MACON COUNTY GENERAL HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1558672543": {"geometry": {"type": "point", "coordinates": ["36.3879225882071000", "-86.167542711434407"]}, "type": "comp", "npi": "1558672543", "name": "TROUSDALE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1013969179": {"geometry": {"type": "point", "coordinates": ["35.4985720271410000", "-86.079525552284196"]}, "type": "comp", "npi": "1013969179", "name": "D/B/A UNITED REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1205861929": {"npi": "1205861929", "name": "LAURA CONREY", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 68517, "payments": 21317, "type": "source", "leakage": 0}, "1902031610": {"npi": "1902031610", "name": "MARSHALL HALL", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "charges": 610084, "payments": 70212, "type": "source", "leakage": 0}, "1427010297": {"npi": "1427010297", "name": "ROBERT ROTH", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 425668, "payments": 52414, "type": "source", "leakage": 0}, "1760402424": {"geometry": {"type": "point", "coordinates": ["34.5118357229124000", "-84.922903101229664"]}, "type": "comp", "npi": "1760402424", "name": "GORDON HOSPITAL", "classification": "General Acute Care Hospital"}, "1497770424": {"geometry": {"type": "point", "coordinates": ["35.0848420660687000", "-92.456839416111947"]}, "type": "comp", "npi": "1497770424", "name": "CONWAY REGIONAL MEDICAL CENTER INC", "classification": "General Acute Care Hospital"}, "1538114434": {"geometry": {"type": "point", "coordinates": ["36.3191674705569000", "-86.624141800688548"]}, "type": "comp", "npi": "1538114434", "name": "TRISTAR HENDERSONVILLE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1588788301": {"npi": "1588788301", "name": "SETH BANKS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1624570679561000", "-86.515096421477210"]}, "charges": 98178, "payments": 47687, "type": "source", "leakage": 0}, "1710919295": {"npi": "1710919295", "name": "NOEL LIM", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 165765, "payments": 88493, "type": "source", "leakage": 0}, "1396707923": {"npi": "1396707923", "name": "ALAN HORN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 355002, "payments": 81186, "type": "source", "leakage": 0}, "1992813240": {"geometry": {"type": "point", "coordinates": ["36.5581218136463000", "-82.512822336359534"]}, "type": "comp", "npi": "1992813240", "name": "INDIAN PATH MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1346267879": {"geometry": {"type": "point", "coordinates": ["43.6619859440638000", "-70.252842107717811"]}, "type": "comp", "npi": "1346267879", "name": "MMC FAMILY PRACTICE", "classification": "General Acute Care Hospital"}, "1194967380": {"npi": "1194967380", "name": "LISA THORNE", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.3061717095588000", "-86.610012136189454"]}, "charges": 79370, "payments": 42046, "type": "source", "leakage": 0}, "1376574277": {"geometry": {"type": "point", "coordinates": ["34.2000490000001000", "-84.094737999999893"]}, "type": "comp", "npi": "1376574277", "name": "NORTHSIDE HOSPITAL FORSYTH", "classification": "General Acute Care Hospital"}, "1710926357": {"npi": "1710926357", "name": "DAVID LIEN", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 384334, "payments": 47469, "type": "source", "leakage": 1}, "1902800535": {"geometry": {"type": "point", "coordinates": ["41.3287922860295000", "-89.125436592916174"]}, "type": "comp", "npi": "1902800535", "name": "ILLINOIS VALLEY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1639284409": {"geometry": {"type": "point", "coordinates": ["33.6672690000001000", "-88.755288000000007"]}, "type": "comp", "npi": "1639284409", "name": "CLAY COUNTY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1699714717": {"geometry": {"type": "point", "coordinates": ["33.5181400673534000", "-90.198228488719010"]}, "type": "comp", "npi": "1699714717", "name": "GREENWOOD LEFLORE HOSPITAL", "classification": "General Acute Care Hospital"}, "1801831102": {"geometry": {"type": "point", "coordinates": ["35.1179779999999000", "-84.133505000000014"]}, "type": "comp", "npi": "1801831102", "name": "MURPHY MEDICAL CENTER INC", "classification": "General Acute Care Hospital"}, "1669405130": {"npi": "1669405130", "name": "VINCENT NOVAK", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 212609, "payments": 49623, "type": "source", "leakage": 0}, "1366485997": {"npi": "1366485997", "name": "STEVEN TURNER", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.0774819356395000", "-86.724784170550166"]}, "charges": 422694, "payments": 52401, "type": "source", "leakage": 0}, "1295733772": {"npi": "1295733772", "name": "RANDOLPH EVANS", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.2150103056706000", "-86.326638609037417"]}, "charges": 1326858, "payments": 257041, "type": "source", "leakage": 0}, "1679534309": {"npi": "1679534309", "name": "MACK JENKINS", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.5395930000001000", "-86.856823999999961"]}, "charges": 349646, "payments": 48973, "type": "source", "leakage": 0}, "1063467876": {"npi": "1063467876", "name": "JAMES ELROD", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 189841, "payments": 80984, "type": "source", "leakage": 0}, "1285611715": {"npi": "1285611715", "name": "MARGARET WRIGHT", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 165477, "payments": 40655, "type": "source", "leakage": 0}, "1598718330": {"npi": "1598718330", "name": "WILLARD WEST", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2196552526466000", "-86.332133926657420"]}, "charges": 946981, "payments": 395069, "type": "source", "leakage": 0}, "1619965431": {"npi": "1619965431", "name": "LEE SIMMONS", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 87481, "payments": 10244, "type": "source", "leakage": 1}, "1043270564": {"geometry": {"type": "point", "coordinates": ["32.8329721888237000", "-83.636177673593593"]}, "type": "comp", "npi": "1043270564", "name": "THE MEDICAL CENTER OF CENTRAL GEORGIA INC", "classification": "General Acute Care Hospital"}, "1396882205": {"geometry": {"type": "point", "coordinates": ["36.1427426552674000", "-86.801259966378836"]}, "type": "comp", "npi": "1396882205", "name": "VANDERBILT UNIVERSITY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1568460640": {"npi": "1568460640", "name": "JONATHAN EVANS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 260581, "payments": 172020, "type": "source", "leakage": 0}, "1093705428": {"geometry": {"type": "point", "coordinates": ["35.6393819395690000", "-88.829364072710774"]}, "type": "comp", "npi": "1093705428", "name": "JACKSON MADISON COUNTY GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1346292257": {"npi": "1346292257", "name": "MICHAEL MERTENS", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1624570679561000", "-86.515096421477210"]}, "charges": 187945, "payments": 91171, "type": "source", "leakage": 1}, "1790762219": {"npi": "1790762219", "name": "ELLIS GOODIN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 110036, "payments": 27187, "type": "source", "leakage": 0}, "1497750244": {"geometry": {"type": "point", "coordinates": ["36.2990616999354000", "-88.310758753013886"]}, "type": "comp", "npi": "1497750244", "name": "HENRY COUNTY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1447299698": {"npi": "1447299698", "name": "JEFFREY HUGGETT", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1456777, "payments": 190189, "type": "source", "leakage": 0}, "1427055821": {"geometry": {"type": "point", "coordinates": ["34.3101886032801000", "-83.801081107297080"]}, "type": "comp", "npi": "1427055821", "name": "NORTHEAST GEORGIA MEDICAL CENTER, INC.", "classification": "General Acute Care Hospital"}, "1972670552": {"npi": "1972670552", "name": "SNIGDHA PRIYADARSHI", "classification": "Hospitalist", "geometry": {"type": "point", "coordinates": ["35.9110210987045000", "-86.383700501850115"]}, "charges": 241997, "payments": 88102, "type": "source", "leakage": 0}, "1902903651": {"npi": "1902903651", "name": "SIKANDER ANSARI", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 1171312, "payments": 303391, "type": "source", "leakage": 0}, "1407148927": {"npi": "1407148927", "name": "SARAH WYATT", "classification": "Speech", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 23046, "payments": 6076, "type": "source", "leakage": 0}, "1265487193": {"geometry": {"type": "point", "coordinates": ["36.2766750726575000", "-87.065853759981707"]}, "type": "comp", "npi": "1265487193", "name": "TRISTAR ASHLAND CITY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1639169386": {"npi": "1639169386", "name": "RYAN MEYERS", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 222765, "payments": 80720, "type": "source", "leakage": 1}, "1295708576": {"npi": "1295708576", "name": "ANDREW BARGER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 626199, "payments": 105095, "type": "source", "leakage": 0}, "1679632137": {"geometry": {"type": "point", "coordinates": ["34.0264030000001000", "-84.146855999999957"]}, "type": "comp", "npi": "1679632137", "name": "EMORY JOHNS CREEK HOSPITAL", "classification": "General Acute Care Hospital"}, "1356342018": {"npi": "1356342018", "name": "SUSAN LOUDEN", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 49259, "payments": 5787, "type": "source", "leakage": 1}, "1659392819": {"geometry": {"type": "point", "coordinates": ["43.4784443260527000", "-70.492320515307398"]}, "type": "comp", "npi": "1659392819", "name": "SMHC PHYSICIAN SERVICES", "classification": "General Acute Care Hospital"}, "1699705855": {"npi": "1699705855", "name": "BRENDA MCFARLIN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2197059459290000", "-86.331537123677634"]}, "charges": 112867, "payments": 50871, "type": "source", "leakage": 0}, "1346251543": {"geometry": {"type": "point", "coordinates": ["38.6576175774047000", "-90.506409304516907"]}, "type": "comp", "npi": "1346251543", "name": "ST. LUKE'S HOSPITAL", "classification": "General Acute Care Hospital"}, "1932128782": {"npi": "1932128782", "name": "ROBERT PICKETT", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1528848957800000", "-86.804621702545390"]}, "charges": 550483, "payments": 167750, "type": "source", "leakage": 0}, "1467737999": {"npi": "1467737999", "name": "JANET DAILY", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 52260, "payments": 20354, "type": "source", "leakage": 0}, "1083609481": {"npi": "1083609481", "name": "HARRY BONNAIRE", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2492225498397000", "-86.734853858325110"]}, "charges": 163986, "payments": 73572, "type": "source", "leakage": 0}, "1487663506": {"geometry": {"type": "point", "coordinates": ["38.6340876783538000", "-90.443590877701752"]}, "type": "comp", "npi": "1487663506", "name": "MISSOURI BAPTIST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1538356571": {"npi": "1538356571", "name": "SAAD KHAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 191471, "payments": 75929, "type": "source", "leakage": 0}, "1336189521": {"npi": "1336189521", "name": "JEFFREY WILLIAMS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 580321, "payments": 88748, "type": "source", "leakage": 0}, "1659387975": {"geometry": {"type": "point", "coordinates": ["40.5578018000418000", "-74.348828913114673"]}, "type": "comp", "npi": "1659387975", "name": "JFK MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1922079771": {"npi": "1922079771", "name": "ANGELA BYRD-GLOSTER", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["39.0093640000001000", "-77.097547000000020"]}, "charges": 1324621, "payments": 124815, "type": "source", "leakage": 0}, "1851345755": {"npi": "1851345755", "name": "BRIAN SCOTT", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 237036, "payments": 97484, "type": "source", "leakage": 0}, "1669567319": {"geometry": {"type": "point", "coordinates": ["35.4403344489223000", "-84.607648018488959"]}, "type": "comp", "npi": "1669567319", "name": "STARR REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1811133903": {"npi": "1811133903", "name": "STUART LOWERY", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["42.4190018915665000", "-82.915018418560820"]}, "charges": 397528, "payments": 50487, "type": "source", "leakage": 0}, "1912982513": {"npi": "1912982513", "name": "MARK FREEMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 457653, "payments": 108742, "type": "source", "leakage": 0}, "1891701017": {"npi": "1891701017", "name": "MARISA HUGHEY", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 32950, "payments": 11754, "type": "source", "leakage": 0}, "1679664395": {"geometry": {"type": "point", "coordinates": ["33.9087654137018000", "-84.351810159168167"]}, "type": "comp", "npi": "1679664395", "name": "SAINT JOSEPHS HOSPITAL OF ATLANTA INC", "classification": "General Acute Care Hospital"}, "1669564662": {"geometry": {"type": "point", "coordinates": ["39.5112950000000000", "-88.385935000000018"]}, "type": "comp", "npi": "1669564662", "name": "SARAH BUSH LINCOLN HEALTH CENTER", "classification": "General Acute Care Hospital"}, "1932190360": {"npi": "1932190360", "name": "TOBY SMITH", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 278436, "payments": 187822, "type": "source", "leakage": 0}, "1356320469": {"geometry": {"type": "point", "coordinates": ["40.7626603305150000", "-86.361312419523955"]}, "type": "comp", "npi": "1356320469", "name": "MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1558642934": {"npi": "1558642934", "name": "GEORGE MARCUS", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.0813286891245000", "-86.655333749749801"]}, "charges": 197233, "payments": 14567, "type": "source", "leakage": 0}, "1972527265": {"geometry": {"type": "point", "coordinates": ["33.1646703355092000", "-86.255035380453791"]}, "type": "comp", "npi": "1972527265", "name": "COOSA VALLEY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1992790174": {"npi": "1992790174", "name": "JOHN INTERLANDI", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 200940, "payments": 80237, "type": "source", "leakage": 0}, "1841498821": {"npi": "1841498821", "name": "JEFFREY HO", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["33.0194076238569000", "-96.765412483308580"]}, "charges": 402417, "payments": 68697, "type": "source", "leakage": 0}, "1982650024": {"geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "type": "target", "npi": "1982650024", "name": "TRISTAR SUMMIT MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1053425181": {"npi": "1053425181", "name": "BRIAN HUGHEY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2116150759374000", "-86.307733353602984"]}, "charges": 145998, "payments": 62947, "type": "source", "leakage": 0}, "1871505750": {"npi": "1871505750", "name": "WARREN DOWNS", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["41.1827987613159000", "-111.949106353403380"]}, "charges": 423198, "payments": 52118, "type": "source", "leakage": 0}, "1689620395": {"npi": "1689620395", "name": "JEANNE SORIA", "classification": "Speech", "geometry": {"type": "point", "coordinates": ["39.6502664231487000", "-86.117415839700200"]}, "charges": 26768, "payments": 7112, "type": "source", "leakage": 1}, "1568481984": {"geometry": {"type": "point", "coordinates": ["38.5115259980948000", "-90.379525948361120"]}, "type": "comp", "npi": "1568481984", "name": "ST. ANTHONY'S MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1629221692": {"npi": "1629221692", "name": "TRACY MOSS", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 381213, "payments": 133460, "type": "source", "leakage": 0}, "1649425885": {"npi": "1649425885", "name": "ROBERT STEVES", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2172479202002000", "-86.335270812457722"]}, "charges": 208518, "payments": 69608, "type": "source", "leakage": 0}, "1235387044": {"geometry": {"type": "point", "coordinates": ["36.0780056779426000", "-87.794450041884261"]}, "type": "comp", "npi": "1235387044", "name": "THREE RIVERS HOSPITAL", "classification": "General Acute Care Hospital"}, "1124136593": {"geometry": {"type": "point", "coordinates": ["30.3733219665503000", "-88.534338941164748"]}, "type": "comp", "npi": "1124136593", "name": "SINGING RIVER HEALTH SYSTEM", "classification": "General Acute Care Hospital"}, "1114981768": {"geometry": {"type": "point", "coordinates": ["36.4148073448991000", "-89.044863953471719"]}, "type": "comp", "npi": "1114981768", "name": "BAPTIST MEMORIAL HOSPITAL- UNION CITY INC", "classification": "General Acute Care Hospital"}, "1043203516": {"npi": "1043203516", "name": "THOMAS STRUBLE", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1074545110229000", "-86.816789239722539"]}, "charges": 82976, "payments": 23291, "type": "source", "leakage": 1}, "1770637266": {"npi": "1770637266", "name": "ALEX CHANG", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 522693, "payments": 130258, "type": "source", "leakage": 0}, "1972543064": {"npi": "1972543064", "name": "KARL KELLEY", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["35.1764349617608000", "-86.088519016494502"]}, "charges": 686898, "payments": 62247, "type": "source", "leakage": 0}, "1669567897": {"geometry": {"type": "point", "coordinates": ["36.5395930000001000", "-86.856823999999961"]}, "type": "comp", "npi": "1669567897", "name": "NORTHCREST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1598875460": {"geometry": {"type": "point", "coordinates": ["34.2427564880965000", "-88.717588051698755"]}, "type": "comp", "npi": "1598875460", "name": "NORTH MS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1396792032": {"geometry": {"type": "point", "coordinates": ["32.3286765077263000", "-90.106632668661362"]}, "type": "comp", "npi": "1396792032", "name": "MERIT HEALTH RIVER OAKS", "classification": "General Acute Care Hospital"}, "1568513075": {"npi": "1568513075", "name": "RUSSELL GIBSON", "classification": "Pediatrics", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 79810, "payments": 29247, "type": "source", "leakage": 0}, "1023094851": {"npi": "1023094851", "name": "ROBERT STALLWORTH", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 274284, "payments": 69217, "type": "source", "leakage": 0}, "1306889597": {"geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "type": "comp", "npi": "1306889597", "name": "UNIVERSITY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1467496802": {"geometry": {"type": "point", "coordinates": ["34.8511375723003000", "-82.320854684013625"]}, "type": "comp", "npi": "1467496802", "name": "ST. FRANCIS EASTSIDE", "classification": "General Acute Care Hospital"}, "1003860982": {"npi": "1003860982", "name": "CHRISTI WITHERSPOON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 124078, "payments": 54366, "type": "source", "leakage": 1}, "1174706576": {"geometry": {"type": "point", "coordinates": ["41.0393854125555000", "-85.243399231216273"]}, "type": "comp", "npi": "1174706576", "name": "THE ORTHOPAEDIC HOSPITAL OF LUTHERAN HEALTH NETWORK", "classification": "General Acute Care Hospital"}, "1265490833": {"npi": "1265490833", "name": "SARA MCCLELLAN", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 41957, "payments": 16756, "type": "source", "leakage": 1}, "1952636797": {"npi": "1952636797", "name": "CORTNEY DUNN", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 53834, "payments": 6367, "type": "source", "leakage": 1}, "1700970928": {"npi": "1700970928", "name": "MICHAEL ANNO", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["37.7573230000000000", "-87.052912999999990"]}, "charges": 99884, "payments": 9327, "type": "source", "leakage": 0}, "1336188457": {"npi": "1336188457", "name": "MICHAEL SPELLMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1816768, "payments": 262889, "type": "source", "leakage": 0}, "1740252642": {"npi": "1740252642", "name": "GERARD SHU TANGYIE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1559358659535000", "-86.798306008034771"]}, "charges": 929880, "payments": 262897, "type": "source", "leakage": 0}, "1982668976": {"npi": "1982668976", "name": "CHRISTIAN RHEA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1528848957800000", "-86.804621702545390"]}, "charges": 1018799, "payments": 530261, "type": "source", "leakage": 0}, "1609007525": {"geometry": {"type": "point", "coordinates": ["41.1022220000000000", "-95.946458000000007"]}, "type": "comp", "npi": "1609007525", "name": "BELLEVUE MEDICAL CENTER - NEBRASKA MEDICINE", "classification": "General Acute Care Hospital"}, "1356436174": {"npi": "1356436174", "name": "MEREDITH EZELL", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1852782226344000", "-86.612826594917877"]}, "charges": 495690, "payments": 191944, "type": "source", "leakage": 0}, "1063475655": {"npi": "1063475655", "name": "JEANNIE GIESE", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["35.9092765060736000", "-86.839465750842024"]}, "charges": 89633, "payments": 28641, "type": "source", "leakage": 1}, "1184612921": {"npi": "1184612921", "name": "DONALD VOLLMER", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.3061717095588000", "-86.610012136189454"]}, "charges": 758899, "payments": 438553, "type": "source", "leakage": 0}, "1982826004": {"npi": "1982826004", "name": "DARA BOTTS", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 78229, "payments": 33054, "type": "source", "leakage": 1}, "1629249891": {"npi": "1629249891", "name": "JOSE PRATTS-EMANUELLI", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 243060, "payments": 40536, "type": "source", "leakage": 0}, "1811971534": {"npi": "1811971534", "name": "PATRICK MOULTON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 197592, "payments": 46538, "type": "source", "leakage": 0}, "1396751749": {"npi": "1396751749", "name": "ROBERT JANTZ", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2125750700916000", "-86.306897403960093"]}, "charges": 269485, "payments": 92683, "type": "source", "leakage": 0}, "1699756445": {"geometry": {"type": "point", "coordinates": ["34.9356303100075000", "-88.558674856831033"]}, "type": "comp", "npi": "1699756445", "name": "MAGNOLIA REGIONAL HEALTH CENTER", "classification": "General Acute Care Hospital"}, "1689653487": {"geometry": {"type": "point", "coordinates": ["44.1018161955647000", "-70.213617620649600"]}, "type": "comp", "npi": "1689653487", "name": "CENTRAL MAINE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1386697126": {"npi": "1386697126", "name": "MARION MCFARLAND", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "charges": 634326, "payments": 55518, "type": "source", "leakage": 0}, "1679504765": {"npi": "1679504765", "name": "LEZLIE MILEY", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["35.9040073823588000", "-86.840621236712622"]}, "charges": 183577, "payments": 71313, "type": "source", "leakage": 0}, "1215158175": {"npi": "1215158175", "name": "CHRISTOPHER COOK", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 587660, "payments": 107837, "type": "source", "leakage": 1}, "1720077761": {"npi": "1720077761", "name": "JUSTIN MORGAN", "classification": "Otolaryngology", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 169094, "payments": 61223, "type": "source", "leakage": 0}, "1396721106": {"npi": "1396721106", "name": "BRIAN BERGER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 549955, "payments": 125796, "type": "source", "leakage": 0}, "1740377845": {"npi": "1740377845", "name": "DAVID TABER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 303102, "payments": 48235, "type": "source", "leakage": 0}, "1689645004": {"geometry": {"type": "point", "coordinates": ["36.2156841313681000", "-83.304880403779251"]}, "type": "comp", "npi": "1689645004", "name": "LAKEWAY REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1306898960": {"geometry": {"type": "point", "coordinates": ["39.9119403616444000", "-86.198348343035164"]}, "type": "comp", "npi": "1306898960", "name": "ST. VINCENT HOSPITAL AND HEALTH CARE CENTER, INC.", "classification": "General Acute Care Hospital"}, "1275515223": {"npi": "1275515223", "name": "TRACY MERRELL", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["35.9238849999999000", "-86.439459999999940"]}, "charges": 268782, "payments": 119384, "type": "source", "leakage": 0}, "1891799227": {"geometry": {"type": "point", "coordinates": ["38.2482999180497000", "-85.751256361677449"]}, "type": "comp", "npi": "1891799227", "name": "NORTON HOSPITAL", "classification": "General Acute Care Hospital"}, "1114150992": {"geometry": {"type": "point", "coordinates": ["34.3015750000000000", "-89.950526000000025"]}, "type": "comp", "npi": "1114150992", "name": "MERIT HEALTH BATESVILLE", "classification": "General Acute Care Hospital"}, "1073601043": {"geometry": {"type": "point", "coordinates": ["34.4574271582457000", "-88.143483940308840"]}, "type": "comp", "npi": "1073601043", "name": "RED BAY HOSPITAL", "classification": "General Acute Care Hospital"}, "1972557064": {"geometry": {"type": "point", "coordinates": ["30.3960933705370000", "-88.890200929712165"]}, "type": "comp", "npi": "1972557064", "name": "MERIT HEALTH BILOXI", "classification": "General Acute Care Hospital"}, "1013991850": {"npi": "1013991850", "name": "CHRISTOPHER NG", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 293824, "payments": 71519, "type": "source", "leakage": 0}, "1467408781": {"geometry": {"type": "point", "coordinates": ["35.1764349617608000", "-86.088519016494502"]}, "type": "comp", "npi": "1467408781", "name": "SOUTHERN TENNESSEE REGIONAL HEALTH SYSTEM WINCHESTER", "classification": "General Acute Care Hospital"}, "1417903378": {"npi": "1417903378", "name": "ROBERT LAGRONE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1570610774875000", "-86.803872297498387"]}, "charges": 3214951, "payments": 1891608, "type": "source", "leakage": 0}, "1639116379": {"npi": "1639116379", "name": "LIFFORD LANCASTER", "classification": "Thoracic Surgery (Cardiothoracic Vascular Surgery)", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 548063, "payments": 83653, "type": "source", "leakage": 0}, "1043292899": {"geometry": {"type": "point", "coordinates": ["35.9922250621947000", "-83.928157908473310"]}, "type": "comp", "npi": "1043292899", "name": "TENNOVA HEALTHCARE", "classification": "General Acute Care Hospital"}, "1710181201": {"npi": "1710181201", "name": "CASEY SHABA", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 1020908, "payments": 282051, "type": "source", "leakage": 0}, "1245209790": {"geometry": {"type": "point", "coordinates": ["37.3298204733243000", "-88.092338994426271"]}, "type": "comp", "npi": "1245209790", "name": "CRITTENDEN HEALTH SYSTEM", "classification": "General Acute Care Hospital"}, "1750320966": {"npi": "1750320966", "name": "MICHAEL COUDEN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 479374, "payments": 74143, "type": "source", "leakage": 0}, "1447282611": {"npi": "1447282611", "name": "JIMMY CHEEKS", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1830975037193000", "-86.511582429387516"]}, "charges": 62688, "payments": 25610, "type": "source", "leakage": 1}, "1972506061": {"npi": "1972506061", "name": "KEVIN HAMILTON", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 5224, "payments": 3013, "type": "source", "leakage": 1}, "1831116441": {"geometry": {"type": "point", "coordinates": ["42.2857838654051000", "-85.581234915512525"]}, "type": "comp", "npi": "1831116441", "name": "BRONSON METHODIST HOSPITAL", "classification": "General Acute Care Hospital"}, "1568532513": {"geometry": {"type": "point", "coordinates": ["34.8517101492282000", "-82.325089108589708"]}, "type": "comp", "npi": "1568532513", "name": "GHS PATEWOOD MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1659473916": {"geometry": {"type": "point", "coordinates": ["34.6630616188746000", "-86.045505140730825"]}, "type": "comp", "npi": "1659473916", "name": "HIGHLANDS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1992701429": {"geometry": {"type": "point", "coordinates": ["37.1412490000000000", "-84.118630999999993"]}, "type": "comp", "npi": "1992701429", "name": "SAINT JOSEPH LONDON", "classification": "General Acute Care Hospital"}, "1164590386": {"geometry": {"type": "point", "coordinates": ["35.9238849999999000", "-86.439459999999940"]}, "type": "comp", "npi": "1164590386", "name": "SAINT THOMAS RUTHERFORD HOSPITAL", "classification": "General Acute Care Hospital"}, "1578620449": {"geometry": {"type": "point", "coordinates": ["30.3162830370468000", "-81.664351029199608"]}, "type": "comp", "npi": "1578620449", "name": "BAPTIST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1609807122": {"geometry": {"type": "point", "coordinates": ["34.9678223929911000", "-81.941100658698304"]}, "type": "comp", "npi": "1609807122", "name": "SPARTANBURG MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1720286487": {"npi": "1720286487", "name": "LEE ROGERS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 209905, "payments": 48245, "type": "source", "leakage": 0}, "1558355941": {"npi": "1558355941", "name": "JOJU JOSEPH", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.3893519245265000", "-86.442191867100973"]}, "charges": 808004, "payments": 264137, "type": "source", "leakage": 0}, "1144298514": {"geometry": {"type": "point", "coordinates": ["41.1269140000001000", "-84.561963999999932"]}, "type": "comp", "npi": "1144298514", "name": "PAULDING COUNTY HOSPITAL", "classification": "General Acute Care Hospital"}, "1922319037": {"geometry": {"type": "point", "coordinates": ["36.2621774831116000", "-85.950413977316714"]}, "type": "comp", "npi": "1922319037", "name": "RIVERVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1841358363": {"npi": "1841358363", "name": "JOHN LINK", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1795266226286000", "-86.638535453469331"]}, "charges": 15334, "payments": 5746, "type": "source", "leakage": 1}, "1770678617": {"geometry": {"type": "point", "coordinates": ["35.6148540000000000", "-85.229422999999940"]}, "type": "comp", "npi": "1770678617", "name": "ERLANGER BLEDSOE", "classification": "General Acute Care Hospital"}, "1700983236": {"geometry": {"type": "point", "coordinates": ["35.9591463791774000", "-85.828627793772995"]}, "type": "comp", "npi": "1700983236", "name": "DEKALB COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1326057167": {"npi": "1326057167", "name": "GARY GALLANT", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2196733500916000", "-86.331985547787426"]}, "charges": 266434, "payments": 87917, "type": "source", "leakage": 0}, "1427082957": {"geometry": {"type": "point", "coordinates": ["37.9624088198779000", "-87.505661371310765"]}, "type": "comp", "npi": "1427082957", "name": "ST. MARY'S MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1306844071": {"npi": "1306844071", "name": "DAVID SMITH", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 186506, "payments": 20134, "type": "source", "leakage": 1}, "1275571150": {"npi": "1275571150", "name": "MARINA LU", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.0774819356395000", "-86.724784170550166"]}, "charges": 126364, "payments": 15608, "type": "source", "leakage": 1}, "1902845118": {"npi": "1902845118", "name": "MICHAEL CIAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1011527, "payments": 143367, "type": "source", "leakage": 0}, "1639124134": {"geometry": {"type": "point", "coordinates": ["39.9658070000000000", "-86.170956999999987"]}, "type": "comp", "npi": "1639124134", "name": "ST. VINCENT CARMEL HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1124014501": {"npi": "1124014501", "name": "ROSE MAYS", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 53340, "payments": 6323, "type": "source", "leakage": 1}, "1518949809": {"npi": "1518949809", "name": "TIPTON SNEED", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 55927, "payments": 6209, "type": "source", "leakage": 0}, "1972547891": {"npi": "1972547891", "name": "THOMAS WESTERMEIER", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 1008072, "payments": 108884, "type": "source", "leakage": 0}, "1881642809": {"geometry": {"type": "point", "coordinates": ["35.6959809906222000", "-85.745618338218733"]}, "type": "comp", "npi": "1881642809", "name": "RIVER PARK HOSPITAL", "classification": "General Acute Care Hospital"}, "1538100029": {"geometry": {"type": "point", "coordinates": ["37.7912640000001000", "-79.878716999999995"]}, "type": "comp", "npi": "1538100029", "name": "LEWISGALE HOSPITAL ALLEGHANY", "classification": "General Acute Care Hospital"}, "1962461681": {"geometry": {"type": "point", "coordinates": ["33.8094657860182000", "-84.393103800334927"]}, "type": "comp", "npi": "1962461681", "name": "PIEDMONT HOSPITAL", "classification": "General Acute Care Hospital"}, "1275941528": {"geometry": {"type": "point", "coordinates": ["34.6952251643862000", "-82.985451785868747"]}, "type": "comp", "npi": "1275941528", "name": "GHS OCONEE MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1386683118": {"npi": "1386683118", "name": "STEVEN BLOUNT", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1200848, "payments": 151214, "type": "source", "leakage": 0}, "1306909734": {"geometry": {"type": "point", "coordinates": ["32.3648226695635000", "-89.471054542237979"]}, "type": "comp", "npi": "1306909734", "name": "S E LACKEY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1497718712": {"npi": "1497718712", "name": "JEFF GREENLEE", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 407928, "payments": 50204, "type": "source", "leakage": 0}, "1265464499": {"npi": "1265464499", "name": "LAURA BLAKELY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 624962, "payments": 271379, "type": "source", "leakage": 0}, "1619945508": {"npi": "1619945508", "name": "JOSEPH LINDAHL", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1748090000000000", "-86.486170000000016"]}, "charges": 140360, "payments": 29845, "type": "source", "leakage": 1}, "1790730448": {"npi": "1790730448", "name": "JAMES STAFFORD", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 288275, "payments": 65727, "type": "source", "leakage": 0}, "1487680237": {"npi": "1487680237", "name": "IRENE CAMPBELL", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["35.9224251721448000", "-86.871270458136806"]}, "charges": 242640, "payments": 141184, "type": "source", "leakage": 0}, "1053337717": {"npi": "1053337717", "name": "SUNIL KAZA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 565542, "payments": 202038, "type": "source", "leakage": 0}, "1699754812": {"geometry": {"type": "point", "coordinates": ["35.1697220000001000", "-88.140692999999942"]}, "type": "comp", "npi": "1699754812", "name": "HARDIN MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1942254883": {"npi": "1942254883", "name": "ROBERT BURCHAM", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 831966, "payments": 113571, "type": "source", "leakage": 0}, "1013920735": {"npi": "1013920735", "name": "WIAAM FALOUJI", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.2196733500916000", "-86.331985547787426"]}, "charges": 393785, "payments": 112369, "type": "source", "leakage": 0}, "1366459570": {"geometry": {"type": "point", "coordinates": ["40.7845556743013000", "-73.704657704950279"]}, "type": "comp", "npi": "1366459570", "name": "NORTH SHORE UNIVERSITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1477616571": {"geometry": {"type": "point", "coordinates": ["40.7742580773370000", "-73.961348044146249"]}, "type": "comp", "npi": "1477616571", "name": "LENOX HILL HOSPITAL", "classification": "General Acute Care Hospital"}, "1912953555": {"npi": "1912953555", "name": "MICHAEL METZMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1792638, "payments": 260756, "type": "source", "leakage": 0}, "1770563215": {"npi": "1770563215", "name": "MICHAEL VALADE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 595959, "payments": 106670, "type": "source", "leakage": 0}, "1225222367": {"npi": "1225222367", "name": "ERIK BEKKERS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 127101, "payments": 22343, "type": "source", "leakage": 0}, "1073605879": {"geometry": {"type": "point", "coordinates": ["32.7855097144214000", "-79.946594794153398"]}, "type": "comp", "npi": "1073605879", "name": "MEDICAL UNIVERSITY HOSPITAL AUTHORITY", "classification": "General Acute Care Hospital"}, "1134125016": {"geometry": {"type": "point", "coordinates": ["39.9864391773578000", "-74.795486900399254"]}, "type": "comp", "npi": "1134125016", "name": "VIRTUA MEMORIAL HOSPITAL OF BURLINGTON COUNTY, INC.", "classification": "General Acute Care Hospital"}, "1871696096": {"npi": "1871696096", "name": "MOHAMMAD ALI", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.3190237588967000", "-86.624260151467610"]}, "charges": 149423, "payments": 62541, "type": "source", "leakage": 0}, "1649219742": {"npi": "1649219742", "name": "MICHAEL LEVITT", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 623568, "payments": 97367, "type": "source", "leakage": 0}, "1326028978": {"geometry": {"type": "point", "coordinates": ["34.9466089970714000", "-83.754894892946396"]}, "type": "comp", "npi": "1326028978", "name": "CHATUGE REGIONAL HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1477537173": {"npi": "1477537173", "name": "JULIE KENNON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 165565, "payments": 42003, "type": "source", "leakage": 0}, "1699970566": {"npi": "1699970566", "name": "DANIEL BRANAM", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 582503, "payments": 114024, "type": "source", "leakage": 0}, "1952330672": {"npi": "1952330672", "name": "MARION BOLIN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 61399, "payments": 28076, "type": "source", "leakage": 1}, "1104804566": {"geometry": {"type": "point", "coordinates": ["35.6388148132846000", "-88.122819511930928"]}, "type": "comp", "npi": "1104804566", "name": "DECATUR COUNTY GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1639172869": {"geometry": {"type": "point", "coordinates": ["35.0310036595694000", "-78.930597690570906"]}, "type": "comp", "npi": "1639172869", "name": "CAPE FEAR VALLEY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1972690006": {"npi": "1972690006", "name": "THOMAS LAVIE", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.0867801529318000", "-86.658321009754161"]}, "charges": 12605, "payments": 4801, "type": "source", "leakage": 0}, "1952326977": {"geometry": {"type": "point", "coordinates": ["35.0999987187310000", "-89.861380316044190"]}, "type": "comp", "npi": "1952326977", "name": "ST. FRANCIS HOSPITAL", "classification": "General Acute Care Hospital"}, "1073580130": {"geometry": {"type": "point", "coordinates": ["37.7153870000000000", "-88.532868000000008"]}, "type": "comp", "npi": "1073580130", "name": "HARRISBURG MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1306159181": {"npi": "1306159181", "name": "LUANN JOHNSON", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2656592192842000", "-86.614205682361501"]}, "charges": 322423, "payments": 147842, "type": "source", "leakage": 0}, "1942255575": {"npi": "1942255575", "name": "ALEXANDER BADRU", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2091164625637000", "-86.302152498334905"]}, "charges": 596304, "payments": 177730, "type": "source", "leakage": 0}, "1053499350": {"geometry": {"type": "point", "coordinates": ["36.6987402157244000", "-85.677361250993158"]}, "type": "comp", "npi": "1053499350", "name": "MONROE COUNTY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1437156346": {"geometry": {"type": "point", "coordinates": ["38.5085482293910000", "-82.694843925870941"]}, "type": "comp", "npi": "1437156346", "name": "OUR LADY OF BELLEFONTE HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1790789147": {"geometry": {"type": "point", "coordinates": ["44.8098917595499000", "-68.749821130996594"]}, "type": "comp", "npi": "1790789147", "name": "EASTERN MAINE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1265631675": {"npi": "1265631675", "name": "KATHERINE HARTLEY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 557157, "payments": 82268, "type": "source", "leakage": 0}, "1467459917": {"npi": "1467459917", "name": "TODD LEBLEU", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 190385, "payments": 20140, "type": "source", "leakage": 1}, "1174664296": {"npi": "1174664296", "name": "TAREK ELALAYLI", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 44628, "payments": 9167, "type": "source", "leakage": 1}, "1023055126": {"geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "type": "comp", "npi": "1023055126", "name": "TRISTAR CENTENNIAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1598835308": {"geometry": {"type": "point", "coordinates": ["38.7492909740083000", "-90.431814769090124"]}, "type": "comp", "npi": "1598835308", "name": "SSM DEPAUL HEALTH CENTER", "classification": "General Acute Care Hospital"}, "1396709978": {"geometry": {"type": "point", "coordinates": ["34.6563751463222000", "-88.565682121316087"]}, "type": "comp", "npi": "1396709978", "name": "BAPTIST MEMORIAL HOSPITAL-BOONEVILLE, INC.", "classification": "General Acute Care Hospital"}, "1912993262": {"npi": "1912993262", "name": "FRANCIS HAWTHORN", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 73300, "payments": 23768, "type": "source", "leakage": 0}, "1972524429": {"npi": "1972524429", "name": "MARCUS OWEN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["35.9238849999999000", "-86.439459999999940"]}, "charges": 191881, "payments": 57320, "type": "source", "leakage": 0}, "1881646073": {"npi": "1881646073", "name": "JAMES PEYTON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2172479202002000", "-86.335270812457722"]}, "charges": 2690697, "payments": 1293239, "type": "source", "leakage": 0}, "1447242565": {"npi": "1447242565", "name": "KEVIN COX", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1270005040072000", "-86.850212418303997"]}, "charges": 717080, "payments": 189911, "type": "source", "leakage": 0}, "1306819792": {"npi": "1306819792", "name": "ROBERT GUTH", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1897191686002000", "-86.606925463544343"]}, "charges": 60831, "payments": 33256, "type": "source", "leakage": 1}, "1750355129": {"npi": "1750355129", "name": "LAWRENCE PASS", "classification": "Thoracic Surgery (Cardiothoracic Vascular Surgery)", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 711383, "payments": 175537, "type": "source", "leakage": 0}, "1467763458": {"geometry": {"type": "point", "coordinates": ["36.3879225882071000", "-86.167542711434407"]}, "type": "comp", "npi": "1467763458", "name": "TROUSDALE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1528030541": {"npi": "1528030541", "name": "SEAN KAMINSKY", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 761733, "payments": 109075, "type": "source", "leakage": 1}, "1568493062": {"npi": "1568493062", "name": "SON LE", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 6225187, "payments": 1851758, "type": "source", "leakage": 0}, "1255383766": {"npi": "1255383766", "name": "LARIMORE WARREN", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 238845, "payments": 83543, "type": "source", "leakage": 0}, "1437138641": {"npi": "1437138641", "name": "CAMERON SHEARER", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2189180806027000", "-86.515291980030966"]}, "charges": 123250, "payments": 34460, "type": "source", "leakage": 1}, "1003090424": {"npi": "1003090424", "name": "TAMMY BAXTER", "classification": "Thoracic Surgery (Cardiothoracic Vascular Surgery)", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 64824, "payments": 10749, "type": "source", "leakage": 0}, "1255535746": {"npi": "1255535746", "name": "CHRISTIAN ANDERSON", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1293727846093000", "-86.840402090504099"]}, "charges": 23079, "payments": 5241, "type": "source", "leakage": 0}, "1629078712": {"geometry": {"type": "point", "coordinates": ["43.6520013593432000", "-70.265273066764919"]}, "type": "comp", "npi": "1629078712", "name": "MERCY HOSPITAL", "classification": "General Acute Care Hospital"}, "1154317527": {"geometry": {"type": "point", "coordinates": ["32.3287135687232000", "-90.175502710970818"]}, "type": "comp", "npi": "1154317527", "name": "STATE OF MISSISSIPPI - UNIVERSITY OF MISSISSIPPI MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1538164090": {"geometry": {"type": "point", "coordinates": ["35.9320119921576000", "-83.948621324800328"]}, "type": "comp", "npi": "1538164090", "name": "UNIVERSITY OF TENNESSEE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1275531956": {"geometry": {"type": "point", "coordinates": ["36.2257470000000000", "-85.537935000000004"]}, "type": "comp", "npi": "1275531956", "name": "COOKEVILLE REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1881643401": {"geometry": {"type": "point", "coordinates": ["38.7314329739589000", "-87.698067621796383"]}, "type": "comp", "npi": "1881643401", "name": "LAWRENCE COUNTY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1114972007": {"geometry": {"type": "point", "coordinates": ["35.8330106819934000", "-86.072918866106804"]}, "type": "comp", "npi": "1114972007", "name": "STONES RIVER HOSPITAL", "classification": "General Acute Care Hospital"}, "1346212602": {"npi": "1346212602", "name": "ROBERT DIMICK", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 306552, "payments": 62054, "type": "source", "leakage": 0}, "1861762783": {"npi": "1861762783", "name": "KATHRYN HEIDORN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["35.8590161587588000", "-86.382062223262551"]}, "charges": 7595, "payments": 4238, "type": "source", "leakage": 1}, "1538103692": {"npi": "1538103692", "name": "JOHN WILLIAMS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1543426068573000", "-86.801538916561142"]}, "charges": 472304, "payments": 176337, "type": "source", "leakage": 0}, "1306921887": {"geometry": {"type": "point", "coordinates": ["33.4100497432620000", "-91.035120302202628"]}, "type": "comp", "npi": "1306921887", "name": "DELTA REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1740279660": {"npi": "1740279660", "name": "STEPHEN GRINDE", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1533238557700000", "-86.800978658923810"]}, "charges": 2958822, "payments": 822284, "type": "source", "leakage": 0}, "1023004264": {"npi": "1023004264", "name": "WILLIE PRICE", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 48102, "payments": 5527, "type": "source", "leakage": 1}, "1255302923": {"geometry": {"type": "point", "coordinates": ["35.6544657259013000", "-88.400197780986076"]}, "type": "comp", "npi": "1255302923", "name": "HENDERSON COUNTY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1790788578": {"geometry": {"type": "point", "coordinates": ["37.1665177884533000", "-88.738065072697680"]}, "type": "comp", "npi": "1790788578", "name": "MASSAC MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1114033628": {"geometry": {"type": "point", "coordinates": ["36.3027200000000000", "-82.384118999999998"]}, "type": "comp", "npi": "1114033628", "name": "FRANKLIN WOODS COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1770578882": {"npi": "1770578882", "name": "BRUCE WALLSTEDT", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.0388338466634000", "-86.838265298402106"]}, "charges": 796617, "payments": 300255, "type": "source", "leakage": 0}, "1912167669": {"npi": "1912167669", "name": "LAWRENCE YOO", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["41.2551320000001000", "-95.977367000000015"]}, "charges": 318380, "payments": 113310, "type": "source", "leakage": 0}, "1972500361": {"npi": "1972500361", "name": "JEFF KING", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 156913, "payments": 17766, "type": "source", "leakage": 1}, "1538182779": {"npi": "1538182779", "name": "MICHAEL RAMOS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["35.7672438826233000", "-83.976656989308182"]}, "charges": 279616, "payments": 118964, "type": "source", "leakage": 0}, "1629166194": {"geometry": {"type": "point", "coordinates": ["33.4392501180144000", "-86.093957613935004"]}, "type": "comp", "npi": "1629166194", "name": "CITIZENS BAPTIST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1629025648": {"geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "type": "comp", "npi": "1629025648", "name": "SAINT THOMAS WEST HOSPITAL", "classification": "General Acute Care Hospital"}, "1427044148": {"npi": "1427044148", "name": "BARBARA KEYES", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1527045097674000", "-86.804909845323579"]}, "charges": 245890, "payments": 145966, "type": "source", "leakage": 0}, "1396851788": {"npi": "1396851788", "name": "JULIE LEVY", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "charges": 77038, "payments": 7536, "type": "source", "leakage": 1}, "1053342816": {"geometry": {"type": "point", "coordinates": ["38.7533162473633000", "-82.978231171071599"]}, "type": "comp", "npi": "1053342816", "name": "SOUTHERN OHIO MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1932194966": {"npi": "1932194966", "name": "THOMAS WILLIAMS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 481079, "payments": 169782, "type": "source", "leakage": 0}, "1316977861": {"npi": "1316977861", "name": "KEITH PARKER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 317834, "payments": 75615, "type": "source", "leakage": 0}, "1144205519": {"npi": "1144205519", "name": "PAT WHITWORTH", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1543426068573000", "-86.801538916561142"]}, "charges": 464841, "payments": 132349, "type": "source", "leakage": 0}, "1104837327": {"npi": "1104837327", "name": "THOMAS BAKER", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.2196656055495000", "-86.332059977350752"]}, "charges": 717849, "payments": 343232, "type": "source", "leakage": 0}, "1376774547": {"npi": "1376774547", "name": "CESHOLE SIMON", "classification": "Student", "geometry": {"type": "point", "coordinates": ["36.1662160434171000", "-86.805640731273172"]}, "charges": 6816, "payments": 3217, "type": "source", "leakage": 1}, "1073519377": {"geometry": {"type": "point", "coordinates": ["36.8232560000000000", "-81.537778000000003"]}, "type": "comp", "npi": "1073519377", "name": "SMYTH COUNTY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1265402879": {"npi": "1265402879", "name": "CHARLES GILL", "classification": "Urology", "geometry": {"type": "point", "coordinates": ["36.2196733500916000", "-86.331985547787426"]}, "charges": 749451, "payments": 214617, "type": "source", "leakage": 0}, "1437150984": {"geometry": {"type": "point", "coordinates": ["38.0316545901737000", "-84.521240102389967"]}, "type": "comp", "npi": "1437150984", "name": "SAINT JOSEPH HOSPITAL", "classification": "General Acute Care Hospital"}, "1801069471": {"npi": "1801069471", "name": "ARMAN HAKIMIAN", "classification": "Hospitalist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 217054, "payments": 102740, "type": "source", "leakage": 0}, "1932217171": {"npi": "1932217171", "name": "JONATHAN COSTA", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["35.9987500000000000", "-86.778573999999992"]}, "charges": 174685, "payments": 83604, "type": "source", "leakage": 0}, "1891005856": {"npi": "1891005856", "name": "JOHN PAINTER", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.3061717095588000", "-86.610012136189454"]}, "charges": 192067, "payments": 111374, "type": "source", "leakage": 0}, "1912910142": {"npi": "1912910142", "name": "STACEY STROUD", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1624570679561000", "-86.515096421477210"]}, "charges": 24814, "payments": 9905, "type": "source", "leakage": 1}, "1417091257": {"npi": "1417091257", "name": "PATRICK BRIEN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 246414, "payments": 62216, "type": "source", "leakage": 0}, "1306822234": {"npi": "1306822234", "name": "JASON ROBBINS", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1261794866098000", "-86.804762854599602"]}, "charges": 1853870, "payments": 504642, "type": "source", "leakage": 0}, "1609039973": {"npi": "1609039973", "name": "EVAN RUSSELL", "classification": "Hospitalist", "geometry": {"type": "point", "coordinates": ["39.9077486730243000", "-86.198256948461250"]}, "charges": 13800, "payments": 5146, "type": "source", "leakage": 0}, "1225060791": {"npi": "1225060791", "name": "SHAN-REN ZHOU", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 450260, "payments": 212508, "type": "source", "leakage": 0}, "1770574360": {"npi": "1770574360", "name": "JOSEPH HEWGLEY", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 182439, "payments": 28205, "type": "source", "leakage": 1}, "1891892741": {"geometry": {"type": "point", "coordinates": ["36.7569466945859000", "-88.650845093719738"]}, "type": "comp", "npi": "1891892741", "name": "JACKSON PURCHASE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1255318051": {"npi": "1255318051", "name": "JOHN KING", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 316495, "payments": 83545, "type": "source", "leakage": 0}, "1851507073": {"npi": "1851507073", "name": "SARA KANTROW", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1261794866098000", "-86.804762854599602"]}, "charges": 1667385, "payments": 458472, "type": "source", "leakage": 0}, "1073796470": {"npi": "1073796470", "name": "CHRISTOPHER BUELL", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 61374, "payments": 7250, "type": "source", "leakage": 1}, "1124150016": {"npi": "1124150016", "name": "SAMUEL CRUTCHER", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 171148, "payments": 71718, "type": "source", "leakage": 0}, "1023083060": {"geometry": {"type": "point", "coordinates": ["37.0972950984760000", "-85.295484892782710"]}, "type": "comp", "npi": "1023083060", "name": "WESTLAKE REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1811929151": {"geometry": {"type": "point", "coordinates": ["35.2057994836847000", "-89.802373729140541"]}, "type": "comp", "npi": "1811929151", "name": "ST. FRANCIS HOSPITAL-BARTLETT", "classification": "General Acute Care Hospital"}, "1366541302": {"npi": "1366541302", "name": "HAL ROSEMAN", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 82050, "payments": 18084, "type": "source", "leakage": 0}, "1992960298": {"npi": "1992960298", "name": "GABRIEL STARACE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 58443, "payments": 8524, "type": "source", "leakage": 0}, "1598083578": {"npi": "1598083578", "name": "BRANDON LOKEY", "classification": "Student", "geometry": {"type": "point", "coordinates": ["33.5333528510213000", "-86.704690192310551"]}, "charges": 228875, "payments": 28014, "type": "source", "leakage": 0}, "1356617567": {"npi": "1356617567", "name": "LAURIE BUTLER", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 41036, "payments": 4825, "type": "source", "leakage": 1}, "1700837754": {"npi": "1700837754", "name": "JON FRANKLIN", "classification": "Optometrist", "geometry": {"type": "point", "coordinates": ["36.2182462743407000", "-86.515392314866432"]}, "charges": 29511, "payments": 16184, "type": "source", "leakage": 1}, "1720171796": {"npi": "1720171796", "name": "JULIE COUNTESS", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 1073083, "payments": 345995, "type": "source", "leakage": 0}, "1073606901": {"geometry": {"type": "point", "coordinates": ["30.3667241447105000", "-89.115313089258819"]}, "type": "comp", "npi": "1073606901", "name": "MEMORIAL HOSPITAL AT GULFPORT", "classification": "General Acute Care Hospital"}, "1528064409": {"geometry": {"type": "point", "coordinates": ["39.6446769999999000", "-105.393023999999910"]}, "type": "comp", "npi": "1528064409", "name": "VIRTUA WEST JERSEY HEALTH SYSTEM INC", "classification": "General Acute Care Hospital"}, "1437101524": {"npi": "1437101524", "name": "JAMES EBY", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 841834, "payments": 132850, "type": "source", "leakage": 0}, "1760599286": {"geometry": {"type": "point", "coordinates": ["29.6422660549425000", "-81.693512282600665"]}, "type": "comp", "npi": "1760599286", "name": "PUTNAM COMMUNITY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1710941356": {"geometry": {"type": "point", "coordinates": ["36.0236538117423000", "-88.413717593214173"]}, "type": "comp", "npi": "1710941356", "name": "BAPTIST MEMORIAL HOSPITAL- HUNTINGDON", "classification": "General Acute Care Hospital"}, "1023171576": {"npi": "1023171576", "name": "BARBARA WOLFF", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 411876, "payments": 124025, "type": "source", "leakage": 0}, "1821083973": {"npi": "1821083973", "name": "WILLIAM CAIN", "classification": "Allergy & Immunology", "geometry": {"type": "point", "coordinates": ["36.2001010018380000", "-86.620709435379680"]}, "charges": 330524, "payments": 126203, "type": "source", "leakage": 0}, "1881647204": {"geometry": {"type": "point", "coordinates": ["35.2134532405240000", "-80.824929611737062"]}, "type": "comp", "npi": "1881647204", "name": "NOVANT HEALTH PRESBYTERIAN MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1982662557": {"geometry": {"type": "point", "coordinates": ["34.8035889880729000", "-86.976793179787123"]}, "type": "comp", "npi": "1982662557", "name": "ATHENS LIMESTONE HOPSITAL", "classification": "General Acute Care Hospital"}, "1780685743": {"npi": "1780685743", "name": "WAYNE WELLS", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2196241940357000", "-86.332355773877836"]}, "charges": 158210, "payments": 91709, "type": "source", "leakage": 0}, "1992893416": {"geometry": {"type": "point", "coordinates": ["36.8181663709169000", "-86.883809782858393"]}, "type": "comp", "npi": "1992893416", "name": "LOGAN MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1669470555": {"npi": "1669470555", "name": "VIJAY PETHKAR", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1834585943748000", "-86.511518061053266"]}, "charges": 316678, "payments": 140202, "type": "source", "leakage": 0}, "1992103857": {"geometry": {"type": "point", "coordinates": ["34.0045464901791000", "-86.004030885015780"]}, "type": "comp", "npi": "1992103857", "name": "RIVERVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1891999389": {"npi": "1891999389", "name": "AMY VALET", "classification": "Student", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 185559, "payments": 66309, "type": "source", "leakage": 0}, "1407892516": {"npi": "1407892516", "name": "BRIAN CARLSON", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "charges": 978574, "payments": 98228, "type": "source", "leakage": 0}, "1790757755": {"npi": "1790757755", "name": "EARL LETT", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.2196869432721000", "-86.331836415524734"]}, "charges": 29691, "payments": 10769, "type": "source", "leakage": 0}, "1043265564": {"geometry": {"type": "point", "coordinates": ["33.7808910000001000", "-83.693745000000035"]}, "type": "comp", "npi": "1043265564", "name": "CLEARVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1972585347": {"geometry": {"type": "point", "coordinates": ["36.1080420000001000", "-83.464512999999954"]}, "type": "comp", "npi": "1972585347", "name": "TENNOVA HEALTHCARE-JEFFERSON MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1215966726": {"npi": "1215966726", "name": "MARTIN JORDANOV", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1430902128154000", "-86.799992337119022"]}, "charges": 460486, "payments": 64591, "type": "source", "leakage": 0}, "1306013305": {"npi": "1306013305", "name": "JASON BLACK", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 26699, "payments": 8927, "type": "source", "leakage": 0}, "1720245301": {"npi": "1720245301", "name": "CHRISTOPHER HAWKINS", "classification": "Urology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 268203, "payments": 82231, "type": "source", "leakage": 0}, "1396932463": {"npi": "1396932463", "name": "AMIT SINGH", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["35.9593830000001000", "-86.531067000000007"]}, "charges": 184462, "payments": 68426, "type": "source", "leakage": 0}, "1215941646": {"geometry": {"type": "point", "coordinates": ["35.4985720271410000", "-86.079525552284196"]}, "type": "comp", "npi": "1215941646", "name": "MEDICAL CENTER OF MANCHESTER", "classification": "General Acute Care Hospital"}, "1114074085": {"npi": "1114074085", "name": "BRENT FRISBIE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3911171354157000", "-86.434013170905033"]}, "charges": 495178, "payments": 68493, "type": "source", "leakage": 0}, "1811913460": {"geometry": {"type": "point", "coordinates": ["32.9324201275785000", "-85.969926700346221"]}, "type": "comp", "npi": "1811913460", "name": "RUSSELL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1760672026": {"npi": "1760672026", "name": "AMER HAQUE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 236802, "payments": 38719, "type": "source", "leakage": 0}, "1467412726": {"geometry": {"type": "point", "coordinates": ["37.3026612999236000", "-89.572132689995456"]}, "type": "comp", "npi": "1467412726", "name": "SAINT FRANCIS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1225060999": {"npi": "1225060999", "name": "BRUCE MCLAUGHLIN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1830975037193000", "-86.511582429387516"]}, "charges": 18342, "payments": 7352, "type": "source", "leakage": 1}, "1518955699": {"npi": "1518955699", "name": "TODD WARREN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 191606, "payments": 26880, "type": "source", "leakage": 0}, "1871530832": {"geometry": {"type": "point", "coordinates": ["36.0744667127857000", "-87.369185075880424"]}, "type": "comp", "npi": "1871530832", "name": "TRISTAR HORIZON MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1073518007": {"geometry": {"type": "point", "coordinates": ["38.4098722900320000", "-82.428199738104965"]}, "type": "comp", "npi": "1073518007", "name": "CABELL HUNTINGTON HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1538105242": {"npi": "1538105242", "name": "ALAN KAUFMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 196565, "payments": 50986, "type": "source", "leakage": 0}, "1275631129": {"npi": "1275631129", "name": "DAVID HANSEN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 328493, "payments": 69992, "type": "source", "leakage": 0}, "1366510794": {"npi": "1366510794", "name": "BRAD COHEN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 179222, "payments": 81397, "type": "source", "leakage": 1}, "1407977184": {"npi": "1407977184", "name": "MEGAN STAUFFER", "classification": "Allergy & Immunology", "geometry": {"type": "point", "coordinates": ["36.2001010018380000", "-86.620709435379680"]}, "charges": 122551, "payments": 45211, "type": "source", "leakage": 0}, "1710906565": {"geometry": {"type": "point", "coordinates": ["36.7620658626932000", "-86.216885892299231"]}, "type": "comp", "npi": "1710906565", "name": "THE MEDICAL CENTER AT SCOTTSVILLE", "classification": "General Acute Care Hospital"}, "1679795256": {"npi": "1679795256", "name": "RACHEL ROME", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.3452840000000000", "-86.606778000000020"]}, "charges": 517790, "payments": 116448, "type": "source", "leakage": 0}, "1992776405": {"geometry": {"type": "point", "coordinates": ["35.9593830000001000", "-86.531067000000007"]}, "type": "comp", "npi": "1992776405", "name": "TRISTAR STONECREST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1740353002": {"npi": "1740353002", "name": "BRIANA GLEASON", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 1069117, "payments": 279247, "type": "source", "leakage": 0}, "1114956687": {"npi": "1114956687", "name": "BRADLEY HILL", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.0402931271555000", "-86.646123716319636"]}, "charges": 2240514, "payments": 584089, "type": "source", "leakage": 0}, "1417919531": {"geometry": {"type": "point", "coordinates": ["34.5111236081745000", "-82.647364338615347"]}, "type": "comp", "npi": "1417919531", "name": "ANMED HEALTH", "classification": "General Acute Care Hospital"}, "1497802961": {"npi": "1497802961", "name": "SHAHANA HUDA", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 130185, "payments": 47544, "type": "source", "leakage": 1}, "1326046673": {"npi": "1326046673", "name": "BARRETT CONNER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 311419, "payments": 207444, "type": "source", "leakage": 0}, "1386615540": {"npi": "1386615540", "name": "CYNTHIA WALLACE", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1897191686002000", "-86.606925463544343"]}, "charges": 48668, "payments": 26304, "type": "source", "leakage": 0}, "1225089097": {"npi": "1225089097", "name": "DAVID HOROWITZ", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1561832492547000", "-86.800448488600594"]}, "charges": 711520, "payments": 309033, "type": "source", "leakage": 0}, "1437186111": {"geometry": {"type": "point", "coordinates": ["33.9404410000001000", "-83.429847999999993"]}, "type": "comp", "npi": "1437186111", "name": "ATHENS REGIONAL MEDICAL CENTER, INC.", "classification": "General Acute Care Hospital"}, "1558386771": {"npi": "1558386771", "name": "ANDRE OLIVIER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 459368, "payments": 164792, "type": "source", "leakage": 0}, "1871556621": {"geometry": {"type": "point", "coordinates": ["33.9457692997560000", "-83.404714050832027"]}, "type": "comp", "npi": "1871556621", "name": "ST. MARY'S HOSPITAL", "classification": "General Acute Care Hospital"}, "1851330906": {"npi": "1851330906", "name": "STEPHEN HUMPHREY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 541576, "payments": 86251, "type": "source", "leakage": 0}, "1700977105": {"geometry": {"type": "point", "coordinates": ["32.3270086278177000", "-86.275971181130330"]}, "type": "comp", "npi": "1700977105", "name": "BAPTIST MEDICAL CENTER SOUTH", "classification": "General Acute Care Hospital"}, "1114020336": {"npi": "1114020336", "name": "RACHEL KINGREE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 230382, "payments": 152407, "type": "source", "leakage": 0}, "1790886059": {"npi": "1790886059", "name": "ALACIA BIGHAM", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1970787853914000", "-86.619973838784418"]}, "charges": 118229, "payments": 44859, "type": "source", "leakage": 0}, "1295919041": {"npi": "1295919041", "name": "MEGAN MCCAULEY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.4014910000001000", "-86.455447999999933"]}, "charges": 146300, "payments": 49975, "type": "source", "leakage": 0}, "1689736282": {"geometry": {"type": "point", "coordinates": ["34.5812656933348000", "-83.536323049116007"]}, "type": "comp", "npi": "1689736282", "name": "HABERSHAM MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1225081516": {"geometry": {"type": "point", "coordinates": ["34.0093939164687000", "-85.967664089177831"]}, "type": "comp", "npi": "1225081516", "name": "GADSDEN REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1710968037": {"npi": "1710968037", "name": "RICHARD PAK", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 86557, "payments": 44080, "type": "source", "leakage": 0}, "1144283896": {"npi": "1144283896", "name": "PATRICIA TEPPER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 253763, "payments": 62892, "type": "source", "leakage": 0}, "1245275254": {"geometry": {"type": "point", "coordinates": ["35.7818536966345000", "-87.464260291790410"]}, "type": "comp", "npi": "1245275254", "name": "SAINT THOMAS HICKMAN HOSPITAL", "classification": "General Acute Care Hospital"}, "1407827157": {"geometry": {"type": "point", "coordinates": ["36.1390024364505000", "-88.491246851992770"]}, "type": "comp", "npi": "1407827157", "name": "MCKENZIE REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1306876065": {"geometry": {"type": "point", "coordinates": ["32.3336871792740000", "-90.166295215331431"]}, "type": "comp", "npi": "1306876065", "name": "ST DOMINIC-JACKSON MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1497741714": {"npi": "1497741714", "name": "RICHARD RIECK", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 72869, "payments": 16747, "type": "source", "leakage": 0}, "1144236571": {"geometry": {"type": "point", "coordinates": ["36.3908387598176000", "-97.886505627476069"]}, "type": "comp", "npi": "1144236571", "name": "INTEGRIS BASS BAPTIST HEALTH CENTER", "classification": "General Acute Care Hospital"}, "1578527172": {"geometry": {"type": "point", "coordinates": ["35.1307857828267000", "-89.860634931534051"]}, "type": "comp", "npi": "1578527172", "name": "BAPTIST MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1013914449": {"npi": "1013914449", "name": "KENNETH SEARS", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 179357, "payments": 18485, "type": "source", "leakage": 1}, "1306925540": {"geometry": {"type": "point", "coordinates": ["38.3974455191918000", "-85.371647875378670"]}, "type": "comp", "npi": "1306925540", "name": "BAPTIST HEALTH LA GRANGE", "classification": "General Acute Care Hospital"}, "1053604330": {"npi": "1053604330", "name": "CHRISTOPHER HUMPHREYS", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.2178645096853000", "-86.598287731269622"]}, "charges": 258681, "payments": 103336, "type": "source", "leakage": 0}, "1356389597": {"npi": "1356389597", "name": "KEVIN CUNNEELY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1583812, "payments": 218786, "type": "source", "leakage": 0}, "1194789818": {"geometry": {"type": "point", "coordinates": ["34.9736857617346000", "-89.994345851316751"]}, "type": "comp", "npi": "1194789818", "name": "BAPTIST MEMORIAL HOSPITAL-DESOTO, INC,", "classification": "General Acute Care Hospital"}, "1326017856": {"npi": "1326017856", "name": "JOHN CHAUVIN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["30.3162830370468000", "-81.663921368019302"]}, "charges": 421455, "payments": 141580, "type": "source", "leakage": 0}, "1861482259": {"npi": "1861482259", "name": "ROGER PASSMORE", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 85773, "payments": 18889, "type": "source", "leakage": 0}, "1407809890": {"npi": "1407809890", "name": "STANLEY BODNER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1864163637040000", "-86.630718678720086"]}, "charges": 118093, "payments": 78449, "type": "source", "leakage": 1}, "1932170750": {"geometry": {"type": "point", "coordinates": ["35.5596460399659000", "-86.447186162000079"]}, "type": "comp", "npi": "1932170750", "name": "HERITAGE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1811940976": {"geometry": {"type": "point", "coordinates": ["32.8662499638672000", "-83.694173538115081"]}, "type": "comp", "npi": "1811940976", "name": "COLISEUM NORTHSIDE HOSPITAL", "classification": "General Acute Care Hospital"}, "1568416311": {"geometry": {"type": "point", "coordinates": ["42.3048035855474000", "-85.560679540678947"]}, "type": "comp", "npi": "1568416311", "name": "BORGESS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1174553598": {"geometry": {"type": "point", "coordinates": ["36.3993936604044000", "-83.012847304423659"]}, "type": "comp", "npi": "1174553598", "name": "WELLMONT HAWKINS COUNTY MEMORIAL HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1265483267": {"geometry": {"type": "point", "coordinates": ["33.7890941035951000", "-85.761000665745925"]}, "type": "comp", "npi": "1265483267", "name": "JACKSONVILLE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1649598624": {"npi": "1649598624", "name": "JASON BOOTON", "classification": "Student", "geometry": {"type": "point", "coordinates": ["33.5333528510213000", "-86.704690192310551"]}, "charges": 277938, "payments": 33623, "type": "source", "leakage": 1}, "1447231956": {"geometry": {"type": "point", "coordinates": ["37.3409879581601000", "-87.496346961996124"]}, "type": "comp", "npi": "1447231956", "name": "BAPTIST HEALTH MADISONVILLE", "classification": "General Acute Care Hospital"}, "1548546138": {"geometry": {"type": "point", "coordinates": ["36.7747440000001000", "-90.447879999999998"]}, "type": "comp", "npi": "1548546138", "name": "BLACK RIVER MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1104137215": {"geometry": {"type": "point", "coordinates": ["36.2621774831116000", "-85.950413977316714"]}, "type": "comp", "npi": "1104137215", "name": "RIVERVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1073505830": {"npi": "1073505830", "name": "STANLEY LEE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1270005040072000", "-86.850212418303997"]}, "charges": 2031269, "payments": 478784, "type": "source", "leakage": 0}, "1427079946": {"npi": "1427079946", "name": "CHRISTOPHER CONLEY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 577011, "payments": 199157, "type": "source", "leakage": 0}, "1265419725": {"npi": "1265419725", "name": "GILBERT EZELL", "classification": "Urology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 232415, "payments": 70061, "type": "source", "leakage": 0}, "1962418038": {"npi": "1962418038", "name": "PETER TAKEYAMA", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 153399, "payments": 33178, "type": "source", "leakage": 0}, "1326262585": {"npi": "1326262585", "name": "EUGENE PLATT", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.2333577122409000", "-86.723196442365861"]}, "charges": 47496, "payments": 21377, "type": "source", "leakage": 1}, "1386749893": {"geometry": {"type": "point", "coordinates": ["39.6492801266084000", "-86.082647059335045"]}, "type": "comp", "npi": "1386749893", "name": "FRANCISCAN ST. FRANCIS HEALTH - INDIANAPOLIS", "classification": "General Acute Care Hospital"}, "1932164795": {"geometry": {"type": "point", "coordinates": ["43.9092114960710000", "-69.906401185311793"]}, "type": "comp", "npi": "1932164795", "name": "MID COAST HOSPITAL", "classification": "General Acute Care Hospital"}, "1083778633": {"geometry": {"type": "point", "coordinates": ["35.1233570161418000", "-85.238134120030395"]}, "type": "comp", "npi": "1083778633", "name": "MEMORIAL HOSPITAL HIXSON", "classification": "General Acute Care Hospital"}, "1205882669": {"geometry": {"type": "point", "coordinates": ["32.2817744745822000", "-90.036122695199310"]}, "type": "comp", "npi": "1205882669", "name": "MERIT HEALTH RANKIN", "classification": "General Acute Care Hospital"}, "1447307251": {"npi": "1447307251", "name": "DAVID CHOMA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.3908864222230000", "-86.432714623346016"]}, "charges": 478158, "payments": 118514, "type": "source", "leakage": 0}, "1346243375": {"geometry": {"type": "point", "coordinates": ["40.4934535913364000", "-74.447737223378269"]}, "type": "comp", "npi": "1346243375", "name": "ROBERT WOOD JOHNSON UNIVERSITY HOSPITAL, INC", "classification": "General Acute Care Hospital"}, "1467498279": {"npi": "1467498279", "name": "MOHAN GOUNDER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "charges": 408682, "payments": 155726, "type": "source", "leakage": 0}, "1912997024": {"geometry": {"type": "point", "coordinates": ["36.2357480000001000", "-83.331909999999937"]}, "type": "comp", "npi": "1912997024", "name": "MORRISTOWN HAMBLEN HEALTHCARE SYSTEM", "classification": "General Acute Care Hospital"}, "1689624900": {"geometry": {"type": "point", "coordinates": ["34.8215624680448000", "-82.413678477064423"]}, "type": "comp", "npi": "1689624900", "name": "GHS GREENVILLE MEMORIAL HOSP", "classification": "General Acute Care Hospital"}, "1922008614": {"npi": "1922008614", "name": "JANET FERGUSSON", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 19208, "payments": 2150, "type": "source", "leakage": 1}, "1548376700": {"geometry": {"type": "point", "coordinates": ["34.8035582208826000", "-88.209624780253137"]}, "type": "comp", "npi": "1548376700", "name": "TISHOMINGO CO HOSPITAL", "classification": "General Acute Care Hospital"}, "1043282338": {"geometry": {"type": "point", "coordinates": ["36.0474726627597000", "-89.379635450362201"]}, "type": "comp", "npi": "1043282338", "name": "TENNOVA HEALTHCARE-DYERSBURG REGIONAL", "classification": "General Acute Care Hospital"}, "1780648352": {"geometry": {"type": "point", "coordinates": ["34.4982454965793000", "-89.028978459680559"]}, "type": "comp", "npi": "1780648352", "name": "BAPTIST MEMORIAL HOSPITAL UNION COUNTY, INC.", "classification": "General Acute Care Hospital"}, "1912094806": {"geometry": {"type": "point", "coordinates": ["39.7140660000001000", "-84.034385999999927"]}, "type": "comp", "npi": "1912094806", "name": "ST. ANDREWS HOSPITAL", "classification": "General Acute Care Hospital"}, "1831173467": {"geometry": {"type": "point", "coordinates": ["36.7029271381676000", "-86.576038045602274"]}, "type": "comp", "npi": "1831173467", "name": "THE MEDICAL CENTER AT FRANKLIN, INC.", "classification": "General Acute Care Hospital"}, "1598753758": {"npi": "1598753758", "name": "MICHAEL LADOUCEUR", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 535216, "payments": 99357, "type": "source", "leakage": 1}, "1962457069": {"npi": "1962457069", "name": "LUIS FERNANDEZ", "classification": "Hospitalist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 238467, "payments": 121458, "type": "source", "leakage": 0}, "1225034333": {"geometry": {"type": "point", "coordinates": ["33.5184033183114000", "-84.200338490939231"]}, "type": "comp", "npi": "1225034333", "name": "PIEDMONT HENRY HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1851478747": {"npi": "1851478747", "name": "BEATA PANZEGRAU", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 333006, "payments": 85449, "type": "source", "leakage": 0}, "1073568754": {"geometry": {"type": "point", "coordinates": ["35.5477292136878000", "-80.851084922325555"]}, "type": "comp", "npi": "1073568754", "name": "LAKE NORMAN REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1538101068": {"npi": "1538101068", "name": "JOY BENDER", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2196656055495000", "-86.332059977350752"]}, "charges": 37997, "payments": 21899, "type": "source", "leakage": 0}, "1023418035": {"geometry": {"type": "point", "coordinates": ["34.8116070000000000", "-82.332255999999973"]}, "type": "comp", "npi": "1023418035", "name": "ST. FRANCIS CANCER CENTER", "classification": "General Acute Care Hospital"}, "1487690400": {"geometry": {"type": "point", "coordinates": ["36.5527460127881000", "-82.553757375672504"]}, "type": "comp", "npi": "1487690400", "name": "HOLSTON VALLEY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1588656664": {"npi": "1588656664", "name": "YONG SUH", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["36.2197059459290000", "-86.331537123677634"]}, "charges": 162008, "payments": 76568, "type": "source", "leakage": 0}, "1023061405": {"geometry": {"type": "point", "coordinates": ["33.4422620000000000", "-86.740362999999945"]}, "type": "comp", "npi": "1023061405", "name": "GRANDVIEW MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1215918321": {"npi": "1215918321", "name": "ALVIN MEYER", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 343779, "payments": 202664, "type": "source", "leakage": 0}, "1902899677": {"npi": "1902899677", "name": "ALEXANDER CHALKO", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 104890, "payments": 41564, "type": "source", "leakage": 0}, "1114003175": {"geometry": {"type": "point", "coordinates": ["35.2148791536296000", "-87.338758941661226"]}, "type": "comp", "npi": "1114003175", "name": "SOUTHERN TENNESSEE REGIONAL HEALTH SYSTEM LAWRENCEBURG", "classification": "General Acute Care Hospital"}, "1942276829": {"npi": "1942276829", "name": "CYNTHIA RECTOR", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.2144121739250000", "-86.324937326667509"]}, "charges": 263820, "payments": 134671, "type": "source", "leakage": 0}, "1598716060": {"geometry": {"type": "point", "coordinates": ["34.9176185170746000", "-82.241195919883950"]}, "type": "comp", "npi": "1598716060", "name": "GHS GREER MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1366429151": {"npi": "1366429151", "name": "STEVEN TISHLER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 359844, "payments": 86165, "type": "source", "leakage": 0}, "1083606248": {"npi": "1083606248", "name": "RALPH ATKINSON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1270005040072000", "-86.850212418303997"]}, "charges": 786833, "payments": 206256, "type": "source", "leakage": 0}, "1548251705": {"npi": "1548251705", "name": "JOHN KANE", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1748090000000000", "-86.486170000000016"]}, "charges": 3495, "payments": 1096, "type": "source", "leakage": 0}, "1023089984": {"geometry": {"type": "point", "coordinates": ["35.6827559420023000", "-88.853403746262245"]}, "type": "comp", "npi": "1023089984", "name": "TENNOVA HEALTHCARE-REGIONAL JACKSON", "classification": "General Acute Care Hospital"}, "1194961623": {"npi": "1194961623", "name": "TRAVIS BERRY", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 58328, "payments": 6715, "type": "source", "leakage": 1}, "1447226584": {"geometry": {"type": "point", "coordinates": ["44.1030227459701000", "-70.201519730945563"]}, "type": "comp", "npi": "1447226584", "name": "ST. MARY'S REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1457389967": {"npi": "1457389967", "name": "MICHAEL THOMAS", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 61619, "payments": 15409, "type": "source", "leakage": 1}, "1861452195": {"npi": "1861452195", "name": "DAMON PETTY", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.2148891945183000", "-86.326279933702011"]}, "charges": 321008, "payments": 64597, "type": "source", "leakage": 0}, "1386630705": {"geometry": {"type": "point", "coordinates": ["33.1116604966605000", "-90.028191675628335"]}, "type": "comp", "npi": "1386630705", "name": "HOLMES COUNTY HOSPITAL AND CLINIC", "classification": "General Acute Care Hospital"}, "1114919339": {"geometry": {"type": "point", "coordinates": ["34.2006797121008000", "-86.803119003949149"]}, "type": "comp", "npi": "1114919339", "name": "CULLMAN REGIONAL MEDICAL CENTER, INC", "classification": "General Acute Care Hospital"}, "1982712162": {"npi": "1982712162", "name": "EUGENE SHIH", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 531190, "payments": 88859, "type": "source", "leakage": 0}, "1396739165": {"geometry": {"type": "point", "coordinates": ["35.9181603011224000", "-84.096360157127464"]}, "type": "comp", "npi": "1396739165", "name": "PENINSULA DIV PARKWEST MC", "classification": "General Acute Care Hospital"}, "1710909585": {"geometry": {"type": "point", "coordinates": ["32.3142951350609000", "-90.178278673973310"]}, "type": "comp", "npi": "1710909585", "name": "MISSISSIPPI BAPTIST MEDICAL CENTER, INC", "classification": "General Acute Care Hospital"}, "1558306357": {"npi": "1558306357", "name": "KERRY BECHT", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.2197059459290000", "-86.331537123677634"]}, "charges": 157405, "payments": 60296, "type": "source", "leakage": 0}, "1699773150": {"npi": "1699773150", "name": "MARK MILLER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1543426068573000", "-86.801538916561142"]}, "charges": 226972, "payments": 64231, "type": "source", "leakage": 0}, "1881669778": {"geometry": {"type": "point", "coordinates": ["36.1715143854218000", "-82.799947653173831"]}, "type": "comp", "npi": "1881669778", "name": "LAUGHLIN MEMORIAL HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1710986153": {"npi": "1710986153", "name": "SEAN BURCH", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 57319, "payments": 6752, "type": "source", "leakage": 1}, "1043205008": {"npi": "1043205008", "name": "THOMAS KOWAL", "classification": "General Practice", "geometry": {"type": "point", "coordinates": ["36.2117027953246000", "-86.316114974526045"]}, "charges": 297399, "payments": 129805, "type": "source", "leakage": 0}, "1245274778": {"npi": "1245274778", "name": "DAVID FORTUNE", "classification": "Otolaryngology", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 251932, "payments": 88482, "type": "source", "leakage": 0}, "1841308020": {"geometry": {"type": "point", "coordinates": ["33.5944325228616000", "-86.665668624916890"]}, "type": "comp", "npi": "1841308020", "name": "ST. VINCENT'S EAST", "classification": "General Acute Care Hospital"}, "1538218680": {"geometry": {"type": "point", "coordinates": ["36.8670795967723000", "-87.799702330047040"]}, "type": "comp", "npi": "1538218680", "name": "TRIGG COUNTY HOSPITAL, INC", "classification": "General Acute Care Hospital"}, "1104812684": {"geometry": {"type": "point", "coordinates": ["36.6529630000001000", "-81.956790999999953"]}, "type": "comp", "npi": "1104812684", "name": "JOHNSTON MEMORIAL HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1356307581": {"geometry": {"type": "point", "coordinates": ["41.2551320000001000", "-95.977367000000015"]}, "type": "comp", "npi": "1356307581", "name": "THE NEBRASKA MEDICAL CENTER - NEBRASKA MEDICINE", "classification": "General Acute Care Hospital"}, "1003814971": {"geometry": {"type": "point", "coordinates": ["30.6854013818524000", "-88.140022912842852"]}, "type": "comp", "npi": "1003814971", "name": "SPRINGHILL MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1902812571": {"npi": "1902812571", "name": "MICHAEL HEMPHILL", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 894683, "payments": 386237, "type": "source", "leakage": 0}, "1316901937": {"geometry": {"type": "point", "coordinates": ["35.5403418882399000", "-89.668545742638102"]}, "type": "comp", "npi": "1316901937", "name": "BAPTIST MEMORIAL HOSPITAL-TIPTON", "classification": "General Acute Care Hospital"}, "1750410452": {"npi": "1750410452", "name": "ROBERT YOUNG", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 980916, "payments": 158101, "type": "source", "leakage": 0}, "1265599518": {"npi": "1265599518", "name": "JOSEPH TROMBLEY", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.2197059459290000", "-86.331537123677634"]}, "charges": 52501, "payments": 27440, "type": "source", "leakage": 0}, "1205844495": {"geometry": {"type": "point", "coordinates": ["41.1601447179826000", "-85.466781241515491"]}, "type": "comp", "npi": "1205844495", "name": "PARKVIEW WHITLEY HOSPITAL", "classification": "General Acute Care Hospital"}, "1588713440": {"geometry": {"type": "point", "coordinates": ["41.3562833003766000", "-88.826096649444096"]}, "type": "comp", "npi": "1588713440", "name": "OTTAWA REGIONAL HOSPITAL & HEALTHCARE CENTER", "classification": "General Acute Care Hospital"}, "1538110556": {"geometry": {"type": "point", "coordinates": ["41.1786639419541000", "-85.111948130033525"]}, "type": "comp", "npi": "1538110556", "name": "DUPONT HOSPITAL", "classification": "General Acute Care Hospital"}, "1649271206": {"npi": "1649271206", "name": "ROY TERRY", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.2148891945183000", "-86.326279933702011"]}, "charges": 499331, "payments": 143904, "type": "source", "leakage": 0}, "1316939689": {"geometry": {"type": "point", "coordinates": ["36.7003228094894000", "-85.156094455584622"]}, "type": "comp", "npi": "1316939689", "name": "CLINTON COUNTY HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1801888060": {"npi": "1801888060", "name": "VINITA ANAND", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1532798798302000", "-86.801067891656004"]}, "charges": 825382, "payments": 190542, "type": "source", "leakage": 0}, "1851642540": {"geometry": {"type": "point", "coordinates": ["36.2778670000000000", "-87.653801999999928"]}, "type": "comp", "npi": "1851642540", "name": "HOUSTON COUNTY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1437188216": {"geometry": {"type": "point", "coordinates": ["35.0683070250544000", "-89.932191945333514"]}, "type": "comp", "npi": "1437188216", "name": "DELTA MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1174584403": {"npi": "1174584403", "name": "HARRISON WARNER", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 160951, "payments": 61228, "type": "source", "leakage": 0}, "1558311779": {"geometry": {"type": "point", "coordinates": ["34.7193379708025000", "-82.250519189653289"]}, "type": "comp", "npi": "1558311779", "name": "GHS HILLCREST MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1386691368": {"npi": "1386691368", "name": "JASON HENRY", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 51530, "payments": 5512, "type": "source", "leakage": 0}, "1437136827": {"npi": "1437136827", "name": "GREGORY WEAVER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 464409, "payments": 111287, "type": "source", "leakage": 0}, "1609917129": {"npi": "1609917129", "name": "BENJAMIN TOURKOW", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 771341, "payments": 139740, "type": "source", "leakage": 0}, "1578677274": {"npi": "1578677274", "name": "RANJAN CHANDA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1270005040072000", "-86.850212418303997"]}, "charges": 748278, "payments": 197787, "type": "source", "leakage": 0}, "1871547703": {"geometry": {"type": "point", "coordinates": ["36.8762890000000000", "-86.456499000000008"]}, "type": "comp", "npi": "1871547703", "name": "TRISTAR GREENVIEW REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1710943519": {"npi": "1710943519", "name": "JOHN BOSKIND", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 117445, "payments": 28568, "type": "source", "leakage": 1}, "1295739548": {"geometry": {"type": "point", "coordinates": ["38.6373810736686000", "-88.949000310799676"]}, "type": "comp", "npi": "1295739548", "name": "SALEM TOWNSHIP HOSPITAL", "classification": "General Acute Care Hospital"}, "1619939071": {"geometry": {"type": "point", "coordinates": ["35.7550242582437000", "-83.956220382026700"]}, "type": "comp", "npi": "1619939071", "name": "BLOUNT MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1801990825": {"geometry": {"type": "point", "coordinates": ["36.8073152997033000", "-89.970171029591896"]}, "type": "comp", "npi": "1801990825", "name": "SOUTHEAST HEALTH CENTER OF STODDARD COUNTY, LLC", "classification": "General Acute Care Hospital"}, "1881626075": {"geometry": {"type": "point", "coordinates": ["35.5783427650906000", "-82.548880842237523"]}, "type": "comp", "npi": "1881626075", "name": "MISSION HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1477542942": {"npi": "1477542942", "name": "KEVIN BURNER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.8762890000000000", "-86.456499000000008"]}, "charges": 1247940, "payments": 300401, "type": "source", "leakage": 0}, "1760436216": {"geometry": {"type": "point", "coordinates": ["43.6523445053221000", "-70.275051379102550"]}, "type": "comp", "npi": "1760436216", "name": "MAINE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1093937872": {"npi": "1093937872", "name": "STACY BROWN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 39552, "payments": 15514, "type": "source", "leakage": 1}, "1639151301": {"geometry": {"type": "point", "coordinates": ["36.3917845341965000", "-84.095985726760134"]}, "type": "comp", "npi": "1639151301", "name": "TENNOVA HEALTHCARE-LAFOLLETTE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1467406132": {"geometry": {"type": "point", "coordinates": ["33.8780596625760000", "-84.013471162897133"]}, "type": "comp", "npi": "1467406132", "name": "EASTSIDE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1942314075": {"npi": "1942314075", "name": "HARDIE SORRELS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2116150759374000", "-86.307733353602984"]}, "charges": 262940, "payments": 84095, "type": "source", "leakage": 0}, "1659313906": {"geometry": {"type": "point", "coordinates": ["33.4627905731829000", "-86.777233547851907"]}, "type": "comp", "npi": "1659313906", "name": "BROOKWOOD MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1902107105": {"npi": "1902107105", "name": "CARA NASH", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.0784249703186000", "-86.725986303307522"]}, "charges": 83769, "payments": 30403, "type": "source", "leakage": 1}, "1275539587": {"geometry": {"type": "point", "coordinates": ["38.2493005037389000", "-85.750701989595200"]}, "type": "comp", "npi": "1275539587", "name": "JEWISH HOSPITAL & ST. MARY'S HEALTHCARE", "classification": "General Acute Care Hospital"}, "1205860335": {"geometry": {"type": "point", "coordinates": ["39.1615112234380000", "-86.539797069291126"]}, "type": "comp", "npi": "1205860335", "name": "IU HEALTH BLOOMINGTON", "classification": "General Acute Care Hospital"}, "1518911338": {"geometry": {"type": "point", "coordinates": ["38.0320306595757000", "-84.507986008488885"]}, "type": "comp", "npi": "1518911338", "name": "UNIVERSITY OF KENTUCKY HOSPITAL", "classification": "General Acute Care Hospital"}, "1245215649": {"npi": "1245215649", "name": "JAMES HOLBROOK", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 374563, "payments": 86870, "type": "source", "leakage": 0}, "1083612881": {"geometry": {"type": "point", "coordinates": ["40.9042530082316000", "-73.967283029946415"]}, "type": "comp", "npi": "1083612881", "name": "ENGLEWOOD HOSPITAL AND MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1730134123": {"geometry": {"type": "point", "coordinates": ["34.0045464901791000", "-86.004030885015780"]}, "type": "comp", "npi": "1730134123", "name": "RIVERVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1922276153": {"npi": "1922276153", "name": "JENNIFER TING", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["27.9341508031141000", "-82.286078594842138"]}, "charges": 52475, "payments": 13937, "type": "source", "leakage": 1}, "1902099443": {"npi": "1902099443", "name": "MILES FOLTERMANN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 46970, "payments": 8636, "type": "source", "leakage": 0}, "1760498588": {"geometry": {"type": "point", "coordinates": ["33.6025376361369000", "-83.848122699372610"]}, "type": "comp", "npi": "1760498588", "name": "NEWTON MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1225070337": {"npi": "1225070337", "name": "KIMBERLY CARVER", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 90945, "payments": 36403, "type": "source", "leakage": 0}, "1477595593": {"npi": "1477595593", "name": "RACHEL MCHENRY", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 102197, "payments": 28740, "type": "source", "leakage": 0}, "1912341439": {"geometry": {"type": "point", "coordinates": ["34.9233897377487000", "-89.794939556057301"]}, "type": "comp", "npi": "1912341439", "name": "METHODIST HEALTHCARE - OLIVE BRANCH HOSPITAL", "classification": "General Acute Care Hospital"}, "1396909255": {"npi": "1396909255", "name": "STEVEN SHABA", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1118244, "payments": 155938, "type": "source", "leakage": 0}, "1992840813": {"npi": "1992840813", "name": "CHRISTOPHER TALEGHANI", "classification": "Neurological Surgery", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 866836, "payments": 150080, "type": "source", "leakage": 0}, "1154435824": {"geometry": {"type": "point", "coordinates": ["33.5333528510213000", "-86.704690192310551"]}, "type": "comp", "npi": "1154435824", "name": "UAB HOSPITAL", "classification": "General Acute Care Hospital"}, "1588679898": {"geometry": {"type": "point", "coordinates": ["36.5754320224260000", "-84.128053957971289"]}, "type": "comp", "npi": "1588679898", "name": "JELLICO COMMUNITY HOSPITALS", "classification": "General Acute Care Hospital"}, "1417227398": {"geometry": {"type": "point", "coordinates": ["38.7474276736429000", "-82.993146265431321"]}, "type": "comp", "npi": "1417227398", "name": "KING'S DAUGHTERS MEDICAL CENTER - OHIO", "classification": "General Acute Care Hospital"}, "1407890593": {"npi": "1407890593", "name": "FAIZA REHMAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.0342066851320000", "-86.742413873456613"]}, "charges": 182814, "payments": 118070, "type": "source", "leakage": 0}, "1548216880": {"geometry": {"type": "point", "coordinates": ["34.2061156549189000", "-77.924167571318847"]}, "type": "comp", "npi": "1548216880", "name": "NEW HANOVER REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1285843896": {"npi": "1285843896", "name": "JONATHAN CORNELIUS", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 289173, "payments": 82880, "type": "source", "leakage": 0}, "1891973939": {"geometry": {"type": "point", "coordinates": ["36.8920939999999000", "-82.045618999999931"]}, "type": "comp", "npi": "1891973939", "name": "RUSSELL COUNTY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1972581775": {"npi": "1972581775", "name": "MARIA FREXES-STEED", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1532798798302000", "-86.801067891656004"]}, "charges": 215610, "payments": 61068, "type": "source", "leakage": 0}, "1932316429": {"npi": "1932316429", "name": "LUTHER ADAIR", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 633436, "payments": 115751, "type": "source", "leakage": 0}, "1780684431": {"geometry": {"type": "point", "coordinates": ["34.7486725974344000", "-92.341085912328381"]}, "type": "comp", "npi": "1780684431", "name": "ST. VINCENT HEALTH SYSTEM", "classification": "General Acute Care Hospital"}, "1386683316": {"geometry": {"type": "point", "coordinates": ["41.6347830257652000", "-84.995688221636485"]}, "type": "comp", "npi": "1386683316", "name": "CAMERON MEMORIAL COMMUNITY HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1568498665": {"npi": "1568498665", "name": "TANCY BRIDGES", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1045003865095000", "-86.810722896718133"]}, "charges": 235251, "payments": 69327, "type": "source", "leakage": 0}, "1619180403": {"npi": "1619180403", "name": "TODD DORFMAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["35.9111600000001000", "-79.061066999999980"]}, "charges": 708241, "payments": 252663, "type": "source", "leakage": 0}, "1255428736": {"geometry": {"type": "point", "coordinates": ["35.0398832198005000", "-85.260689385833032"]}, "type": "comp", "npi": "1255428736", "name": "MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1144266024": {"geometry": {"type": "point", "coordinates": ["39.7893589102863000", "-86.165640532224813"]}, "type": "comp", "npi": "1144266024", "name": "INDIANA UNIVERSITY HEALTH", "classification": "General Acute Care Hospital"}, "1750353041": {"geometry": {"type": "point", "coordinates": ["38.3117778141457000", "-88.933645631079031"]}, "type": "comp", "npi": "1750353041", "name": "CROSSROADS COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1942294814": {"geometry": {"type": "point", "coordinates": ["35.9571472598962000", "-83.936229859241820"]}, "type": "comp", "npi": "1942294814", "name": "FORT SANDERS REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1306897335": {"geometry": {"type": "point", "coordinates": ["41.0393986787517000", "-85.243386367026062"]}, "type": "comp", "npi": "1306897335", "name": "LUTHERAN HOSPITAL OF INDIANA", "classification": "General Acute Care Hospital"}, "1215152236": {"npi": "1215152236", "name": "TIF SIRAGUSA", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 776474, "payments": 218052, "type": "source", "leakage": 1}, "1801885819": {"npi": "1801885819", "name": "SANAT DIXIT", "classification": "Neurological Surgery", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 114591, "payments": 26685, "type": "source", "leakage": 0}, "1396766267": {"geometry": {"type": "point", "coordinates": ["34.1625124851773000", "-85.657046053870687"]}, "type": "comp", "npi": "1396766267", "name": "CHEROKEE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1568415164": {"npi": "1568415164", "name": "MOSES SWAUNCY", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.0202540000000000", "-86.555702999999994"]}, "charges": 101018, "payments": 42742, "type": "source", "leakage": 0}, "1417946203": {"npi": "1417946203", "name": "ROY WALLACE", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1547595025715000", "-86.809032763850240"]}, "charges": 10909430, "payments": 3280972, "type": "source", "leakage": 0}, "1255370755": {"npi": "1255370755", "name": "DAVID WATTS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 440900, "payments": 66822, "type": "source", "leakage": 0}, "1326149907": {"npi": "1326149907", "name": "WAYNE LENNINGTON", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 3473679, "payments": 1359400, "type": "source", "leakage": 0}, "1487665634": {"npi": "1487665634", "name": "CURRY DUDLEY", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2015770894347000", "-86.516870168209408"]}, "charges": 621910, "payments": 246597, "type": "source", "leakage": 0}, "1306914882": {"geometry": {"type": "point", "coordinates": ["34.2206977450287000", "-86.159015664511998"]}, "type": "comp", "npi": "1306914882", "name": "MARSHALL MEDICAL CENTER SOUTH", "classification": "General Acute Care Hospital"}, "1174582050": {"geometry": {"type": "point", "coordinates": ["29.7062990508617000", "-95.396430698945835"]}, "type": "comp", "npi": "1174582050", "name": "UNIVERSITY OF TEXAS M. D. ANDERSON CANCER CENTER", "classification": "General Acute Care Hospital"}, "1740268846": {"geometry": {"type": "point", "coordinates": ["41.5643290276024000", "-85.829814179394049"]}, "type": "comp", "npi": "1740268846", "name": "GOSHEN GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1447234141": {"npi": "1447234141", "name": "STUART CAPLAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 316181, "payments": 77052, "type": "source", "leakage": 0}, "1730264128": {"geometry": {"type": "point", "coordinates": ["37.0740333807989000", "-88.626246226892292"]}, "type": "comp", "npi": "1730264128", "name": "BAPTIST HEALTH PADUCAH", "classification": "General Acute Care Hospital"}, "1578591756": {"geometry": {"type": "point", "coordinates": ["35.4642893679545000", "-86.786425710463064"]}, "type": "comp", "npi": "1578591756", "name": "MARSHALL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1689645707": {"npi": "1689645707", "name": "JOHN BORMANN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 521185, "payments": 103778, "type": "source", "leakage": 0}, "1487635777": {"npi": "1487635777", "name": "JOHN MAJOR", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 147796, "payments": 74708, "type": "source", "leakage": 0}, "1043219165": {"npi": "1043219165", "name": "ROBERT HERRING", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.0791704220936000", "-86.718582510212045"]}, "charges": 551652, "payments": 152857, "type": "source", "leakage": 0}, "1578610457": {"npi": "1578610457", "name": "RICHARD LEBOW", "classification": "Neurological Surgery", "geometry": {"type": "point", "coordinates": ["36.1559734759604000", "-86.803461024702187"]}, "charges": 355647, "payments": 85375, "type": "source", "leakage": 0}, "1568576825": {"npi": "1568576825", "name": "NANCYE HALEY", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "charges": 91934, "payments": 8219, "type": "source", "leakage": 0}, "1629024914": {"geometry": {"type": "point", "coordinates": ["35.1649480000000000", "-86.572942999999952"]}, "type": "comp", "npi": "1629024914", "name": "LINCOLN MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1235116518": {"npi": "1235116518", "name": "KEITH LOVEN", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.2989477314755000", "-86.705668239443881"]}, "charges": 404168, "payments": 269798, "type": "source", "leakage": 0}, "1215995972": {"npi": "1215995972", "name": "ROGER MCKINNEY", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 268240, "payments": 109833, "type": "source", "leakage": 0}, "1225032881": {"geometry": {"type": "point", "coordinates": ["38.6735209957641000", "-87.533084600881637"]}, "type": "comp", "npi": "1225032881", "name": "GOOD SAMARITAN HOSPITAL", "classification": "General Acute Care Hospital"}, "1063673622": {"npi": "1063673622", "name": "KATRINA GREEN", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "charges": 730173, "payments": 82181, "type": "source", "leakage": 0}, "1073557831": {"npi": "1073557831", "name": "COLIN MEYEROWITZ", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 275389, "payments": 64859, "type": "source", "leakage": 0}, "1962499582": {"npi": "1962499582", "name": "DAVID HEUSINKVELD", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1293727846093000", "-86.840402090504099"]}, "charges": 560668, "payments": 208524, "type": "source", "leakage": 0}, "1750394060": {"npi": "1750394060", "name": "RALF HABERMANN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 276504, "payments": 72906, "type": "source", "leakage": 0}, "1790906295": {"npi": "1790906295", "name": "BARBARA CORLEW", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 56616, "payments": 23517, "type": "source", "leakage": 0}, "1053408567": {"npi": "1053408567", "name": "JEAN LESSLY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.0484202187628000", "-86.852591691895341"]}, "charges": 219269, "payments": 92900, "type": "source", "leakage": 0}, "1487788188": {"npi": "1487788188", "name": "ANDREW ROACH", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2197011952760000", "-86.331611946462445"]}, "charges": 270206, "payments": 19387, "type": "source", "leakage": 0}, "1417952581": {"npi": "1417952581", "name": "TOD BUSHMAN", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 248119, "payments": 142016, "type": "source", "leakage": 0}, "1972718104": {"npi": "1972718104", "name": "BRETT INGLIS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1543426068573000", "-86.801538916561142"]}, "charges": 87409, "payments": 22413, "type": "source", "leakage": 0}, "1003897380": {"npi": "1003897380", "name": "ROBERT GASTON", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 316721, "payments": 162556, "type": "source", "leakage": 0}, "1245259878": {"geometry": {"type": "point", "coordinates": ["40.8069365840741000", "-85.815149313144360"]}, "type": "comp", "npi": "1245259878", "name": "PARKVIEW WABASH HOSPITAL", "classification": "General Acute Care Hospital"}, "1609860659": {"geometry": {"type": "point", "coordinates": ["35.8207700000000000", "-84.225794000000008"]}, "type": "comp", "npi": "1609860659", "name": "FORT LOUDOUN MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1548259864": {"npi": "1548259864", "name": "WALTER DUBE", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 1222223, "payments": 328871, "type": "source", "leakage": 0}, "1124466107": {"npi": "1124466107", "name": "CANDIUS LOGGINS", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.0801728211349000", "-86.124068307802048"]}, "charges": 5544, "payments": 2749, "type": "source", "leakage": 1}, "1275691073": {"npi": "1275691073", "name": "STEVEN KINNEY", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2178833954482000", "-86.599097121108343"]}, "charges": 139073, "payments": 63080, "type": "source", "leakage": 0}, "1609014489": {"npi": "1609014489", "name": "WILLIAM BACON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 410422, "payments": 89436, "type": "source", "leakage": 0}, "1952473431": {"npi": "1952473431", "name": "PHILLIP BEAULIEU", "classification": "Pain Medicine", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 314985, "payments": 60747, "type": "source", "leakage": 0}, "1043293608": {"geometry": {"type": "point", "coordinates": ["36.9964517569091000", "-86.430071504656155"]}, "type": "comp", "npi": "1043293608", "name": "THE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1003811290": {"geometry": {"type": "point", "coordinates": ["34.0130578623347000", "-81.014061498451298"]}, "type": "comp", "npi": "1003811290", "name": "PROVIDENCE HOSPITAL, PROVIDENCE NORTHEAST, PROVIDENCE SURGERY CENTER", "classification": "General Acute Care Hospital"}, "1811987084": {"geometry": {"type": "point", "coordinates": ["35.5170660000001000", "-85.020713999999998"]}, "type": "comp", "npi": "1811987084", "name": "RHEA COUNTY HOSPITAL", "classification": "General Acute Care Hospital"}, "1396789269": {"npi": "1396789269", "name": "JEFFREY HAZLEWOOD", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 86891, "payments": 44852, "type": "source", "leakage": 0}, "1720032345": {"geometry": {"type": "point", "coordinates": ["36.0774819356395000", "-86.724784170550166"]}, "type": "comp", "npi": "1720032345", "name": "TRISTAR SOUTHERN HILLS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1154386431": {"geometry": {"type": "point", "coordinates": ["32.6381301998177000", "-85.404079130333741"]}, "type": "comp", "npi": "1154386431", "name": "EAST ALABAMA MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1417919218": {"npi": "1417919218", "name": "RODERICK BAHNER", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 345152, "payments": 41561, "type": "source", "leakage": 0}, "1306950514": {"npi": "1306950514", "name": "KATHLEEN KEARNEY-GRAY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 271059, "payments": 67670, "type": "source", "leakage": 0}, "1851688865": {"npi": "1851688865", "name": "DEANNE THREAPLETON", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 1004881, "payments": 273824, "type": "source", "leakage": 0}, "1184695389": {"geometry": {"type": "point", "coordinates": ["39.0586930000000000", "-87.175918000000024"]}, "type": "comp", "npi": "1184695389", "name": "GREENE COUNTY GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1659347920": {"geometry": {"type": "point", "coordinates": ["36.0555574393289000", "-88.110792611220532"]}, "type": "comp", "npi": "1659347920", "name": "CAMDEN GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1952392797": {"npi": "1952392797", "name": "VICTOR BYRD", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1528848957800000", "-86.804621702545390"]}, "charges": 1136891, "payments": 581075, "type": "source", "leakage": 0}, "1871596403": {"geometry": {"type": "point", "coordinates": ["35.9464359048682000", "-85.025124855985837"]}, "type": "comp", "npi": "1871596403", "name": "CUMBERLAND MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1003862566": {"npi": "1003862566", "name": "MARC SOBLE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 863416, "payments": 129366, "type": "source", "leakage": 0}, "1801894142": {"npi": "1801894142", "name": "MURRAY ARONS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 339006, "payments": 221857, "type": "source", "leakage": 0}, "1962445726": {"npi": "1962445726", "name": "DAVID LUCK", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2120292143815000", "-86.291833481866249"]}, "charges": 180637, "payments": 70753, "type": "source", "leakage": 0}, "1063457315": {"npi": "1063457315", "name": "NEIL PRICE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1543426068573000", "-86.801538916561142"]}, "charges": 342626, "payments": 98291, "type": "source", "leakage": 0}, "1467545541": {"npi": "1467545541", "name": "KENNETH ANDERSON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2040618950438000", "-86.282365525114002"]}, "charges": 273639, "payments": 96934, "type": "source", "leakage": 0}, "1609810274": {"npi": "1609810274", "name": "DEBRA HOLP", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "charges": 689708, "payments": 63656, "type": "source", "leakage": 0}, "1821095738": {"npi": "1821095738", "name": "SUSHIL PATIL", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 346323, "payments": 77611, "type": "source", "leakage": 0}, "1508805862": {"npi": "1508805862", "name": "MARCUS SOLOMON", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1533238557700000", "-86.800978658923810"]}, "charges": 1319775, "payments": 383197, "type": "source", "leakage": 0}, "1609826783": {"geometry": {"type": "point", "coordinates": ["40.1647882969405000", "-84.964936410538812"]}, "type": "comp", "npi": "1609826783", "name": "ST. VINCENT RANDOLPH HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1952340994": {"geometry": {"type": "point", "coordinates": ["33.9564800000001000", "-83.986210999999969"]}, "type": "comp", "npi": "1952340994", "name": "GWINNETT MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1245238567": {"npi": "1245238567", "name": "CHARLES MITCHELL", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2180992327347000", "-86.326230586618550"]}, "charges": 93715, "payments": 57830, "type": "source", "leakage": 0}, "1861494072": {"geometry": {"type": "point", "coordinates": ["41.3286882152822000", "-89.192469351743256"]}, "type": "comp", "npi": "1861494072", "name": "ST. MARGARET'S HOSPITAL", "classification": "General Acute Care Hospital"}, "1831107895": {"geometry": {"type": "point", "coordinates": ["38.6774403005333000", "-90.467136341512642"]}, "type": "comp", "npi": "1831107895", "name": "BARNES JEWISH WEST COUNTY HOSPITAL", "classification": "General Acute Care Hospital"}, "1407830102": {"npi": "1407830102", "name": "MICHELLE LUSCHEN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 476027, "payments": 103675, "type": "source", "leakage": 0}, "1306993282": {"npi": "1306993282", "name": "JASON SHIPMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1496240000000000", "-86.789406999999983"]}, "charges": 451477, "payments": 106514, "type": "source", "leakage": 0}, "1528051448": {"npi": "1528051448", "name": "SUSAN CARPENTER", "classification": "Psychologist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 52835, "payments": 19758, "type": "source", "leakage": 1}, "1811044787": {"npi": "1811044787", "name": "KEVIN FINNEGAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 339058, "payments": 70702, "type": "source", "leakage": 0}, "1962572396": {"geometry": {"type": "point", "coordinates": ["38.6339695140283000", "-90.310211585106117"]}, "type": "comp", "npi": "1962572396", "name": "SSM HEALTH ST. MARY'S HOSPITAL - ST. LOUIS", "classification": "General Acute Care Hospital"}, "1427055326": {"npi": "1427055326", "name": "DONALD LAZAS", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 427019, "payments": 84447, "type": "source", "leakage": 0}, "1538244918": {"geometry": {"type": "point", "coordinates": ["38.0186388823081000", "-84.513982168918645"]}, "type": "comp", "npi": "1538244918", "name": "BAPTIST HEALTH LEXINGTON", "classification": "General Acute Care Hospital"}, "1194796391": {"npi": "1194796391", "name": "RICHARD SIBLEY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 999699, "payments": 167227, "type": "source", "leakage": 0}, "1457396079": {"geometry": {"type": "point", "coordinates": ["33.9072374989910000", "-84.352700049455123"]}, "type": "comp", "npi": "1457396079", "name": "NORTHSIDE HOSPITAL", "classification": "General Acute Care Hospital"}, "1689617433": {"npi": "1689617433", "name": "JAMES MASSIE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 555095, "payments": 127182, "type": "source", "leakage": 0}, "1487840872": {"npi": "1487840872", "name": "EDWARD YI", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 51058, "payments": 38681, "type": "source", "leakage": 0}, "1144203563": {"geometry": {"type": "point", "coordinates": ["33.7694969098054000", "-84.385160190022205"]}, "type": "comp", "npi": "1144203563", "name": "EMORY UNIVERSITY DBA EMORY CRAWFORD LONG HOSPITAL", "classification": "General Acute Care Hospital"}, "1134163694": {"npi": "1134163694", "name": "GRADY BRYANT", "classification": "Otolaryngology", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 220694, "payments": 78119, "type": "source", "leakage": 0}, "1568551455": {"geometry": {"type": "point", "coordinates": ["36.1662160434171000", "-86.805640731273172"]}, "type": "comp", "npi": "1568551455", "name": "NASHVILLE GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1508934217": {"geometry": {"type": "point", "coordinates": ["34.3630232024300000", "-86.421796399046855"]}, "type": "comp", "npi": "1508934217", "name": "MARSHALL MEDICAL CENTER NORTH", "classification": "General Acute Care Hospital"}, "1871534297": {"geometry": {"type": "point", "coordinates": ["37.1264800000001000", "-81.803480999999977"]}, "type": "comp", "npi": "1871534297", "name": "CLINCH VALLEY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1104832450": {"npi": "1104832450", "name": "AARON ESBENSHADE", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1770205763975000", "-86.616402146315849"]}, "charges": 224605, "payments": 110720, "type": "source", "leakage": 0}, "1427023605": {"npi": "1427023605", "name": "KATHERINE JONES", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1983394723921000", "-86.519242187875676"]}, "charges": 164780, "payments": 52992, "type": "source", "leakage": 0}, "1669563920": {"npi": "1669563920", "name": "DAMITA BRYANT", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 1605604, "payments": 403643, "type": "source", "leakage": 0}, "1194779520": {"geometry": {"type": "point", "coordinates": ["35.0916369065920000", "-89.802360783017050"]}, "type": "comp", "npi": "1194779520", "name": "BAPTIST MEMORIAL REGIONAL REHABILITATION SERVICES INC", "classification": "General Acute Care Hospital"}, "1689696148": {"geometry": {"type": "point", "coordinates": ["40.8174852127834000", "-84.911935034393849"]}, "type": "comp", "npi": "1689696148", "name": "ADAMS COUNTY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1275788762": {"geometry": {"type": "point", "coordinates": ["33.6791175285477000", "-84.005675995605387"]}, "type": "comp", "npi": "1275788762", "name": "ROCKDALE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1629025689": {"npi": "1629025689", "name": "NIXON CANTRELL", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.2178645096853000", "-86.598287731269622"]}, "charges": 378695, "payments": 160046, "type": "source", "leakage": 1}, "1366407603": {"geometry": {"type": "point", "coordinates": ["41.2058820000001000", "-85.108973999999932"]}, "type": "comp", "npi": "1366407603", "name": "PARKVIEW REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1457330649": {"npi": "1457330649", "name": "MARTHE-SOPHIE LAGUEUX", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2189180806027000", "-86.515291980030966"]}, "charges": 225419, "payments": 64966, "type": "source", "leakage": 0}, "1245313741": {"npi": "1245313741", "name": "BRIAN LONG", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 411754, "payments": 137382, "type": "source", "leakage": 0}, "1801878616": {"npi": "1801878616", "name": "BENJAMIN CHEN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 417161, "payments": 72878, "type": "source", "leakage": 0}, "1639264575": {"geometry": {"type": "point", "coordinates": ["35.0479621940218000", "-85.291003655292030"]}, "type": "comp", "npi": "1639264575", "name": "ERLANGER MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1710901178": {"geometry": {"type": "point", "coordinates": ["34.4800520000001000", "-85.771988999999962"]}, "type": "comp", "npi": "1710901178", "name": "DEKALB REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1790715381": {"geometry": {"type": "point", "coordinates": ["34.0002567598896000", "-84.165846629176954"]}, "type": "comp", "npi": "1790715381", "name": "GWINNETT MEDICAL CENTER - DULUTH", "classification": "General Acute Care Hospital"}, "1679574180": {"npi": "1679574180", "name": "ANN BEADLE", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 159553, "payments": 42748, "type": "source", "leakage": 0}, "1639500739": {"npi": "1639500739", "name": "KEEGAN SOELKE", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.1519198093724000", "-86.849951272420753"]}, "charges": 9103, "payments": 4037, "type": "source", "leakage": 0}, "1851346720": {"geometry": {"type": "point", "coordinates": ["38.4703652799306000", "-82.635877568131676"]}, "type": "comp", "npi": "1851346720", "name": "KINGS DAUGHTERS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1538104526": {"npi": "1538104526", "name": "ALLIE HENDERSON-FITTS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 225639, "payments": 115089, "type": "source", "leakage": 0}, "1215923875": {"npi": "1215923875", "name": "BRUCE GOODMAN", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 19730, "payments": 9368, "type": "source", "leakage": 1}, "1124058615": {"geometry": {"type": "point", "coordinates": ["36.5838669133962000", "-82.255525188599222"]}, "type": "comp", "npi": "1124058615", "name": "BRISTOL REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1316921166": {"npi": "1316921166", "name": "DAVID ROWE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 309793, "payments": 71508, "type": "source", "leakage": 0}, "1972504405": {"npi": "1972504405", "name": "STEPHEN NEELY", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 269627, "payments": 75130, "type": "source", "leakage": 0}, "1639113509": {"npi": "1639113509", "name": "WALTER WOJCICKI", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 304302, "payments": 79229, "type": "source", "leakage": 0}, "1447221056": {"geometry": {"type": "point", "coordinates": ["34.7214911286921000", "-86.580019623015815"]}, "type": "comp", "npi": "1447221056", "name": "HUNTSVILLE HOSPITAL", "classification": "General Acute Care Hospital"}, "1619931466": {"geometry": {"type": "point", "coordinates": ["37.7100072629250000", "-85.874802973642730"]}, "type": "comp", "npi": "1619931466", "name": "HARDIN MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1861469017": {"npi": "1861469017", "name": "CHARLES KAELIN", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1748090000000000", "-86.486170000000016"]}, "charges": 516226, "payments": 102937, "type": "source", "leakage": 0}, "1205849502": {"npi": "1205849502", "name": "ELIZABETH MITCHELL", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.2196733500916000", "-86.331985547787426"]}, "charges": 58645, "payments": 23310, "type": "source", "leakage": 0}, "1700831724": {"geometry": {"type": "point", "coordinates": ["36.7888948382121000", "-90.442503291598854"]}, "type": "comp", "npi": "1700831724", "name": "POPLAR BLUFF REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1639107873": {"npi": "1639107873", "name": "CORI MCKEAN", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 184062, "payments": 22927, "type": "source", "leakage": 1}, "1437260296": {"npi": "1437260296", "name": "GEOFFREY CHIDSEY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1293727846093000", "-86.840402090504099"]}, "charges": 374057, "payments": 67279, "type": "source", "leakage": 0}, "1679553994": {"geometry": {"type": "point", "coordinates": ["31.8722436970571000", "-89.728620061798125"]}, "type": "comp", "npi": "1679553994", "name": "MAGEE GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1891836920": {"npi": "1891836920", "name": "MITUL PATEL", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 290389, "payments": 53057, "type": "source", "leakage": 1}, "1861554438": {"geometry": {"type": "point", "coordinates": ["38.2490834330885000", "-85.744886163965191"]}, "type": "comp", "npi": "1861554438", "name": "DBA UNIVERSITY OF LOUSIVILLE HOSPITAL", "classification": "General Acute Care Hospital"}, "1609838499": {"npi": "1609838499", "name": "LESLIE LENNING", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 469437, "payments": 58103, "type": "source", "leakage": 0}, "1881673093": {"npi": "1881673093", "name": "BERNARD PARE'", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2189180806027000", "-86.515291980030966"]}, "charges": 206010, "payments": 60444, "type": "source", "leakage": 0}, "1912989989": {"npi": "1912989989", "name": "MODUPE KEHINDE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2196552526466000", "-86.332133926657420"]}, "charges": 446559, "payments": 219623, "type": "source", "leakage": 0}, "1811927544": {"geometry": {"type": "point", "coordinates": ["35.3257490000000000", "-87.755623000000014"]}, "type": "comp", "npi": "1811927544", "name": "WAYNE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1306847009": {"npi": "1306847009", "name": "WILLIAM SCHENK", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.2150103056706000", "-86.326638609037417"]}, "charges": 1411440, "payments": 278847, "type": "source", "leakage": 0}, "1699950634": {"npi": "1699950634", "name": "SUSAN SHERRILL", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 50704, "payments": 5905, "type": "source", "leakage": 1}, "1689616294": {"npi": "1689616294", "name": "KARTIK BOORGU", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 355729, "payments": 83780, "type": "source", "leakage": 0}, "1578510418": {"npi": "1578510418", "name": "JOHN DAVIDSON", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 290745, "payments": 34490, "type": "source", "leakage": 0}, "1245223148": {"npi": "1245223148", "name": "STEPHEN TENCH", "classification": "Psychologist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 31815, "payments": 12125, "type": "source", "leakage": 1}, "1275678997": {"npi": "1275678997", "name": "DANILO FLORES", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.2164564872094000", "-86.584385731778909"]}, "charges": 169640, "payments": 64431, "type": "source", "leakage": 1}, "1902878994": {"geometry": {"type": "point", "coordinates": ["40.4480954711064000", "-86.127088223806268"]}, "type": "comp", "npi": "1902878994", "name": "COMMUNITY HOWARD REGIONAL HEALTH, INC", "classification": "General Acute Care Hospital"}, "1235299975": {"npi": "1235299975", "name": "JOHN LACUNZA", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 606772, "payments": 106218, "type": "source", "leakage": 0}, "1508804337": {"npi": "1508804337", "name": "VINEET SHARMA", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1623809, "payments": 239025, "type": "source", "leakage": 0}, "1124111257": {"npi": "1124111257", "name": "JOEY PRICE", "classification": "Dermatology", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 1084189, "payments": 362767, "type": "source", "leakage": 0}, "1851362263": {"geometry": {"type": "point", "coordinates": ["34.9309243229530000", "-84.376061587461621"]}, "type": "comp", "npi": "1851362263", "name": "FANNIN REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1730113440": {"npi": "1730113440", "name": "JAMES YORK", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.0402931271555000", "-86.646123716319636"]}, "charges": 1634465, "payments": 419868, "type": "source", "leakage": 0}, "1083759633": {"geometry": {"type": "point", "coordinates": ["37.8536996505408000", "-87.581184839601690"]}, "type": "comp", "npi": "1083759633", "name": "METHODIST HOSPITAL", "classification": "General Acute Care Hospital"}, "1689761942": {"geometry": {"type": "point", "coordinates": ["37.3662587106642000", "-85.339495604030091"]}, "type": "comp", "npi": "1689761942", "name": "TAYLOR COUNTY HOSPITAL DISTRICT HEALTH FACILITIES CORPORATION", "classification": "General Acute Care Hospital"}, "1306827605": {"npi": "1306827605", "name": "MINDI HAMBY", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 165200, "payments": 88265, "type": "source", "leakage": 0}, "1043232879": {"npi": "1043232879", "name": "JONATHAN GORDON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 484997, "payments": 75679, "type": "source", "leakage": 0}, "1376768218": {"npi": "1376768218", "name": "MELISSA CHAPMAN", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 27312, "payments": 3229, "type": "source", "leakage": 1}, "1790708097": {"npi": "1790708097", "name": "JOHN FISK", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 112153, "payments": 46675, "type": "source", "leakage": 0}, "1588777445": {"npi": "1588777445", "name": "JOHN NWOFIA", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["35.9592549089932000", "-86.818762445751545"]}, "charges": 774233, "payments": 291392, "type": "source", "leakage": 0}, "1043240682": {"geometry": {"type": "point", "coordinates": ["34.7489580000000000", "-92.353649999999959"]}, "type": "comp", "npi": "1043240682", "name": "BAPTIST HEALTH MEDICAL CENTER-LITTLE ROCK", "classification": "General Acute Care Hospital"}, "1144211301": {"geometry": {"type": "point", "coordinates": ["36.0895390000000000", "-80.265910000000019"]}, "type": "comp", "npi": "1144211301", "name": "WAKE FOREST BAPTIST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1669463568": {"npi": "1669463568", "name": "CURTIS HAGENAU", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.1528848957800000", "-86.804621702545390"]}, "charges": 147563, "payments": 68468, "type": "source", "leakage": 0}, "1588640692": {"geometry": {"type": "point", "coordinates": ["33.7916349468830000", "-84.320925282206602"]}, "type": "comp", "npi": "1588640692", "name": "EMORY UNIVERSITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1053361642": {"geometry": {"type": "point", "coordinates": ["37.9830044613804000", "-87.570705996103214"]}, "type": "comp", "npi": "1053361642", "name": "DEACONESS HOSPITAL, INC", "classification": "General Acute Care Hospital"}, "1225050396": {"geometry": {"type": "point", "coordinates": ["34.2451278099524000", "-84.492660388003515"]}, "type": "comp", "npi": "1225050396", "name": "NORTHSIDE HOSPITAL CHEROKEE", "classification": "General Acute Care Hospital"}, "1972540557": {"npi": "1972540557", "name": "KEITH WATSON", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 512867, "payments": 158274, "type": "source", "leakage": 0}, "1851554836": {"npi": "1851554836", "name": "AMY BONO", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 188347, "payments": 81197, "type": "source", "leakage": 0}, "1447253638": {"npi": "1447253638", "name": "BRIAN BEATTY", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 5434, "payments": 2560, "type": "source", "leakage": 1}, "1215971858": {"npi": "1215971858", "name": "JAMES PETERSON", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "charges": 295137, "payments": 22736, "type": "source", "leakage": 0}, "1023253549": {"npi": "1023253549", "name": "RHETT BRUNER", "classification": "Chiropractor", "geometry": {"type": "point", "coordinates": ["36.1182725989061000", "-86.629186817408495"]}, "charges": 54400, "payments": 26367, "type": "source", "leakage": 0}, "1073504981": {"geometry": {"type": "point", "coordinates": ["36.6086032407332000", "-88.308491584201818"]}, "type": "comp", "npi": "1073504981", "name": "MURRAY-CALLOWAY COUNTY HOSPITAL", "classification": "General Acute Care Hospital"}, "1114961596": {"npi": "1114961596", "name": "ASHOK MEHTA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1690842084164000", "-86.515878612542252"]}, "charges": 165739, "payments": 65473, "type": "source", "leakage": 0}, "1962403378": {"npi": "1962403378", "name": "NANCY BARRETT", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.2196807985396000", "-86.331911063307118"]}, "charges": 60261, "payments": 20005, "type": "source", "leakage": 0}, "1194724864": {"npi": "1194724864", "name": "PATRICK RYAN", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1536857422114000", "-86.808231159314175"]}, "charges": 916290, "payments": 192186, "type": "source", "leakage": 0}, "1962409821": {"npi": "1962409821", "name": "HOWARD WEIL", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 230312, "payments": 25216, "type": "source", "leakage": 1}, "1801830500": {"geometry": {"type": "point", "coordinates": ["31.2362906131726000", "-85.458300082432672"]}, "type": "comp", "npi": "1801830500", "name": "FLOWERS HOSPITAL", "classification": "General Acute Care Hospital"}, "1790710374": {"npi": "1790710374", "name": "WILLIAM MCKEAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 289151, "payments": 124389, "type": "source", "leakage": 0}, "1326093345": {"npi": "1326093345", "name": "JOE MACCURDY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 352170, "payments": 55729, "type": "source", "leakage": 0}, "1215976675": {"geometry": {"type": "point", "coordinates": ["33.6676998285764000", "-85.824970596563602"]}, "type": "comp", "npi": "1215976675", "name": "STRINGFELLOW MEMORIAL HOSPTIAL", "classification": "General Acute Care Hospital"}, "1699819003": {"geometry": {"type": "point", "coordinates": ["36.1530265154019000", "-82.845653891073226"]}, "type": "comp", "npi": "1699819003", "name": "TAKOMA REGIONAL HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1649262338": {"npi": "1649262338", "name": "WILLIAM PETTUS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1532798798302000", "-86.801067891656004"]}, "charges": 1128721, "payments": 262594, "type": "source", "leakage": 0}, "1497849491": {"npi": "1497849491", "name": "WILLIAM GATES", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1852782226344000", "-86.612826594917877"]}, "charges": 841010, "payments": 296722, "type": "source", "leakage": 0}, "1275570376": {"geometry": {"type": "point", "coordinates": ["37.1877817894377000", "-80.407193183459327"]}, "type": "comp", "npi": "1275570376", "name": "LEWISGALE HOSPITAL MONTGOMERY", "classification": "General Acute Care Hospital"}, "1154365518": {"npi": "1154365518", "name": "GREGORY MICKLOW", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.5395930000001000", "-86.856823999999961"]}, "charges": 581154, "payments": 70409, "type": "source", "leakage": 0}, "1093716979": {"geometry": {"type": "point", "coordinates": ["33.7938231884862000", "-84.276278091574710"]}, "type": "comp", "npi": "1093716979", "name": "DEKALB MEDICAL CENTER INC.", "classification": "General Acute Care Hospital"}, "1316938459": {"geometry": {"type": "point", "coordinates": ["33.0890404541465000", "-83.247237226910158"]}, "type": "comp", "npi": "1316938459", "name": "OCONEE REGIONAL MEDICAL CENTER, INC.", "classification": "General Acute Care Hospital"}, "1497759260": {"geometry": {"type": "point", "coordinates": ["39.0893460000000000", "-87.409907999999916"]}, "type": "comp", "npi": "1497759260", "name": "SULLIVAN COUNTY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1841298999": {"geometry": {"type": "point", "coordinates": ["33.5096982651539000", "-86.788647893622297"]}, "type": "comp", "npi": "1841298999", "name": "ST. VINCENT'S BIRMINGHAM", "classification": "General Acute Care Hospital"}, "1992149819": {"npi": "1992149819", "name": "ALEXIS MCCHURCH", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 24345, "payments": 14549, "type": "source", "leakage": 0}, "1942284658": {"npi": "1942284658", "name": "HEMALATHA GOKHALE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 242130, "payments": 56924, "type": "source", "leakage": 0}, "1306183702": {"npi": "1306183702", "name": "TANJA FOSTER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["32.7373391487016000", "-97.333342359931535"]}, "charges": 48904, "payments": 8097, "type": "source", "leakage": 0}, "1013996222": {"npi": "1013996222", "name": "APRIL LUST", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 51440, "payments": 5099, "type": "source", "leakage": 1}, "1730145392": {"geometry": {"type": "point", "coordinates": ["41.2996923827292000", "-84.755599625753959"]}, "type": "comp", "npi": "1730145392", "name": "MARK MILFORD HICKSVILLE JOINT TOWNSHIP HOSPITAL DISTRICT", "classification": "General Acute Care Hospital"}, "1487638185": {"npi": "1487638185", "name": "KURT BERGER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 5856518, "payments": 1297576, "type": "source", "leakage": 0}, "1821026816": {"geometry": {"type": "point", "coordinates": ["32.8211710000000000", "-79.857292000000029"]}, "type": "comp", "npi": "1821026816", "name": "EAST COOPER MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1265413405": {"geometry": {"type": "point", "coordinates": ["41.0616964665412000", "-86.194584640355600"]}, "type": "comp", "npi": "1265413405", "name": "WOODLAWN HOSPITAL", "classification": "General Acute Care Hospital"}, "1972658060": {"npi": "1972658060", "name": "TERRY KETCH", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["35.9593830000001000", "-86.531067000000007"]}, "charges": 335853, "payments": 121790, "type": "source", "leakage": 0}, "1184663494": {"npi": "1184663494", "name": "JOHN ALARCON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 2363995, "payments": 419897, "type": "source", "leakage": 0}, "1417997990": {"npi": "1417997990", "name": "GILBERTO CARRERO", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 1093042, "payments": 231771, "type": "source", "leakage": 0}, "1912977430": {"npi": "1912977430", "name": "MARCUS MIN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2492225498397000", "-86.734853858325110"]}, "charges": 220810, "payments": 66770, "type": "source", "leakage": 0}, "1609857432": {"geometry": {"type": "point", "coordinates": ["35.0012770000000000", "-78.335891000000004"]}, "type": "comp", "npi": "1609857432", "name": "SAMPSON COUNTY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1336147685": {"npi": "1336147685", "name": "ORLANDO RODRIGUEZ", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 309065, "payments": 203755, "type": "source", "leakage": 0}, "1093830176": {"npi": "1093830176", "name": "CHIRAG AMIN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 116404, "payments": 47625, "type": "source", "leakage": 0}, "1972506186": {"npi": "1972506186", "name": "RODNEY HUTSON", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["35.2476381957998000", "-85.181539393411882"]}, "charges": 1365434, "payments": 142395, "type": "source", "leakage": 0}, "1902865355": {"geometry": {"type": "point", "coordinates": ["40.6967396480520000", "-73.306367061786759"]}, "type": "comp", "npi": "1902865355", "name": "GOOD SAMARITAN HOSPITAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1386976207": {"npi": "1386976207", "name": "JASON ROTH", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3911171354157000", "-86.434013170905033"]}, "charges": 846487, "payments": 111126, "type": "source", "leakage": 0}, "1699760587": {"npi": "1699760587", "name": "HYATT SUTTON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 480988, "payments": 177874, "type": "source", "leakage": 0}, "1932183779": {"npi": "1932183779", "name": "EDWARD PRIEST", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 585640, "payments": 121806, "type": "source", "leakage": 0}, "1356365928": {"npi": "1356365928", "name": "CHRISTINE DONG", "classification": "Neurological Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 130120, "payments": 66080, "type": "source", "leakage": 1}, "1568417772": {"npi": "1568417772", "name": "BRETT THORSTAD", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 600411, "payments": 97119, "type": "source", "leakage": 0}, "1972788032": {"npi": "1972788032", "name": "ANDREA BELCHER", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 70367, "payments": 8298, "type": "source", "leakage": 1}, "1477517167": {"npi": "1477517167", "name": "JASON KNOX", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["35.9593830000001000", "-86.531067000000007"]}, "charges": 103207, "payments": 38440, "type": "source", "leakage": 0}, "1528052578": {"geometry": {"type": "point", "coordinates": ["35.8491047172348000", "-83.535504059318114"]}, "type": "comp", "npi": "1528052578", "name": "LECONTE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1073610754": {"npi": "1073610754", "name": "TERENCE CASEY", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.0329480269203000", "-86.809725656139506"]}, "charges": 4263721, "payments": 1211535, "type": "source", "leakage": 0}, "1730389743": {"npi": "1730389743", "name": "DAWN BRUNI", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["35.6094913822125000", "-91.607791928208854"]}, "charges": 5771, "payments": 2081, "type": "source", "leakage": 1}, "1295872216": {"npi": "1295872216", "name": "SHAMOLIE WYCKOFF", "classification": "Pain Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 444130, "payments": 115627, "type": "source", "leakage": 0}, "1801846712": {"npi": "1801846712", "name": "TRAVIS PARDUE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1770205763975000", "-86.616402146315849"]}, "charges": 522164, "payments": 198824, "type": "source", "leakage": 0}, "1003996000": {"geometry": {"type": "point", "coordinates": ["33.6571207541682000", "-85.823303717427351"]}, "type": "comp", "npi": "1003996000", "name": "NORTHEAST ALABAMA REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1366441370": {"geometry": {"type": "point", "coordinates": ["35.6010249956610000", "-84.464274796755504"]}, "type": "comp", "npi": "1366441370", "name": "SWEETWATER HOSPITAL ASSOCIATION", "classification": "General Acute Care Hospital"}, "1487684122": {"geometry": {"type": "point", "coordinates": ["34.8728896001281000", "-83.957689179773183"]}, "type": "comp", "npi": "1487684122", "name": "UNION GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1083617245": {"geometry": {"type": "point", "coordinates": ["38.5307830702332000", "-89.115883797100864"]}, "type": "comp", "npi": "1083617245", "name": "SSM HEALTH ST. MARY'S HOSPITAL - CENTRALIA", "classification": "General Acute Care Hospital"}, "1043217854": {"npi": "1043217854", "name": "GEORGE JAMES", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1439450000000000", "-86.583065999999974"]}, "charges": 411123, "payments": 91993, "type": "source", "leakage": 0}, "1851549240": {"npi": "1851549240", "name": "FLOYD DUNNAVANT", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 13348, "payments": 2114, "type": "source", "leakage": 0}, "1124087002": {"npi": "1124087002", "name": "CLAUDE VELASCO", "classification": "Pathology", "geometry": {"type": "point", "coordinates": ["36.1921149012962000", "-86.606577497038060"]}, "charges": 989903, "payments": 95969, "type": "source", "leakage": 1}, "1376756742": {"npi": "1376756742", "name": "BENJAMIN GRIFFIN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 435358, "payments": 102018, "type": "source", "leakage": 0}, "1275520827": {"npi": "1275520827", "name": "RONALD RENTUZA", "classification": "Hospitalist", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 357300, "payments": 158255, "type": "source", "leakage": 0}, "1447388335": {"geometry": {"type": "point", "coordinates": ["38.3053100000000000", "-85.578312999999923"]}, "type": "comp", "npi": "1447388335", "name": "NORTON BROWNSBORO HOSPITAL", "classification": "General Acute Care Hospital"}, "1174669998": {"npi": "1174669998", "name": "BERNARD SY", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 149518, "payments": 66163, "type": "source", "leakage": 0}, "1194728808": {"geometry": {"type": "point", "coordinates": ["38.4215297347480000", "-87.768366921374295"]}, "type": "comp", "npi": "1194728808", "name": "WABASH GENERAL HOSPITAL DISTRICT", "classification": "General Acute Care Hospital"}, "1962645259": {"npi": "1962645259", "name": "TAURA LONG", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1897191686002000", "-86.606925463544343"]}, "charges": 84657, "payments": 46512, "type": "source", "leakage": 1}, "1558365890": {"geometry": {"type": "point", "coordinates": ["35.1370805317160000", "-90.019072208986216"]}, "type": "comp", "npi": "1558365890", "name": "METHODIST HEALTHCARE - MEMPHIS HOSPITALS", "classification": "General Acute Care Hospital"}, "1750348892": {"npi": "1750348892", "name": "KENT MURPHY", "classification": "Otolaryngology", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 184492, "payments": 68042, "type": "source", "leakage": 0}, "1376594366": {"geometry": {"type": "point", "coordinates": ["40.7372016929841000", "-85.171558567675049"]}, "type": "comp", "npi": "1376594366", "name": "BLUFFTON REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1003895947": {"geometry": {"type": "point", "coordinates": ["38.3935798160859000", "-86.941608852213676"]}, "type": "comp", "npi": "1003895947", "name": "MEMORIAL HOSPITAL & HEALTH CARE CENTER", "classification": "General Acute Care Hospital"}, "1770581894": {"geometry": {"type": "point", "coordinates": ["37.0107015691639000", "-85.903251182600997"]}, "type": "comp", "npi": "1770581894", "name": "T J SAMSON COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1003821729": {"geometry": {"type": "point", "coordinates": ["40.9028756008043000", "-85.490541977069299"]}, "type": "comp", "npi": "1003821729", "name": "PARKVIEW HUNTINGTON HOSPITAL", "classification": "General Acute Care Hospital"}, "1942404728": {"npi": "1942404728", "name": "BILLY KIM", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 734684, "payments": 168276, "type": "source", "leakage": 0}, "1265539498": {"geometry": {"type": "point", "coordinates": ["38.2399192259902000", "-85.637465654919950"]}, "type": "comp", "npi": "1265539498", "name": "BAPTIST HEALTH LOUISVILLE", "classification": "General Acute Care Hospital"}, "1538172077": {"npi": "1538172077", "name": "MARTIN WAGNER", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 181575, "payments": 111550, "type": "source", "leakage": 0}, "1598719643": {"geometry": {"type": "point", "coordinates": ["32.8221940000000000", "-83.511615999999947"]}, "type": "comp", "npi": "1598719643", "name": "COLISEUM MEDICAL CENTERS", "classification": "General Acute Care Hospital"}, "1316940471": {"npi": "1316940471", "name": "CAROL MCCULLOUGH", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 15041, "payments": 7502, "type": "source", "leakage": 1}, "1841388519": {"geometry": {"type": "point", "coordinates": ["35.1928927138072000", "-87.009354341023993"]}, "type": "comp", "npi": "1841388519", "name": "SOUTHERN TENNESSEE REGIONAL HEALTH SYSTEM PULASKI", "classification": "General Acute Care Hospital"}, "1972549533": {"npi": "1972549533", "name": "GREGORY SMITH", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 327237, "payments": 79221, "type": "source", "leakage": 0}, "1023060472": {"geometry": {"type": "point", "coordinates": ["41.0788870471015000", "-85.148851046164040"]}, "type": "comp", "npi": "1023060472", "name": "ST. JOSEPH HOSPITAL", "classification": "General Acute Care Hospital"}, "1568739423": {"geometry": {"type": "point", "coordinates": ["41.9769090000000000", "-85.640782000000002"]}, "type": "comp", "npi": "1568739423", "name": "THREE RIVERS HEALTH", "classification": "General Acute Care Hospital"}, "1326023789": {"npi": "1326023789", "name": "JOHN MOYERS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 358808, "payments": 85652, "type": "source", "leakage": 0}, "1104874684": {"geometry": {"type": "point", "coordinates": ["35.0321538855639000", "-85.264588954036810"]}, "type": "comp", "npi": "1104874684", "name": "PARKRIDGE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1609824010": {"geometry": {"type": "point", "coordinates": ["45.4992188706238000", "-122.688408273234800"]}, "type": "comp", "npi": "1609824010", "name": "OHSU HOSPITALS AND CLINICS", "classification": "General Acute Care Hospital"}, "1457306565": {"npi": "1457306565", "name": "DANIEL WUNDER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 3299230, "payments": 549681, "type": "source", "leakage": 0}, "1912984758": {"npi": "1912984758", "name": "GREGORY LASSITER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 543983, "payments": 128288, "type": "source", "leakage": 0}, "1710966247": {"npi": "1710966247", "name": "PIOTR GALASKA", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["35.3005085849598000", "-80.753170018587710"]}, "charges": 670123, "payments": 62665, "type": "source", "leakage": 0}, "1063485274": {"npi": "1063485274", "name": "MICHAEL REID", "classification": "Orthopaedic Surgery", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 547418, "payments": 117333, "type": "source", "leakage": 1}, "1154310514": {"geometry": {"type": "point", "coordinates": ["33.4751238759123000", "-88.820435663560389"]}, "type": "comp", "npi": "1154310514", "name": "OCH REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1124014360": {"npi": "1124014360", "name": "NINA PORTER", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 6147, "payments": 716, "type": "source", "leakage": 1}, "1285936013": {"npi": "1285936013", "name": "PAUL MCCLELLAN", "classification": "Nurse Practitioner", "geometry": {"type": "point", "coordinates": ["36.2162030205321000", "-86.585158396327358"]}, "charges": 224943, "payments": 126766, "type": "source", "leakage": 0}, "1063484483": {"geometry": {"type": "point", "coordinates": ["38.0713740000000000", "-82.685823000000028"]}, "type": "comp", "npi": "1063484483", "name": "THREE RIVERS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1942267760": {"geometry": {"type": "point", "coordinates": ["40.8544985157763000", "-84.584032625786790"]}, "type": "comp", "npi": "1942267760", "name": "VAN WERT COUNTY HOSPITAL ASSOCIATION", "classification": "General Acute Care Hospital"}, "1841239647": {"npi": "1841239647", "name": "GREGORY CONNER", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.5214377910140000", "-87.279126038590874"]}, "charges": 491636, "payments": 83070, "type": "source", "leakage": 0}, "1952353054": {"npi": "1952353054", "name": "WILLIAM BAUCOM", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 228041, "payments": 92330, "type": "source", "leakage": 0}, "1891741435": {"npi": "1891741435", "name": "FRANCISCO AVILA", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["35.1928927138072000", "-87.009354341023993"]}, "charges": 521142, "payments": 54020, "type": "source", "leakage": 0}, "1861479545": {"geometry": {"type": "point", "coordinates": ["35.6128098189373000", "-87.056642118907419"]}, "type": "comp", "npi": "1861479545", "name": "MAURY REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1952358541": {"npi": "1952358541", "name": "LYNN TUGGLE", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["35.8483278216627000", "-86.383219755613510"]}, "charges": 507573, "payments": 50789, "type": "source", "leakage": 0}, "1770679201": {"geometry": {"type": "point", "coordinates": ["40.5645120002150000", "-85.665520059374728"]}, "type": "comp", "npi": "1770679201", "name": "MARION GENERAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1255372181": {"npi": "1255372181", "name": "ABDUL ENAYAT", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 216321, "payments": 92919, "type": "source", "leakage": 1}, "1144211020": {"geometry": {"type": "point", "coordinates": ["29.8626265854851000", "-81.319633997042899"]}, "type": "comp", "npi": "1144211020", "name": "FLAGLER HOSPITAL INC", "classification": "General Acute Care Hospital"}, "1699752493": {"npi": "1699752493", "name": "JACK BAKER", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 159897, "payments": 38300, "type": "source", "leakage": 0}, "1356428429": {"geometry": {"type": "point", "coordinates": ["39.9406844923449000", "-85.365092128787168"]}, "type": "comp", "npi": "1356428429", "name": "HENRY COUNTY MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1508884875": {"npi": "1508884875", "name": "MATTHEW MILLIGAN", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 9707, "payments": 1721, "type": "source", "leakage": 0}, "1720079114": {"npi": "1720079114", "name": "JAYESH PATEL", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 244610, "payments": 133980, "type": "source", "leakage": 0}, "1972538486": {"npi": "1972538486", "name": "VICTOR ISAAC", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.1570610774875000", "-86.803872297498387"]}, "charges": 188458, "payments": 63221, "type": "source", "leakage": 0}, "1942391230": {"geometry": {"type": "point", "coordinates": ["32.4644982944661000", "-86.450933816760596"]}, "type": "comp", "npi": "1942391230", "name": "PRATTVILLE BAPTIST HOSPITAL", "classification": "General Acute Care Hospital"}, "1740377852": {"npi": "1740377852", "name": "JEFFREY KAMMER", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 1217499, "payments": 206436, "type": "source", "leakage": 0}, "1194770404": {"geometry": {"type": "point", "coordinates": ["32.6327760000000000", "-89.992300999999998"]}, "type": "comp", "npi": "1194770404", "name": "MERIT HEALTH MADISON", "classification": "General Acute Care Hospital"}, "1053303248": {"npi": "1053303248", "name": "MICHAEL BECKHAM", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 255521, "payments": 83994, "type": "source", "leakage": 0}, "1376586404": {"geometry": {"type": "point", "coordinates": ["37.1669006269771000", "-85.916557584856633"]}, "type": "comp", "npi": "1376586404", "name": "CAVERNA MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1730111642": {"npi": "1730111642", "name": "TARAL PATEL", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["34.9172190000000000", "-80.729561999999987"]}, "charges": 390926, "payments": 139577, "type": "source", "leakage": 0}, "1902865389": {"geometry": {"type": "point", "coordinates": ["36.9208670000000000", "-84.169613000000027"]}, "type": "comp", "npi": "1902865389", "name": "BAPTIST HEALTH CORBIN", "classification": "General Acute Care Hospital"}, "1720059397": {"npi": "1720059397", "name": "DEKA EFOBI", "classification": "Neurological Surgery", "geometry": {"type": "point", "coordinates": ["36.2197154472575000", "-86.331387477754092"]}, "charges": 702127, "payments": 214195, "type": "source", "leakage": 0}, "1962403865": {"geometry": {"type": "point", "coordinates": ["33.7377440000000000", "-84.107465999999988"]}, "type": "comp", "npi": "1962403865", "name": "DEKALB MEDICAL CENTER AT HILLANDALE", "classification": "General Acute Care Hospital"}, "1033228168": {"geometry": {"type": "point", "coordinates": ["32.5070091462685000", "-84.963310939705735"]}, "type": "comp", "npi": "1033228168", "name": "ST. FRANCIS HOSPITAL", "classification": "General Acute Care Hospital"}, "1033199401": {"npi": "1033199401", "name": "VIVEK SHARMA", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["41.1252410722543000", "-85.207103371561061"]}, "charges": 669294, "payments": 106782, "type": "source", "leakage": 0}, "1043218654": {"npi": "1043218654", "name": "TIMOTHY MILLER", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.0402931271555000", "-86.646123716319636"]}, "charges": 2346433, "payments": 614017, "type": "source", "leakage": 0}, "1912970021": {"npi": "1912970021", "name": "DONALD CRUMBO", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 419298, "payments": 149688, "type": "source", "leakage": 0}, "1942252952": {"npi": "1942252952", "name": "KENNETH DEMIRJIAN", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1624570679561000", "-86.515096421477210"]}, "charges": 149960, "payments": 72033, "type": "source", "leakage": 1}, "1679546717": {"npi": "1679546717", "name": "TIMOTHY KRETH", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 488100, "payments": 179349, "type": "source", "leakage": 0}, "1144213117": {"geometry": {"type": "point", "coordinates": ["35.1425885624074000", "-90.031719175937042"]}, "type": "comp", "npi": "1144213117", "name": "REGIONAL ONE HEALTH", "classification": "General Acute Care Hospital"}, "1538109103": {"npi": "1538109103", "name": "PAUL NAU", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1703547, "payments": 260366, "type": "source", "leakage": 0}, "1780778969": {"geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "type": "comp", "npi": "1780778969", "name": "SAINT THOMAS MIDTOWN HOSPITAL", "classification": "General Acute Care Hospital"}, "1386683407": {"npi": "1386683407", "name": "BRYAN SHARPE", "classification": "Emergency Medicine", "geometry": {"type": "point", "coordinates": ["36.1794001929745000", "-86.606352273440393"]}, "charges": 414275, "payments": 50948, "type": "source", "leakage": 0}, "1215981196": {"npi": "1215981196", "name": "JAMES TEDESCO", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 238619, "payments": 113215, "type": "source", "leakage": 0}, "1619038247": {"geometry": {"type": "point", "coordinates": ["37.0864595889437000", "-84.617417692214886"]}, "type": "comp", "npi": "1619038247", "name": "LAKE CUMBERLAND REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1053406405": {"npi": "1053406405", "name": "ANDREW MCRAE", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1518591290734000", "-86.809639919468907"]}, "charges": 577427, "payments": 210682, "type": "source", "leakage": 0}, "1407833825": {"npi": "1407833825", "name": "JOHN BARTEK", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 28962, "payments": 7422, "type": "source", "leakage": 0}, "1356366314": {"geometry": {"type": "point", "coordinates": ["34.0043448233830000", "-81.113142464998191"]}, "type": "comp", "npi": "1356366314", "name": "LEXINGTON MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1205978012": {"npi": "1205978012", "name": "DAYMOND MCDUFFEY", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["33.9664392920450000", "-84.554294377905862"]}, "charges": 261289, "payments": 105420, "type": "source", "leakage": 0}, "1427046622": {"npi": "1427046622", "name": "LISA LAYA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1864163637040000", "-86.630718678720086"]}, "charges": 208846, "payments": 133472, "type": "source", "leakage": 0}, "1831190958": {"geometry": {"type": "point", "coordinates": ["33.5778553213345000", "-84.389249433153182"]}, "type": "comp", "npi": "1831190958", "name": "SOUTHERN REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1871548818": {"npi": "1871548818", "name": "WILLIAM KLEIN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 526023, "payments": 127814, "type": "source", "leakage": 0}, "1144288747": {"npi": "1144288747", "name": "GEORGE ROBERTSON", "classification": "Pediatrics", "geometry": {"type": "point", "coordinates": ["36.2197106965820000", "-86.331462300892824"]}, "charges": 310156, "payments": 127169, "type": "source", "leakage": 0}, "1699874248": {"geometry": {"type": "point", "coordinates": ["29.6392508404068000", "-82.343239708644930"]}, "type": "comp", "npi": "1699874248", "name": "SHANDSHEALTHCARE, SHANDSHCNETWORK,SHANDSHOSP,SHANDSUF,UF HEALTH SHANDS", "classification": "General Acute Care Hospital"}, "1790756203": {"geometry": {"type": "point", "coordinates": ["35.1774669770721000", "-84.868219234265737"]}, "type": "comp", "npi": "1790756203", "name": "TENNOVA HEALTHCARE-CLEVELAND", "classification": "General Acute Care Hospital"}, "1558339085": {"geometry": {"type": "point", "coordinates": ["34.9476706990779000", "-85.262818955155879"]}, "type": "comp", "npi": "1558339085", "name": "HUTCHESON MEDICAL CENTER, INC", "classification": "General Acute Care Hospital"}, "1265445506": {"geometry": {"type": "point", "coordinates": ["35.8979299508817000", "-86.825670186031715"]}, "type": "comp", "npi": "1265445506", "name": "WILLIAMSON MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1235139312": {"geometry": {"type": "point", "coordinates": ["36.8602575454165000", "-87.495336034038260"]}, "type": "comp", "npi": "1235139312", "name": "JENNIE STUART MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1245325422": {"npi": "1245325422", "name": "KENNETH HAWKINS", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 195260, "payments": 48212, "type": "source", "leakage": 0}, "1619914785": {"geometry": {"type": "point", "coordinates": ["37.2654148642537000", "-80.032896973631452"]}, "type": "comp", "npi": "1619914785", "name": "LEWISGALE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1376607259": {"npi": "1376607259", "name": "JOSHUA YOUNG", "classification": "Ophthalmology", "geometry": {"type": "point", "coordinates": ["36.1852782226344000", "-86.612826594917877"]}, "charges": 514660, "payments": 181563, "type": "source", "leakage": 0}, "1649299827": {"geometry": {"type": "point", "coordinates": ["38.6266350000000000", "-90.267242999999951"]}, "type": "comp", "npi": "1649299827", "name": "BARNES-JEWISH HOSPITAL", "classification": "General Acute Care Hospital"}, "1285689794": {"geometry": {"type": "point", "coordinates": ["36.5801479403906000", "-87.271766309672856"]}, "type": "comp", "npi": "1285689794", "name": "GATEWAY HEALTH SYSTEM", "classification": "General Acute Care Hospital"}, "1558345256": {"npi": "1558345256", "name": "WEBB EARTHMAN", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1533678317098000", "-86.800889426191617"]}, "charges": 138418, "payments": 33148, "type": "source", "leakage": 0}, "1861690364": {"geometry": {"type": "point", "coordinates": ["32.9153254946887000", "-96.872514374292024"]}, "type": "comp", "npi": "1861690364", "name": "DALLAS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1891801734": {"geometry": {"type": "point", "coordinates": ["36.3418960265641000", "-82.253584539948534"]}, "type": "comp", "npi": "1891801734", "name": "SYCAMORE SHOALS HOSPITAL", "classification": "General Acute Care Hospital"}, "1649248626": {"geometry": {"type": "point", "coordinates": ["33.9690098607429000", "-84.550306640037974"]}, "type": "comp", "npi": "1649248626", "name": "WELLSTAR KENNESTONE HOSPITAL", "classification": "General Acute Care Hospital"}, "1902897937": {"geometry": {"type": "point", "coordinates": ["41.3676230805016000", "-85.037646707591264"]}, "type": "comp", "npi": "1902897937", "name": "DEKALB HEALTH", "classification": "General Acute Care Hospital"}, "1861465999": {"geometry": {"type": "point", "coordinates": ["38.6586936626908000", "-87.160511320691114"]}, "type": "comp", "npi": "1861465999", "name": "DAVIESS COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1164492195": {"geometry": {"type": "point", "coordinates": ["38.4318390348739000", "-82.401782893581341"]}, "type": "comp", "npi": "1164492195", "name": "ST. MARY'S MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1528061629": {"npi": "1528061629", "name": "RHONDA HALCOMB", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 18242, "payments": 8114, "type": "source", "leakage": 1}, "1518919224": {"npi": "1518919224", "name": "ANDREW MCVIE", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1294749477407000", "-86.840138956708770"]}, "charges": 364378, "payments": 87016, "type": "source", "leakage": 0}, "1811922347": {"geometry": {"type": "point", "coordinates": ["37.1104210000001000", "-83.753712000000007"]}, "type": "comp", "npi": "1811922347", "name": "MANCHESTER MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1346239498": {"npi": "1346239498", "name": "MATTHEW NEUHAUS", "classification": "Podiatrist", "geometry": {"type": "point", "coordinates": ["35.9593830000001000", "-86.531067000000007"]}, "charges": 374907, "payments": 132455, "type": "source", "leakage": 0}, "1609897339": {"geometry": {"type": "point", "coordinates": ["38.3153280000001000", "-88.907267999999931"]}, "type": "comp", "npi": "1609897339", "name": "SSM HEALTH GOOD SAMARITAN HOSPITAL - MT. VERNON", "classification": "General Acute Care Hospital"}, "1962435792": {"geometry": {"type": "point", "coordinates": ["32.6181549264139000", "-83.638635245114827"]}, "type": "comp", "npi": "1962435792", "name": "HOUSTON MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1508839622": {"npi": "1508839622", "name": "MICHAEL BAKER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1398130000000000", "-86.803297999999927"]}, "charges": 554283, "payments": 106707, "type": "source", "leakage": 0}, "1932179389": {"npi": "1932179389", "name": "GREGORY WITTERS", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.1897191686002000", "-86.606925463544343"]}, "charges": 103039, "payments": 39087, "type": "source", "leakage": 1}, "1134321235": {"npi": "1134321235", "name": "VIRAJ PARIKH", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.3309506729419000", "-86.700849139772018"]}, "charges": 1186013, "payments": 176150, "type": "source", "leakage": 0}, "1457366189": {"geometry": {"type": "point", "coordinates": ["41.4524200000000000", "-85.274576999999965"]}, "type": "comp", "npi": "1457366189", "name": "PARKVIEW NOBLE HOSPITAL", "classification": "General Acute Care Hospital"}, "1992776421": {"geometry": {"type": "point", "coordinates": ["35.9428830000001000", "-85.435172999999963"]}, "type": "comp", "npi": "1992776421", "name": "HIGHLANDS MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1043217623": {"npi": "1043217623", "name": "WALTER CRAWFORD", "classification": "Anesthesiology", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 212476, "payments": 22892, "type": "source", "leakage": 0}, "1922052869": {"geometry": {"type": "point", "coordinates": ["35.3850972217657000", "-86.232825202046229"]}, "type": "comp", "npi": "1922052869", "name": "HARTON REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1902013410": {"npi": "1902013410", "name": "SAADIA KHAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2183883467807000", "-86.326169720503614"]}, "charges": 905944, "payments": 223397, "type": "source", "leakage": 0}, "1023061496": {"geometry": {"type": "point", "coordinates": ["34.6923415836208000", "-86.572555699833671"]}, "type": "comp", "npi": "1023061496", "name": "CRESTWOOD MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1750389607": {"npi": "1750389607", "name": "WILLIAM LITTMAN", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.2196807985396000", "-86.331911063307118"]}, "charges": 404313, "payments": 174564, "type": "source", "leakage": 0}, "1184619124": {"npi": "1184619124", "name": "RICHARD RUTHERFORD", "classification": "Family Medicine", "geometry": {"type": "point", "coordinates": ["36.2619930679304000", "-85.950423516032998"]}, "charges": 591563, "payments": 249035, "type": "source", "leakage": 0}, "1225195340": {"geometry": {"type": "point", "coordinates": ["40.1973737078399000", "-85.414450823794098"]}, "type": "comp", "npi": "1225195340", "name": "INDIANA UNIVERSITY HEALTH BALL MEMORIAL HOSPITAL, INC.", "classification": "General Acute Care Hospital"}, "1134346323": {"npi": "1134346323", "name": "KIMBERLY BRANCH-HAYES", "classification": "Physical Medicine & Rehabilitation", "geometry": {"type": "point", "coordinates": ["36.2343949610980000", "-86.758436533302188"]}, "charges": 371233, "payments": 144228, "type": "source", "leakage": 0}, "1619920949": {"geometry": {"type": "point", "coordinates": ["40.7573008618048000", "-86.083367487801283"]}, "type": "comp", "npi": "1619920949", "name": "DUKES MEMORIAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1053375576": {"geometry": {"type": "point", "coordinates": ["34.3495495238142000", "-89.520816418453876"]}, "type": "comp", "npi": "1053375576", "name": "BAPTIST MEMORIAL HOSPITAL NORTH MISSISSIPPI, INC,", "classification": "General Acute Care Hospital"}, "1689677767": {"npi": "1689677767", "name": "LISA JABUSCH", "classification": "Obstetrics & Gynecology", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 7028, "payments": 3390, "type": "source", "leakage": 1}, "1851495121": {"npi": "1851495121", "name": "ANNE BEAL", "classification": "Techs", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 44345, "payments": 16699, "type": "source", "leakage": 1}, "1619916970": {"npi": "1619916970", "name": "WILLIAM THOMPSON", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1293727846093000", "-86.840402090504099"]}, "charges": 780389, "payments": 243744, "type": "source", "leakage": 0}, "1346244126": {"geometry": {"type": "point", "coordinates": ["37.0536623825806000", "-88.646685181560045"]}, "type": "comp", "npi": "1346244126", "name": "LOURDES HOSPITAL", "classification": "General Acute Care Hospital"}, "1891749420": {"npi": "1891749420", "name": "THOMAS DINELLA", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1795153153935000", "-86.606385379865245"]}, "charges": 271511, "payments": 114469, "type": "source", "leakage": 0}, "1447571658": {"geometry": {"type": "point", "coordinates": ["36.3912467576926000", "-86.435044513368894"]}, "type": "comp", "npi": "1447571658", "name": "SUMNER REGIONAL MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1477549756": {"geometry": {"type": "point", "coordinates": ["34.7515749131539000", "-92.320975242246291"]}, "type": "comp", "npi": "1477549756", "name": "THE UNIVERSITY HOSPITAL OF ARKANSAS", "classification": "General Acute Care Hospital"}, "1295780476": {"geometry": {"type": "point", "coordinates": ["36.2343570343154000", "-86.758443182803020"]}, "type": "comp", "npi": "1295780476", "name": "TRISTAR SKYLINE MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1164403861": {"geometry": {"type": "point", "coordinates": ["31.2153913678224000", "-85.361312877079968"]}, "type": "comp", "npi": "1164403861", "name": "SOUTHEAST ALABAMA MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1023340809": {"npi": "1023340809", "name": "MICHAEL WARREN", "classification": "Physician Assistant", "geometry": {"type": "point", "coordinates": ["36.1743003613315000", "-86.610819783739714"]}, "charges": 38190, "payments": 8624, "type": "source", "leakage": 1}, "1780625442": {"geometry": {"type": "point", "coordinates": ["40.4872228700285000", "-86.155564963221011"]}, "type": "comp", "npi": "1780625442", "name": "ST. JOSEPH HOSPITAL & HEALTH CENTER, INC.", "classification": "General Acute Care Hospital"}, "1457465668": {"npi": "1457465668", "name": "ROBERT WOODS", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.1263710000000000", "-86.296259999999904"]}, "charges": 680656, "payments": 247164, "type": "source", "leakage": 0}, "1134103831": {"npi": "1134103831", "name": "SCOTT MONTESI", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 122614, "payments": 28791, "type": "source", "leakage": 0}, "1780688333": {"geometry": {"type": "point", "coordinates": ["37.1004428715114000", "-87.887584930499642"]}, "type": "comp", "npi": "1780688333", "name": "CALDWELL COUNTY HOSPITAL, INC", "classification": "General Acute Care Hospital"}, "1184706152": {"geometry": {"type": "point", "coordinates": ["36.9531673776779000", "-81.095643943819468"]}, "type": "comp", "npi": "1184706152", "name": "WYTHE COUNTY COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1700870672": {"geometry": {"type": "point", "coordinates": ["36.0232321553861000", "-84.244151264227611"]}, "type": "comp", "npi": "1700870672", "name": "METHODIST MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1396729091": {"npi": "1396729091", "name": "SCOTT GRAY", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1528972901839000", "-86.807682507532562"]}, "charges": 239494, "payments": 56201, "type": "source", "leakage": 0}, "1912139643": {"geometry": {"type": "point", "coordinates": ["34.8402456070265000", "-82.605786178837405"]}, "type": "comp", "npi": "1912139643", "name": "BAPTIST EASLEY HOSPITAL", "classification": "General Acute Care Hospital"}, "1285613612": {"geometry": {"type": "point", "coordinates": ["37.7761868867231000", "-87.069197087407758"]}, "type": "comp", "npi": "1285613612", "name": "OWENSBORO HEALTH REGIONAL HOSPITAL", "classification": "General Acute Care Hospital"}, "1730224320": {"npi": "1730224320", "name": "MAURICE BARNES, M.D.", "classification": "Specialist", "geometry": {"type": "point", "coordinates": ["36.1796301152084000", "-86.606420167687943"]}, "charges": 247010, "payments": 69752, "type": "source", "leakage": 1}, "1538163126": {"npi": "1538163126", "name": "MELVIN SEARD", "classification": "Urology", "geometry": {"type": "point", "coordinates": ["36.1539277496052000", "-86.818276378712881"]}, "charges": 273777, "payments": 73924, "type": "source", "leakage": 0}, "1598099699": {"geometry": {"type": "point", "coordinates": ["41.7942234575442000", "-85.408657965693209"]}, "type": "comp", "npi": "1598099699", "name": "STURGIS HOSPITAL", "classification": "General Acute Care Hospital"}, "1528022019": {"npi": "1528022019", "name": "ALEX FRUIN", "classification": "Surgery", "geometry": {"type": "point", "coordinates": ["36.1745342418501000", "-86.612881962214715"]}, "charges": 101645, "payments": 25568, "type": "source", "leakage": 1}, "1639226582": {"npi": "1639226582", "name": "KETSIA PIERRE", "classification": "Radiology", "geometry": {"type": "point", "coordinates": ["36.1473871603505000", "-86.808481862491774"]}, "charges": 40419, "payments": 10133, "type": "source", "leakage": 0}, "1356692297": {"geometry": {"type": "point", "coordinates": ["34.5911094993174000", "-86.974459547120816"]}, "type": "comp", "npi": "1356692297", "name": "DECATUR MORGAN HOSPITAL-DECATUR CAMPUS", "classification": "General Acute Care Hospital"}, "1972606465": {"geometry": {"type": "point", "coordinates": ["36.3158898120547000", "-82.389710423688797"]}, "type": "comp", "npi": "1972606465", "name": "JOHNSON CITY MEDICAL CENTER", "classification": "General Acute Care Hospital"}, "1164475711": {"geometry": {"type": "point", "coordinates": ["41.2463467444825000", "-85.828205562080257"]}, "type": "comp", "npi": "1164475711", "name": "KOSCIUSKO COMMUNITY HOSPITAL", "classification": "General Acute Care Hospital"}, "1528056066": {"geometry": {"type": "point", "coordinates": ["34.7888447728900000", "-84.983686238737363"]}, "type": "comp", "npi": "1528056066", "name": "HAMILTON MEDICAL CENTER, INC.", "classification": "General Acute Care Hospital"}, "1265556898": {"npi": "1265556898", "name": "MARCOS CRUZ", "classification": "Psychiatry & Neurology", "geometry": {"type": "point", "coordinates": ["36.3190237588967000", "-86.624260151467610"]}, "charges": 2102049, "payments": 237740, "type": "source", "leakage": 0}, "1992897318": {"npi": "1992897318", "name": "DEBORAH TEMPLE", "classification": "Nurse Anesthetist", "geometry": {"type": "point", "coordinates": ["36.1446391602307000", "-86.813268683867435"]}, "charges": 20095, "payments": 2276, "type": "source", "leakage": 1}, "1255301800": {"npi": "1255301800", "name": "THOMAS MILLER", "classification": "Internal Medicine", "geometry": {"type": "point", "coordinates": ["36.3061717095588000", "-86.610012136189454"]}, "charges": 420816, "payments": 257802, "type": "source", "leakage": 0}}}, "links": [{"source": "1073610754", "flow": 22, "target": "1003811290"}, {"source": "1326149907", "flow": 126, "target": "1003814971"}, {"source": "1487840872", "flow": 35, "target": "1003821729"}, {"source": "1194796391", "flow": 96, "target": "1003821729"}, {"source": "1689645707", "flow": 55, "target": "1003821729"}, {"source": "1609917129", "flow": 28, "target": "1003821729"}, {"source": "1295708576", "flow": 18, "target": "1003821729"}, {"source": "1699970566", "flow": 48, "target": "1003821729"}, {"source": "1194796391", "flow": 36, "target": "1003895947"}, {"source": "1073610754", "flow": 21, "target": "1003895947"}, {"source": "1699970566", "flow": 27, "target": "1003895947"}, {"source": "1689645707", "flow": 37, "target": "1003895947"}, {"source": "1073610754", "flow": 294, "target": "1003996000"}, {"source": "1326149907", "flow": 46, "target": "1003996000"}, {"source": "1073610754", "flow": 66, "target": "1013969179"}, {"source": "1194796391", "flow": 19, "target": "1023055126"}, {"source": "1902031610", "flow": 33, "target": "1023055126"}, {"source": "1497741714", "flow": 152, "target": "1023055126"}, {"source": "1942284658", "flow": 480, "target": "1023055126"}, {"source": "1750320966", "flow": 37, "target": "1023055126"}, {"source": "1487638185", "flow": 321, "target": "1023055126"}, {"source": "1487635777", "flow": 25, "target": "1023055126"}, {"source": "1568417772", "flow": 45, "target": "1023055126"}, {"source": "1306827605", "flow": 25, "target": "1023055126"}, {"source": "1558345256", "flow": 76, "target": "1023055126"}, {"source": "1972658060", "flow": 114, "target": "1023055126"}, {"source": "1285611715", "flow": 248, "target": "1023055126"}, {"source": "1770563215", "flow": 40, "target": "1023055126"}, {"source": "1497849491", "flow": 24, "target": "1023055126"}, {"source": "1306847009", "flow": 17, "target": "1023055126"}, {"source": "1396707923", "flow": 333, "target": "1023055126"}, {"source": "1508804337", "flow": 182, "target": "1023055126"}, {"source": "1275520827", "flow": 53, "target": "1023055126"}, {"source": "1396729091", "flow": 381, "target": "1023055126"}, {"source": "1699752493", "flow": 108, "target": "1023055126"}, {"source": "1306993282", "flow": 501, "target": "1023055126"}, {"source": "1568460640", "flow": 91, "target": "1023055126"}, {"source": "1003090424", "flow": 335, "target": "1023055126"}, {"source": "1083606248", "flow": 495, "target": "1023055126"}, {"source": "1003897380", "flow": 36, "target": "1023055126"}, {"source": "1487680237", "flow": 22, "target": "1023055126"}, {"source": "1477542942", "flow": 218, "target": "1023055126"}, {"source": "1619180403", "flow": 90, "target": "1023055126"}, {"source": "1265631675", "flow": 51, "target": "1023055126"}, {"source": "1508805862", "flow": 51, "target": "1023055126"}, {"source": "1851507073", "flow": 123, "target": "1023055126"}, {"source": "1568493062", "flow": 175, "target": "1023055126"}, {"source": "1295733772", "flow": 20, "target": "1023055126"}, {"source": "1699760587", "flow": 675, "target": "1023055126"}, {"source": "1942254883", "flow": 93, "target": "1023055126"}, {"source": "1902903651", "flow": 36, "target": "1023055126"}, {"source": "1316921166", "flow": 407, "target": "1023055126"}, {"source": "1760672026", "flow": 75, "target": "1023055126"}, {"source": "1396909255", "flow": 109, "target": "1023055126"}, {"source": "1902099443", "flow": 141, "target": "1023055126"}, {"source": "1265556898", "flow": 31, "target": "1023055126"}, {"source": "1265464499", "flow": 94, "target": "1023055126"}, {"source": "1265419725", "flow": 42, "target": "1023055126"}, {"source": "1508884875", "flow": 19, "target": "1023055126"}, {"source": "1942404728", "flow": 56, "target": "1023055126"}, {"source": "1477537173", "flow": 185, "target": "1023055126"}, {"source": "1518919224", "flow": 18, "target": "1023055126"}, {"source": "1912989989", "flow": 73, "target": "1023055126"}, {"source": "1689617433", "flow": 329, "target": "1023055126"}, {"source": "1043218654", "flow": 92, "target": "1023055126"}, {"source": "1386976207", "flow": 56, "target": "1023055126"}, {"source": "1902899677", "flow": 22, "target": "1023055126"}, {"source": "1477517167", "flow": 39, "target": "1023055126"}, {"source": "1538356571", "flow": 44, "target": "1023055126"}, {"source": "1912953555", "flow": 62, "target": "1023055126"}, {"source": "1265402879", "flow": 41, "target": "1023055126"}, {"source": "1932128782", "flow": 69, "target": "1023055126"}, {"source": "1306183702", "flow": 83, "target": "1023055126"}, {"source": "1699970566", "flow": 30, "target": "1023055126"}, {"source": "1386691368", "flow": 29, "target": "1023055126"}, {"source": "1316977861", "flow": 209, "target": "1023055126"}, {"source": "1952358541", "flow": 52, "target": "1023055126"}, {"source": "1023094851", "flow": 80, "target": "1023055126"}, {"source": "1538103692", "flow": 181, "target": "1023055126"}, {"source": "1740377852", "flow": 71, "target": "1023055126"}, {"source": "1689616294", "flow": 217, "target": "1023055126"}, {"source": "1255370755", "flow": 29, "target": "1023055126"}, {"source": "1134163694", "flow": 26, "target": "1023055126"}, {"source": "1205978012", "flow": 67, "target": "1023055126"}, {"source": "1649219742", "flow": 63, "target": "1023055126"}, {"source": "1720286487", "flow": 140, "target": "1023055126"}, {"source": "1295708576", "flow": 30, "target": "1023055126"}, {"source": "1871548818", "flow": 543, "target": "1023055126"}, {"source": "1851330906", "flow": 48, "target": "1023055126"}, {"source": "1730111642", "flow": 106, "target": "1023055126"}, {"source": "1730113440", "flow": 42, "target": "1023055126"}, {"source": "1194724864", "flow": 331, "target": "1023055126"}, {"source": "1932316429", "flow": 67, "target": "1023055126"}, {"source": "1639500739", "flow": 20, "target": "1023055126"}, {"source": "1336147685", "flow": 45, "target": "1023055126"}, {"source": "1497718712", "flow": 31, "target": "1023055126"}, {"source": "1336188457", "flow": 49, "target": "1023055126"}, {"source": "1134321235", "flow": 83, "target": "1023055126"}, {"source": "1306822234", "flow": 127, "target": "1023055126"}, {"source": "1639113509", "flow": 209, "target": "1023055126"}, {"source": "1417903378", "flow": 89, "target": "1023055126"}, {"source": "1598083578", "flow": 32, "target": "1023055126"}, {"source": "1215966726", "flow": 27, "target": "1023055126"}, {"source": "1073610754", "flow": 973, "target": "1023055126"}, {"source": "1558355941", "flow": 53, "target": "1023055126"}, {"source": "1417946203", "flow": 75, "target": "1023055126"}, {"source": "1134346323", "flow": 235, "target": "1023055126"}, {"source": "1740353002", "flow": 26, "target": "1023055126"}, {"source": "1912984758", "flow": 736, "target": "1023055126"}, {"source": "1417952581", "flow": 52, "target": "1023055126"}, {"source": "1144205519", "flow": 43, "target": "1023055126"}, {"source": "1144283896", "flow": 576, "target": "1023055126"}, {"source": "1356389597", "flow": 77, "target": "1023055126"}, {"source": "1417997990", "flow": 41, "target": "1023055126"}, {"source": "1932190360", "flow": 115, "target": "1023055126"}, {"source": "1972506186", "flow": 368, "target": "1023055126"}, {"source": "1588777445", "flow": 60, "target": "1023055126"}, {"source": "1427044148", "flow": 67, "target": "1023055126"}, {"source": "1013991850", "flow": 812, "target": "1023055126"}, {"source": "1801069471", "flow": 55, "target": "1023055126"}, {"source": "1174584403", "flow": 49, "target": "1023055126"}, {"source": "1346239498", "flow": 70, "target": "1023055126"}, {"source": "1427055326", "flow": 28, "target": "1023055126"}, {"source": "1427079946", "flow": 113, "target": "1023055126"}, {"source": "1740279660", "flow": 111, "target": "1023055126"}, {"source": "1932194966", "flow": 54, "target": "1023055126"}, {"source": "1437101524", "flow": 21, "target": "1023055126"}, {"source": "1184612921", "flow": 133, "target": "1023055126"}, {"source": "1437136827", "flow": 638, "target": "1023055126"}, {"source": "1639226582", "flow": 437, "target": "1023055126"}, {"source": "1962499582", "flow": 586, "target": "1023055126"}, {"source": "1184619124", "flow": 50, "target": "1023055126"}, {"source": "1962457069", "flow": 52, "target": "1023055126"}, {"source": "1184663494", "flow": 45, "target": "1023055126"}, {"source": "1336189521", "flow": 57, "target": "1023055126"}, {"source": "1609917129", "flow": 118, "target": "1023055126"}, {"source": "1538104526", "flow": 71, "target": "1023055126"}, {"source": "1851549240", "flow": 46, "target": "1023055126"}, {"source": "1902812571", "flow": 177, "target": "1023055126"}, {"source": "1679546717", "flow": 84, "target": "1023055126"}, {"source": "1538105242", "flow": 190, "target": "1023055126"}, {"source": "1881646073", "flow": 111, "target": "1023055126"}, {"source": "1912993262", "flow": 28, "target": "1023055126"}, {"source": "1255318051", "flow": 311, "target": "1023055126"}, {"source": "1952392797", "flow": 34, "target": "1023055126"}, {"source": "1326023789", "flow": 528, "target": "1023055126"}, {"source": "1750355129", "flow": 150, "target": "1023055126"}, {"source": "1538163126", "flow": 37, "target": "1023055126"}, {"source": "1396932463", "flow": 138, "target": "1023055126"}, {"source": "1467498279", "flow": 35, "target": "1023055126"}, {"source": "1902845118", "flow": 116, "target": "1023055126"}, {"source": "1255301800", "flow": 130, "target": "1023055126"}, {"source": "1538109103", "flow": 84, "target": "1023055126"}, {"source": "1679504765", "flow": 15, "target": "1023055126"}, {"source": "1821083973", "flow": 49, "target": "1023055126"}, {"source": "1245325422", "flow": 146, "target": "1023055126"}, {"source": "1326046673", "flow": 78, "target": "1023055126"}, {"source": "1972540557", "flow": 169, "target": "1023055126"}, {"source": "1326093345", "flow": 56, "target": "1023055126"}, {"source": "1245313741", "flow": 149, "target": "1023055126"}, {"source": "1952473431", "flow": 72, "target": "1023055126"}, {"source": "1245274778", "flow": 33, "target": "1023055126"}, {"source": "1104837327", "flow": 30, "target": "1023055126"}, {"source": "1790762219", "flow": 81, "target": "1023055126"}, {"source": "1326149907", "flow": 140, "target": "1023055126"}, {"source": "1043219165", "flow": 43, "target": "1023055126"}, {"source": "1386683118", "flow": 47, "target": "1023055126"}, {"source": "1710181201", "flow": 127, "target": "1023055126"}, {"source": "1770578882", "flow": 48, "target": "1023055126"}, {"source": "1043232879", "flow": 96, "target": "1023055126"}, {"source": "1114020336", "flow": 69, "target": "1023055126"}, {"source": "1295872216", "flow": 35, "target": "1023055126"}, {"source": "1972549533", "flow": 267, "target": "1023055126"}, {"source": "1245215649", "flow": 232, "target": "1023055126"}, {"source": "1962418038", "flow": 45, "target": "1023055126"}, {"source": "1114074085", "flow": 28, "target": "1023055126"}, {"source": "1629249891", "flow": 114, "target": "1023055126"}, {"source": "1457306565", "flow": 69, "target": "1023055126"}, {"source": "1902013410", "flow": 22, "target": "1023055126"}, {"source": "1447307251", "flow": 30, "target": "1023055126"}, {"source": "1912970021", "flow": 37, "target": "1023055126"}, {"source": "1710919295", "flow": 28, "target": "1023055126"}, {"source": "1396721106", "flow": 428, "target": "1023055126"}, {"source": "1770637266", "flow": 107, "target": "1023055126"}, {"source": "1407830102", "flow": 67, "target": "1023055126"}, {"source": "1750410452", "flow": 611, "target": "1023055126"}, {"source": "1790730448", "flow": 261, "target": "1023055126"}, {"source": "1982712162", "flow": 32, "target": "1023055126"}, {"source": "1376756742", "flow": 147, "target": "1023055126"}, {"source": "1447299698", "flow": 77, "target": "1023055126"}, {"source": "1053337717", "flow": 107, "target": "1023055126"}, {"source": "1801878616", "flow": 35, "target": "1023055126"}, {"source": "1609039973", "flow": 87, "target": "1023055126"}, {"source": "1407833825", "flow": 219, "target": "1023055126"}, {"source": "1972538486", "flow": 58, "target": "1023055126"}, {"source": "1114956687", "flow": 75, "target": "1023055126"}, {"source": "1609014489", "flow": 486, "target": "1023055126"}, {"source": "1821060526", "flow": 304, "target": "1023055126"}, {"source": "1487840872", "flow": 61, "target": "1023055126"}, {"source": "1407890593", "flow": 120, "target": "1023055126"}, {"source": "1053406405", "flow": 1049, "target": "1023055126"}, {"source": "1740377845", "flow": 35, "target": "1023055126"}, {"source": "1891749420", "flow": 34, "target": "1023055126"}, {"source": "1235299975", "flow": 123, "target": "1023055126"}, {"source": "1750394060", "flow": 104, "target": "1023055126"}, {"source": "1447242565", "flow": 409, "target": "1023055126"}, {"source": "1407892516", "flow": 68, "target": "1023055126"}, {"source": "1982668976", "flow": 23, "target": "1023055126"}, {"source": "1972524429", "flow": 24, "target": "1023055126"}, {"source": "1376607259", "flow": 33, "target": "1023055126"}, {"source": "1578510418", "flow": 17, "target": "1023055126"}, {"source": "1891005856", "flow": 82, "target": "1023055126"}, {"source": "1366541302", "flow": 43, "target": "1023055126"}, {"source": "1932183779", "flow": 577, "target": "1023055126"}, {"source": "1063457315", "flow": 16, "target": "1023055126"}, {"source": "1134103831", "flow": 97, "target": "1023055126"}, {"source": "1235116518", "flow": 70, "target": "1023055126"}, {"source": "1417091257", "flow": 318, "target": "1023055126"}, {"source": "1851478747", "flow": 428, "target": "1023055126"}, {"source": "1366429151", "flow": 350, "target": "1023055126"}, {"source": "1356436174", "flow": 34, "target": "1023055126"}, {"source": "1972547891", "flow": 38, "target": "1023055126"}, {"source": "1972690006", "flow": 20, "target": "1023055126"}, {"source": "1447234141", "flow": 417, "target": "1023055126"}, {"source": "1063673622", "flow": 47, "target": "1023055126"}, {"source": "1558386771", "flow": 24, "target": "1023055126"}, {"source": "1578677274", "flow": 1849, "target": "1023055126"}, {"source": "1932217171", "flow": 21, "target": "1023055126"}, {"source": "1225222367", "flow": 33, "target": "1023055126"}, {"source": "1073505830", "flow": 132, "target": "1023055126"}, {"source": "1003862566", "flow": 116, "target": "1023055126"}, {"source": "1225089097", "flow": 202, "target": "1023055126"}, {"source": "1912982513", "flow": 162, "target": "1023055126"}, {"source": "1801894142", "flow": 74, "target": "1023055126"}, {"source": "1033199401", "flow": 59, "target": "1023055126"}, {"source": "1689645707", "flow": 17, "target": "1023055126"}, {"source": "1669563920", "flow": 59, "target": "1023055126"}, {"source": "1073557831", "flow": 277, "target": "1023055126"}, {"source": "1992960298", "flow": 93, "target": "1023055126"}, {"source": "1851688865", "flow": 123, "target": "1023055126"}, {"source": "1811971534", "flow": 128, "target": "1023055126"}, {"source": "1720245301", "flow": 33, "target": "1023055126"}, {"source": "1649262338", "flow": 115, "target": "1023055126"}, {"source": "1801888060", "flow": 72, "target": "1023055126"}, {"source": "1609917129", "flow": 223, "target": "1023060472"}, {"source": "1841498821", "flow": 117, "target": "1023060472"}, {"source": "1699970566", "flow": 249, "target": "1023060472"}, {"source": "1982712162", "flow": 117, "target": "1023060472"}, {"source": "1194796391", "flow": 333, "target": "1023060472"}, {"source": "1932316429", "flow": 115, "target": "1023060472"}, {"source": "1295708576", "flow": 215, "target": "1023060472"}, {"source": "1033199401", "flow": 57, "target": "1023060472"}, {"source": "1962418038", "flow": 155, "target": "1023060472"}, {"source": "1689645707", "flow": 208, "target": "1023060472"}, {"source": "1225222367", "flow": 64, "target": "1023060472"}, {"source": "1487840872", "flow": 145, "target": "1023060472"}, {"source": "1235299975", "flow": 247, "target": "1023060472"}, {"source": "1801878616", "flow": 153, "target": "1023060472"}, {"source": "1770563215", "flow": 87, "target": "1023060472"}, {"source": "1326149907", "flow": 29, "target": "1023060472"}, {"source": "1326149907", "flow": 32, "target": "1023061405"}, {"source": "1073610754", "flow": 62, "target": "1023061405"}, {"source": "1326149907", "flow": 145, "target": "1023061496"}, {"source": "1073610754", "flow": 188, "target": "1023061496"}, {"source": "1326149907", "flow": 39, "target": "1023083060"}, {"source": "1275520827", "flow": 49, "target": "1023089984"}, {"source": "1073610754", "flow": 60, "target": "1023089984"}, {"source": "1326149907", "flow": 18, "target": "1023089984"}, {"source": "1053408567", "flow": 54, "target": "1023089984"}, {"source": "1073610754", "flow": 50, "target": "1023418035"}, {"source": "1326149907", "flow": 75, "target": "1033102942"}, {"source": "1326149907", "flow": 15, "target": "1033228168"}, {"source": "1326149907", "flow": 104, "target": "1043240682"}, {"source": "1073610754", "flow": 80, "target": "1043240682"}, {"source": "1073610754", "flow": 24, "target": "1043265564"}, {"source": "1073610754", "flow": 300, "target": "1043270564"}, {"source": "1326149907", "flow": 54, "target": "1043270564"}, {"source": "1740353002", "flow": 23, "target": "1043282338"}, {"source": "1073610754", "flow": 38, "target": "1043282338"}, {"source": "1902903651", "flow": 38, "target": "1043282338"}, {"source": "1326149907", "flow": 74, "target": "1043292899"}, {"source": "1073610754", "flow": 537, "target": "1043292899"}, {"source": "1255318051", "flow": 21, "target": "1043293608"}, {"source": "1396729091", "flow": 35, "target": "1043293608"}, {"source": "1750410452", "flow": 33, "target": "1043293608"}, {"source": "1942284658", "flow": 36, "target": "1043293608"}, {"source": "1285611715", "flow": 33, "target": "1043293608"}, {"source": "1851507073", "flow": 36, "target": "1043293608"}, {"source": "1306993282", "flow": 73, "target": "1043293608"}, {"source": "1477542942", "flow": 571, "target": "1043293608"}, {"source": "1265631675", "flow": 18, "target": "1043293608"}, {"source": "1316921166", "flow": 49, "target": "1043293608"}, {"source": "1689617433", "flow": 41, "target": "1043293608"}, {"source": "1316977861", "flow": 16, "target": "1043293608"}, {"source": "1326023789", "flow": 44, "target": "1043293608"}, {"source": "1245325422", "flow": 45, "target": "1043293608"}, {"source": "1245215649", "flow": 19, "target": "1043293608"}, {"source": "1326149907", "flow": 175, "target": "1043293608"}, {"source": "1790730448", "flow": 40, "target": "1043293608"}, {"source": "1821060526", "flow": 31, "target": "1043293608"}, {"source": "1447234141", "flow": 41, "target": "1043293608"}, {"source": "1306822234", "flow": 56, "target": "1043293608"}, {"source": "1720286487", "flow": 32, "target": "1043293608"}, {"source": "1871548818", "flow": 46, "target": "1043293608"}, {"source": "1437136827", "flow": 26, "target": "1043293608"}, {"source": "1740279660", "flow": 39, "target": "1043293608"}, {"source": "1013991850", "flow": 50, "target": "1043293608"}, {"source": "1972506186", "flow": 45, "target": "1043293608"}, {"source": "1144283896", "flow": 35, "target": "1043293608"}, {"source": "1912984758", "flow": 50, "target": "1043293608"}, {"source": "1639113509", "flow": 30, "target": "1043293608"}, {"source": "1417091257", "flow": 46, "target": "1043293608"}, {"source": "1134103831", "flow": 40, "target": "1043293608"}, {"source": "1376756742", "flow": 31, "target": "1043293608"}, {"source": "1396707923", "flow": 43, "target": "1043293608"}, {"source": "1073610754", "flow": 108, "target": "1053342816"}, {"source": "1689645707", "flow": 26, "target": "1053361642"}, {"source": "1073610754", "flow": 62, "target": "1053361642"}, {"source": "1699970566", "flow": 18, "target": "1053361642"}, {"source": "1326149907", "flow": 27, "target": "1053361642"}, {"source": "1073610754", "flow": 41, "target": "1053375576"}, {"source": "1326149907", "flow": 27, "target": "1053499350"}, {"source": "1073610754", "flow": 38, "target": "1063484483"}, {"source": "1740353002", "flow": 65, "target": "1073504981"}, {"source": "1902903651", "flow": 64, "target": "1073504981"}, {"source": "1326149907", "flow": 15, "target": "1073504981"}, {"source": "1073610754", "flow": 73, "target": "1073504981"}, {"source": "1073610754", "flow": 47, "target": "1073518007"}, {"source": "1073610754", "flow": 84, "target": "1073519377"}, {"source": "1073610754", "flow": 54, "target": "1073568754"}, {"source": "1073610754", "flow": 45, "target": "1073580130"}, {"source": "1073610754", "flow": 19, "target": "1073601043"}, {"source": "1073610754", "flow": 12, "target": "1073605879"}, {"source": "1326149907", "flow": 15, "target": "1073606901"}, {"source": "1265556898", "flow": 36, "target": "1083612881"}, {"source": "1770637266", "flow": 32, "target": "1083617245"}, {"source": "1073610754", "flow": 44, "target": "1083617245"}, {"source": "1326149907", "flow": 69, "target": "1083759633"}, {"source": "1326149907", "flow": 83, "target": "1083778633"}, {"source": "1073610754", "flow": 207, "target": "1083778633"}, {"source": "1215966726", "flow": 25, "target": "1093705428"}, {"source": "1326149907", "flow": 159, "target": "1093705428"}, {"source": "1740377845", "flow": 52, "target": "1093705428"}, {"source": "1760672026", "flow": 21, "target": "1093705428"}, {"source": "1265631675", "flow": 40, "target": "1093705428"}, {"source": "1073610754", "flow": 435, "target": "1093705428"}, {"source": "1902903651", "flow": 54, "target": "1093705428"}, {"source": "1053408567", "flow": 4208, "target": "1093705428"}, {"source": "1275520827", "flow": 120, "target": "1093705428"}, {"source": "1134321235", "flow": 27, "target": "1093705428"}, {"source": "1043232879", "flow": 28, "target": "1093705428"}, {"source": "1306183702", "flow": 24, "target": "1093705428"}, {"source": "1437136827", "flow": 20, "target": "1093705428"}, {"source": "1740353002", "flow": 45, "target": "1093705428"}, {"source": "1538356571", "flow": 41, "target": "1093705428"}, {"source": "1326149907", "flow": 24, "target": "1093716979"}, {"source": "1073610754", "flow": 230, "target": "1093716979"}, {"source": "1912970021", "flow": 32, "target": "1104137215"}, {"source": "1891741435", "flow": 14, "target": "1104137215"}, {"source": "1649271206", "flow": 42, "target": "1104137215"}, {"source": "1184619124", "flow": 99, "target": "1104137215"}, {"source": "1386976207", "flow": 60, "target": "1104137215"}, {"source": "1023094851", "flow": 18, "target": "1104804566"}, {"source": "1073610754", "flow": 501, "target": "1104804566"}, {"source": "1326149907", "flow": 21, "target": "1104804566"}, {"source": "1073610754", "flow": 834, "target": "1104812684"}, {"source": "1326149907", "flow": 147, "target": "1104874684"}, {"source": "1073610754", "flow": 443, "target": "1104874684"}, {"source": "1326023789", "flow": 19, "target": "1104874684"}, {"source": "1326149907", "flow": 39, "target": "1114003175"}, {"source": "1073610754", "flow": 67, "target": "1114003175"}, {"source": "1265631675", "flow": 21, "target": "1114003175"}, {"source": "1083606248", "flow": 375, "target": "1114003175"}, {"source": "1093830176", "flow": 489, "target": "1114003175"}, {"source": "1770578882", "flow": 102, "target": "1114003175"}, {"source": "1740377845", "flow": 23, "target": "1114003175"}, {"source": "1134321235", "flow": 32, "target": "1114003175"}, {"source": "1073610754", "flow": 109, "target": "1114033628"}, {"source": "1073610754", "flow": 23, "target": "1114150992"}, {"source": "1073610754", "flow": 19, "target": "1114919339"}, {"source": "1326149907", "flow": 38, "target": "1114919339"}, {"source": "1073610754", "flow": 389, "target": "1114972007"}, {"source": "1740353002", "flow": 22, "target": "1114981768"}, {"source": "1073610754", "flow": 400, "target": "1124058615"}, {"source": "1770637266", "flow": 19, "target": "1124058615"}, {"source": "1073610754", "flow": 267, "target": "1124136593"}, {"source": "1326149907", "flow": 66, "target": "1124136593"}, {"source": "1770637266", "flow": 24, "target": "1124136593"}, {"source": "1265556898", "flow": 14, "target": "1134125016"}, {"source": "1073610754", "flow": 39, "target": "1144203563"}, {"source": "1841239647", "flow": 28, "target": "1144211020"}, {"source": "1073610754", "flow": 30, "target": "1144211301"}, {"source": "1073610754", "flow": 25, "target": "1144213117"}, {"source": "1073610754", "flow": 18, "target": "1144236571"}, {"source": "1194796391", "flow": 80, "target": "1144266024"}, {"source": "1235299975", "flow": 34, "target": "1144266024"}, {"source": "1326149907", "flow": 51, "target": "1144266024"}, {"source": "1962418038", "flow": 38, "target": "1144266024"}, {"source": "1295708576", "flow": 27, "target": "1144266024"}, {"source": "1801878616", "flow": 24, "target": "1144266024"}, {"source": "1689645707", "flow": 34, "target": "1144266024"}, {"source": "1699970566", "flow": 48, "target": "1144266024"}, {"source": "1609917129", "flow": 28, "target": "1144266024"}, {"source": "1932316429", "flow": 31, "target": "1144266024"}, {"source": "1770563215", "flow": 16, "target": "1144266024"}, {"source": "1689645707", "flow": 16, "target": "1144298514"}, {"source": "1194796391", "flow": 74, "target": "1144298514"}, {"source": "1073610754", "flow": 17, "target": "1154310514"}, {"source": "1073610754", "flow": 97, "target": "1154317527"}, {"source": "1073610754", "flow": 17, "target": "1154386431"}, {"source": "1326149907", "flow": 122, "target": "1154435824"}, {"source": "1073610754", "flow": 228, "target": "1154435824"}, {"source": "1326149907", "flow": 42, "target": "1164403861"}, {"source": "1699970566", "flow": 264, "target": "1164475711"}, {"source": "1225222367", "flow": 74, "target": "1164475711"}, {"source": "1194796391", "flow": 297, "target": "1164475711"}, {"source": "1487840872", "flow": 139, "target": "1164475711"}, {"source": "1235299975", "flow": 89, "target": "1164475711"}, {"source": "1982712162", "flow": 130, "target": "1164475711"}, {"source": "1932316429", "flow": 52, "target": "1164475711"}, {"source": "1801878616", "flow": 60, "target": "1164475711"}, {"source": "1770563215", "flow": 75, "target": "1164475711"}, {"source": "1609917129", "flow": 157, "target": "1164475711"}, {"source": "1326149907", "flow": 33, "target": "1164475711"}, {"source": "1689645707", "flow": 274, "target": "1164475711"}, {"source": "1033199401", "flow": 150, "target": "1164475711"}, {"source": "1962418038", "flow": 108, "target": "1164475711"}, {"source": "1295708576", "flow": 185, "target": "1164475711"}, {"source": "1841498821", "flow": 101, "target": "1164475711"}, {"source": "1073610754", "flow": 24, "target": "1164492195"}, {"source": "1972524429", "flow": 44, "target": "1164590386"}, {"source": "1568493062", "flow": 136, "target": "1164590386"}, {"source": "1912953555", "flow": 20, "target": "1164590386"}, {"source": "1043218654", "flow": 110, "target": "1164590386"}, {"source": "1538105242", "flow": 16, "target": "1164590386"}, {"source": "1043219165", "flow": 49, "target": "1164590386"}, {"source": "1043232879", "flow": 34, "target": "1164590386"}, {"source": "1821060526", "flow": 16, "target": "1164590386"}, {"source": "1447234141", "flow": 21, "target": "1164590386"}, {"source": "1437260296", "flow": 22, "target": "1164590386"}, {"source": "1578677274", "flow": 56, "target": "1164590386"}, {"source": "1073557831", "flow": 21, "target": "1164590386"}, {"source": "1770637266", "flow": 26, "target": "1164590386"}, {"source": "1073610754", "flow": 493, "target": "1164590386"}, {"source": "1912984758", "flow": 22, "target": "1164590386"}, {"source": "1396909255", "flow": 20, "target": "1164590386"}, {"source": "1760672026", "flow": 23, "target": "1164590386"}, {"source": "1750410452", "flow": 19, "target": "1164590386"}, {"source": "1972549533", "flow": 23, "target": "1164590386"}, {"source": "1083606248", "flow": 26, "target": "1164590386"}, {"source": "1972540557", "flow": 102, "target": "1164590386"}, {"source": "1619916970", "flow": 30, "target": "1164590386"}, {"source": "1740377845", "flow": 19, "target": "1164590386"}, {"source": "1114956687", "flow": 155, "target": "1164590386"}, {"source": "1629249891", "flow": 18, "target": "1164590386"}, {"source": "1134321235", "flow": 28, "target": "1164590386"}, {"source": "1639113509", "flow": 15, "target": "1164590386"}, {"source": "1346239498", "flow": 39, "target": "1164590386"}, {"source": "1336189521", "flow": 26, "target": "1164590386"}, {"source": "1932217171", "flow": 22, "target": "1164590386"}, {"source": "1871548818", "flow": 18, "target": "1164590386"}, {"source": "1639500739", "flow": 34, "target": "1164590386"}, {"source": "1194967380", "flow": 28, "target": "1164590386"}, {"source": "1649219742", "flow": 18, "target": "1164590386"}, {"source": "1215966726", "flow": 40, "target": "1164590386"}, {"source": "1326149907", "flow": 27, "target": "1164590386"}, {"source": "1851549240", "flow": 21, "target": "1164590386"}, {"source": "1992960298", "flow": 14, "target": "1164590386"}, {"source": "1316921166", "flow": 17, "target": "1164590386"}, {"source": "1306993282", "flow": 13, "target": "1164590386"}, {"source": "1942254883", "flow": 20, "target": "1164590386"}, {"source": "1275515223", "flow": 86, "target": "1164590386"}, {"source": "1851507073", "flow": 50, "target": "1164590386"}, {"source": "1306822234", "flow": 64, "target": "1164590386"}, {"source": "1356389597", "flow": 15, "target": "1174553598"}, {"source": "1073610754", "flow": 29, "target": "1174582050"}, {"source": "1295708576", "flow": 16, "target": "1174706576"}, {"source": "1194796391", "flow": 25, "target": "1174706576"}, {"source": "1699970566", "flow": 34, "target": "1174706576"}, {"source": "1689645707", "flow": 33, "target": "1174706576"}, {"source": "1487840872", "flow": 17, "target": "1174706576"}, {"source": "1033199401", "flow": 13, "target": "1174706576"}, {"source": "1801878616", "flow": 40, "target": "1184695389"}, {"source": "1699970566", "flow": 140, "target": "1184695389"}, {"source": "1295708576", "flow": 36, "target": "1184695389"}, {"source": "1689645707", "flow": 135, "target": "1184695389"}, {"source": "1194796391", "flow": 167, "target": "1184695389"}, {"source": "1225222367", "flow": 33, "target": "1184695389"}, {"source": "1932316429", "flow": 57, "target": "1184695389"}, {"source": "1609917129", "flow": 56, "target": "1184695389"}, {"source": "1962418038", "flow": 120, "target": "1184695389"}, {"source": "1235299975", "flow": 37, "target": "1184695389"}, {"source": "1033199401", "flow": 83, "target": "1184695389"}, {"source": "1770563215", "flow": 57, "target": "1184695389"}, {"source": "1326149907", "flow": 25, "target": "1184706152"}, {"source": "1326149907", "flow": 53, "target": "1194728808"}, {"source": "1902903651", "flow": 35, "target": "1194728808"}, {"source": "1073610754", "flow": 30, "target": "1194728808"}, {"source": "1740353002", "flow": 45, "target": "1194728808"}, {"source": "1073610754", "flow": 12, "target": "1194770404"}, {"source": "1073610754", "flow": 17, "target": "1194779520"}, {"source": "1326149907", "flow": 66, "target": "1194789818"}, {"source": "1073610754", "flow": 145, "target": "1194789818"}, {"source": "1194796391", "flow": 48, "target": "1205844495"}, {"source": "1689645707", "flow": 26, "target": "1205844495"}, {"source": "1689645707", "flow": 18, "target": "1205860335"}, {"source": "1194796391", "flow": 27, "target": "1205860335"}, {"source": "1073610754", "flow": 25, "target": "1205882669"}, {"source": "1073610754", "flow": 52, "target": "1215941646"}, {"source": "1073610754", "flow": 16, "target": "1215976675"}, {"source": "1770563215", "flow": 22, "target": "1225032881"}, {"source": "1689645707", "flow": 32, "target": "1225032881"}, {"source": "1699970566", "flow": 26, "target": "1225032881"}, {"source": "1194796391", "flow": 16, "target": "1225032881"}, {"source": "1073610754", "flow": 184, "target": "1225034333"}, {"source": "1326149907", "flow": 23, "target": "1225034333"}, {"source": "1073610754", "flow": 17, "target": "1225050396"}, {"source": "1326149907", "flow": 79, "target": "1225050396"}, {"source": "1073610754", "flow": 131, "target": "1225081516"}, {"source": "1194796391", "flow": 47, "target": "1225195340"}, {"source": "1740353002", "flow": 33, "target": "1235139312"}, {"source": "1508839622", "flow": 27, "target": "1235139312"}, {"source": "1073610754", "flow": 689, "target": "1235139312"}, {"source": "1073505830", "flow": 97, "target": "1235139312"}, {"source": "1306822234", "flow": 29, "target": "1235139312"}, {"source": "1326149907", "flow": 117, "target": "1235139312"}, {"source": "1336189521", "flow": 56, "target": "1235139312"}, {"source": "1902903651", "flow": 67, "target": "1235139312"}, {"source": "1619916970", "flow": 33, "target": "1235139312"}, {"source": "1043232879", "flow": 17, "target": "1235139312"}, {"source": "1760672026", "flow": 60, "target": "1235139312"}, {"source": "1417946203", "flow": 97, "target": "1235139312"}, {"source": "1134321235", "flow": 48, "target": "1235139312"}, {"source": "1265631675", "flow": 39, "target": "1235139312"}, {"source": "1245215649", "flow": 61, "target": "1235387044"}, {"source": "1821060526", "flow": 23, "target": "1235387044"}, {"source": "1003862566", "flow": 26, "target": "1235387044"}, {"source": "1316977861", "flow": 42, "target": "1235387044"}, {"source": "1871548818", "flow": 12, "target": "1235387044"}, {"source": "1437136827", "flow": 26, "target": "1235387044"}, {"source": "1740353002", "flow": 28, "target": "1235387044"}, {"source": "1932128782", "flow": 98, "target": "1235387044"}, {"source": "1306993282", "flow": 17, "target": "1235387044"}, {"source": "1912984758", "flow": 30, "target": "1235387044"}, {"source": "1326149907", "flow": 42, "target": "1235387044"}, {"source": "1134321235", "flow": 29, "target": "1235387044"}, {"source": "1073610754", "flow": 21, "target": "1235387044"}, {"source": "1396729091", "flow": 18, "target": "1235387044"}, {"source": "1851478747", "flow": 35, "target": "1235387044"}, {"source": "1396707923", "flow": 17, "target": "1235387044"}, {"source": "1326149907", "flow": 45, "target": "1245209790"}, {"source": "1902903651", "flow": 26, "target": "1245209790"}, {"source": "1699970566", "flow": 115, "target": "1245259878"}, {"source": "1689645707", "flow": 159, "target": "1245259878"}, {"source": "1487840872", "flow": 29, "target": "1245259878"}, {"source": "1295708576", "flow": 61, "target": "1245259878"}, {"source": "1801878616", "flow": 35, "target": "1245259878"}, {"source": "1033199401", "flow": 74, "target": "1245259878"}, {"source": "1932316429", "flow": 37, "target": "1245259878"}, {"source": "1982712162", "flow": 43, "target": "1245259878"}, {"source": "1235299975", "flow": 70, "target": "1245259878"}, {"source": "1962418038", "flow": 70, "target": "1245259878"}, {"source": "1770563215", "flow": 30, "target": "1245259878"}, {"source": "1225222367", "flow": 63, "target": "1245259878"}, {"source": "1609917129", "flow": 46, "target": "1245259878"}, {"source": "1194796391", "flow": 205, "target": "1245259878"}, {"source": "1568417772", "flow": 33, "target": "1245275254"}, {"source": "1760672026", "flow": 20, "target": "1245275254"}, {"source": "1043232879", "flow": 114, "target": "1245275254"}, {"source": "1851330906", "flow": 52, "target": "1245275254"}, {"source": "1649219742", "flow": 58, "target": "1245275254"}, {"source": "1538109103", "flow": 25, "target": "1245275254"}, {"source": "1932128782", "flow": 64, "target": "1245275254"}, {"source": "1396909255", "flow": 64, "target": "1245275254"}, {"source": "1336189521", "flow": 23, "target": "1245275254"}, {"source": "1134321235", "flow": 30, "target": "1245275254"}, {"source": "1447299698", "flow": 24, "target": "1245275254"}, {"source": "1306183702", "flow": 35, "target": "1245275254"}, {"source": "1902845118", "flow": 49, "target": "1245275254"}, {"source": "1003862566", "flow": 110, "target": "1245275254"}, {"source": "1942254883", "flow": 21, "target": "1245275254"}, {"source": "1356389597", "flow": 19, "target": "1245275254"}, {"source": "1629249891", "flow": 29, "target": "1245275254"}, {"source": "1336188457", "flow": 33, "target": "1245275254"}, {"source": "1508804337", "flow": 41, "target": "1245275254"}, {"source": "1992960298", "flow": 19, "target": "1245275254"}, {"source": "1073610754", "flow": 79, "target": "1255302923"}, {"source": "1366429151", "flow": 49, "target": "1255428736"}, {"source": "1437136827", "flow": 275, "target": "1255428736"}, {"source": "1073610754", "flow": 854, "target": "1255428736"}, {"source": "1871548818", "flow": 93, "target": "1255428736"}, {"source": "1326149907", "flow": 306, "target": "1255428736"}, {"source": "1326023789", "flow": 205, "target": "1255428736"}, {"source": "1134103831", "flow": 20, "target": "1255428736"}, {"source": "1609917129", "flow": 73, "target": "1265413405"}, {"source": "1689645707", "flow": 216, "target": "1265413405"}, {"source": "1194796391", "flow": 311, "target": "1265413405"}, {"source": "1235299975", "flow": 123, "target": "1265413405"}, {"source": "1962418038", "flow": 90, "target": "1265413405"}, {"source": "1801878616", "flow": 54, "target": "1265413405"}, {"source": "1982712162", "flow": 38, "target": "1265413405"}, {"source": "1295708576", "flow": 42, "target": "1265413405"}, {"source": "1699970566", "flow": 139, "target": "1265413405"}, {"source": "1225222367", "flow": 71, "target": "1265413405"}, {"source": "1770563215", "flow": 42, "target": "1265413405"}, {"source": "1487840872", "flow": 37, "target": "1265413405"}, {"source": "1033199401", "flow": 96, "target": "1265413405"}, {"source": "1932316429", "flow": 92, "target": "1265413405"}, {"source": "1629249891", "flow": 94, "target": "1265445506"}, {"source": "1750320966", "flow": 48, "target": "1265445506"}, {"source": "1760672026", "flow": 75, "target": "1265445506"}, {"source": "1043218654", "flow": 39, "target": "1265445506"}, {"source": "1902845118", "flow": 143, "target": "1265445506"}, {"source": "1508839622", "flow": 60, "target": "1265445506"}, {"source": "1366429151", "flow": 32, "target": "1265445506"}, {"source": "1417091257", "flow": 19, "target": "1265445506"}, {"source": "1609014489", "flow": 22, "target": "1265445506"}, {"source": "1992960298", "flow": 168, "target": "1265445506"}, {"source": "1972549533", "flow": 19, "target": "1265445506"}, {"source": "1699760587", "flow": 24, "target": "1265445506"}, {"source": "1255301800", "flow": 152, "target": "1265445506"}, {"source": "1326023789", "flow": 50, "target": "1265445506"}, {"source": "1912984758", "flow": 27, "target": "1265445506"}, {"source": "1568493062", "flow": 61, "target": "1265445506"}, {"source": "1265631675", "flow": 139, "target": "1265445506"}, {"source": "1134321235", "flow": 148, "target": "1265445506"}, {"source": "1851549240", "flow": 280, "target": "1265445506"}, {"source": "1245325422", "flow": 14, "target": "1265445506"}, {"source": "1639113509", "flow": 24, "target": "1265445506"}, {"source": "1538109103", "flow": 92, "target": "1265445506"}, {"source": "1306159181", "flow": 219, "target": "1265445506"}, {"source": "1326093345", "flow": 170, "target": "1265445506"}, {"source": "1508804337", "flow": 108, "target": "1265445506"}, {"source": "1417946203", "flow": 26, "target": "1265445506"}, {"source": "1215966726", "flow": 116, "target": "1265445506"}, {"source": "1942254883", "flow": 117, "target": "1265445506"}, {"source": "1245215649", "flow": 19, "target": "1265445506"}, {"source": "1770578882", "flow": 1367, "target": "1265445506"}, {"source": "1972506186", "flow": 21, "target": "1265445506"}, {"source": "1043232879", "flow": 1081, "target": "1265445506"}, {"source": "1144283896", "flow": 30, "target": "1265445506"}, {"source": "1851507073", "flow": 67, "target": "1265445506"}, {"source": "1710181201", "flow": 66, "target": "1265445506"}, {"source": "1356389597", "flow": 132, "target": "1265445506"}, {"source": "1740377845", "flow": 107, "target": "1265445506"}, {"source": "1851478747", "flow": 17, "target": "1265445506"}, {"source": "1003862566", "flow": 265, "target": "1265445506"}, {"source": "1447299698", "flow": 106, "target": "1265445506"}, {"source": "1588777445", "flow": 73, "target": "1265445506"}, {"source": "1932128782", "flow": 117, "target": "1265445506"}, {"source": "1053406405", "flow": 98, "target": "1265445506"}, {"source": "1013991850", "flow": 25, "target": "1265445506"}, {"source": "1568417772", "flow": 286, "target": "1265445506"}, {"source": "1447234141", "flow": 15, "target": "1265445506"}, {"source": "1184612921", "flow": 633, "target": "1265445506"}, {"source": "1487680237", "flow": 515, "target": "1265445506"}, {"source": "1871548818", "flow": 25, "target": "1265445506"}, {"source": "1942284658", "flow": 20, "target": "1265445506"}, {"source": "1285936013", "flow": 76, "target": "1265445506"}, {"source": "1306822234", "flow": 112, "target": "1265445506"}, {"source": "1437136827", "flow": 75, "target": "1265445506"}, {"source": "1649219742", "flow": 462, "target": "1265445506"}, {"source": "1396721106", "flow": 15, "target": "1265445506"}, {"source": "1336189521", "flow": 43, "target": "1265445506"}, {"source": "1396909255", "flow": 95, "target": "1265445506"}, {"source": "1306183702", "flow": 252, "target": "1265445506"}, {"source": "1184663494", "flow": 115, "target": "1265445506"}, {"source": "1326149907", "flow": 308, "target": "1265445506"}, {"source": "1770637266", "flow": 52, "target": "1265445506"}, {"source": "1437260296", "flow": 42, "target": "1265445506"}, {"source": "1194967380", "flow": 183, "target": "1265445506"}, {"source": "1851330906", "flow": 458, "target": "1265445506"}, {"source": "1336188457", "flow": 119, "target": "1265445506"}, {"source": "1073610754", "flow": 207, "target": "1265445506"}, {"source": "1043217623", "flow": 26, "target": "1265445506"}, {"source": "1518919224", "flow": 29, "target": "1265445506"}, {"source": "1023094851", "flow": 46, "target": "1265445506"}, {"source": "1912953555", "flow": 59, "target": "1265445506"}, {"source": "1073610754", "flow": 21, "target": "1265483267"}, {"source": "1306993282", "flow": 52, "target": "1265487193"}, {"source": "1134103831", "flow": 21, "target": "1265487193"}, {"source": "1689617433", "flow": 14, "target": "1265487193"}, {"source": "1912984758", "flow": 49, "target": "1265487193"}, {"source": "1437136827", "flow": 58, "target": "1265487193"}, {"source": "1023094851", "flow": 19, "target": "1265487193"}, {"source": "1245325422", "flow": 22, "target": "1265487193"}, {"source": "1821060526", "flow": 20, "target": "1265487193"}, {"source": "1477537173", "flow": 19, "target": "1265487193"}, {"source": "1639226582", "flow": 36, "target": "1265487193"}, {"source": "1255318051", "flow": 44, "target": "1265487193"}, {"source": "1083606248", "flow": 51, "target": "1265487193"}, {"source": "1316921166", "flow": 30, "target": "1265487193"}, {"source": "1790730448", "flow": 18, "target": "1265487193"}, {"source": "1851478747", "flow": 27, "target": "1265487193"}, {"source": "1144283896", "flow": 62, "target": "1265487193"}, {"source": "1396729091", "flow": 22, "target": "1265487193"}, {"source": "1942284658", "flow": 35, "target": "1265487193"}, {"source": "1396707923", "flow": 39, "target": "1265487193"}, {"source": "1447234141", "flow": 40, "target": "1265487193"}, {"source": "1013991850", "flow": 77, "target": "1265487193"}, {"source": "1073610754", "flow": 38, "target": "1265487193"}, {"source": "1366429151", "flow": 31, "target": "1265487193"}, {"source": "1972549533", "flow": 24, "target": "1265487193"}, {"source": "1720286487", "flow": 19, "target": "1265487193"}, {"source": "1972506186", "flow": 31, "target": "1265487193"}, {"source": "1871548818", "flow": 19, "target": "1265487193"}, {"source": "1245215649", "flow": 32, "target": "1265487193"}, {"source": "1326149907", "flow": 34, "target": "1265539498"}, {"source": "1073610754", "flow": 51, "target": "1265539498"}, {"source": "1194967380", "flow": 103, "target": "1275531956"}, {"source": "1821083973", "flow": 295, "target": "1275531956"}, {"source": "1730113440", "flow": 75, "target": "1275531956"}, {"source": "1114956687", "flow": 159, "target": "1275531956"}, {"source": "1043218654", "flow": 43, "target": "1275531956"}, {"source": "1891741435", "flow": 26, "target": "1275531956"}, {"source": "1326149907", "flow": 78, "target": "1275531956"}, {"source": "1104837327", "flow": 172, "target": "1275531956"}, {"source": "1073610754", "flow": 150, "target": "1275531956"}, {"source": "1295733772", "flow": 21, "target": "1275531956"}, {"source": "1942254883", "flow": 18, "target": "1275531956"}, {"source": "1588777445", "flow": 49, "target": "1275531956"}, {"source": "1912970021", "flow": 31, "target": "1275531956"}, {"source": "1760672026", "flow": 20, "target": "1275531956"}, {"source": "1043232879", "flow": 46, "target": "1275531956"}, {"source": "1407977184", "flow": 23, "target": "1275531956"}, {"source": "1336189521", "flow": 36, "target": "1275531956"}, {"source": "1508839622", "flow": 21, "target": "1275531956"}, {"source": "1568493062", "flow": 92, "target": "1275531956"}, {"source": "1184619124", "flow": 142, "target": "1275531956"}, {"source": "1043205008", "flow": 446, "target": "1275531956"}, {"source": "1932128782", "flow": 28, "target": "1275531956"}, {"source": "1669563920", "flow": 31, "target": "1275531956"}, {"source": "1265631675", "flow": 48, "target": "1275531956"}, {"source": "1740377845", "flow": 77, "target": "1275531956"}, {"source": "1134321235", "flow": 48, "target": "1275531956"}, {"source": "1386976207", "flow": 59, "target": "1275531956"}, {"source": "1740279660", "flow": 31, "target": "1275531956"}, {"source": "1942255575", "flow": 150, "target": "1275531956"}, {"source": "1073610754", "flow": 55, "target": "1275539587"}, {"source": "1326149907", "flow": 23, "target": "1275570376"}, {"source": "1073610754", "flow": 157, "target": "1275788762"}, {"source": "1073610754", "flow": 17, "target": "1275941528"}, {"source": "1073610754", "flow": 45, "target": "1285613612"}, {"source": "1326149907", "flow": 60, "target": "1285613612"}, {"source": "1710181201", "flow": 82, "target": "1285689794"}, {"source": "1396909255", "flow": 40, "target": "1285689794"}, {"source": "1740377845", "flow": 58, "target": "1285689794"}, {"source": "1629249891", "flow": 28, "target": "1285689794"}, {"source": "1912984758", "flow": 19, "target": "1285689794"}, {"source": "1134103831", "flow": 38, "target": "1285689794"}, {"source": "1366429151", "flow": 32, "target": "1285689794"}, {"source": "1871548818", "flow": 23, "target": "1285689794"}, {"source": "1134321235", "flow": 68, "target": "1285689794"}, {"source": "1417946203", "flow": 48, "target": "1285689794"}, {"source": "1972506186", "flow": 20, "target": "1285689794"}, {"source": "1801069471", "flow": 25, "target": "1285689794"}, {"source": "1144283896", "flow": 16, "target": "1285689794"}, {"source": "1306183702", "flow": 41, "target": "1285689794"}, {"source": "1174584403", "flow": 40, "target": "1285689794"}, {"source": "1013991850", "flow": 14, "target": "1285689794"}, {"source": "1336189521", "flow": 41, "target": "1285689794"}, {"source": "1437136827", "flow": 100, "target": "1285689794"}, {"source": "1073610754", "flow": 85, "target": "1285689794"}, {"source": "1336188457", "flow": 21, "target": "1285689794"}, {"source": "1649219742", "flow": 27, "target": "1285689794"}, {"source": "1215966726", "flow": 24, "target": "1285689794"}, {"source": "1326149907", "flow": 18, "target": "1285689794"}, {"source": "1003862566", "flow": 42, "target": "1285689794"}, {"source": "1053337717", "flow": 21, "target": "1285689794"}, {"source": "1447299698", "flow": 37, "target": "1285689794"}, {"source": "1851478747", "flow": 18, "target": "1285689794"}, {"source": "1043232879", "flow": 30, "target": "1285689794"}, {"source": "1538109103", "flow": 31, "target": "1285689794"}, {"source": "1326023789", "flow": 41, "target": "1285689794"}, {"source": "1992960298", "flow": 24, "target": "1285689794"}, {"source": "1255301800", "flow": 34, "target": "1285689794"}, {"source": "1912953555", "flow": 31, "target": "1285689794"}, {"source": "1689617433", "flow": 22, "target": "1285689794"}, {"source": "1508839622", "flow": 17, "target": "1285689794"}, {"source": "1306159181", "flow": 111, "target": "1285689794"}, {"source": "1265631675", "flow": 41, "target": "1285689794"}, {"source": "1306993282", "flow": 22, "target": "1285689794"}, {"source": "1275520827", "flow": 93, "target": "1285689794"}, {"source": "1942254883", "flow": 23, "target": "1285689794"}, {"source": "1851507073", "flow": 89, "target": "1285689794"}, {"source": "1306822234", "flow": 83, "target": "1285689794"}, {"source": "1972658060", "flow": 23, "target": "1285689794"}, {"source": "1760672026", "flow": 29, "target": "1285689794"}, {"source": "1073610754", "flow": 19, "target": "1295739548"}, {"source": "1033199401", "flow": 168, "target": "1295780476"}, {"source": "1073557831", "flow": 416, "target": "1295780476"}, {"source": "1578677274", "flow": 181, "target": "1295780476"}, {"source": "1336147685", "flow": 855, "target": "1295780476"}, {"source": "1669563920", "flow": 37, "target": "1295780476"}, {"source": "1912982513", "flow": 105, "target": "1295780476"}, {"source": "1073505830", "flow": 45, "target": "1295780476"}, {"source": "1225089097", "flow": 37, "target": "1295780476"}, {"source": "1326149907", "flow": 71, "target": "1295780476"}, {"source": "1194796391", "flow": 46, "target": "1295780476"}, {"source": "1912977430", "flow": 277, "target": "1295780476"}, {"source": "1336188457", "flow": 41, "target": "1295780476"}, {"source": "1639226582", "flow": 47, "target": "1295780476"}, {"source": "1225222367", "flow": 77, "target": "1295780476"}, {"source": "1063673622", "flow": 1202, "target": "1295780476"}, {"source": "1740252642", "flow": 69, "target": "1295780476"}, {"source": "1073610754", "flow": 470, "target": "1295780476"}, {"source": "1184663494", "flow": 40, "target": "1295780476"}, {"source": "1013991850", "flow": 379, "target": "1295780476"}, {"source": "1962499582", "flow": 69, "target": "1295780476"}, {"source": "1720079114", "flow": 128, "target": "1295780476"}, {"source": "1639116379", "flow": 341, "target": "1295780476"}, {"source": "1184612921", "flow": 169, "target": "1295780476"}, {"source": "1962418038", "flow": 47, "target": "1295780476"}, {"source": "1427079946", "flow": 992, "target": "1295780476"}, {"source": "1447234141", "flow": 232, "target": "1295780476"}, {"source": "1235116518", "flow": 216, "target": "1295780476"}, {"source": "1447242565", "flow": 79, "target": "1295780476"}, {"source": "1427046622", "flow": 105, "target": "1295780476"}, {"source": "1811971534", "flow": 248, "target": "1295780476"}, {"source": "1003862566", "flow": 46, "target": "1295780476"}, {"source": "1427044148", "flow": 17, "target": "1295780476"}, {"source": "1235299975", "flow": 331, "target": "1295780476"}, {"source": "1053337717", "flow": 2294, "target": "1295780476"}, {"source": "1740279660", "flow": 83, "target": "1295780476"}, {"source": "1790730448", "flow": 207, "target": "1295780476"}, {"source": "1932190360", "flow": 278, "target": "1295780476"}, {"source": "1588777445", "flow": 48, "target": "1295780476"}, {"source": "1992960298", "flow": 17, "target": "1295780476"}, {"source": "1396729091", "flow": 221, "target": "1295780476"}, {"source": "1851478747", "flow": 377, "target": "1295780476"}, {"source": "1043232879", "flow": 46, "target": "1295780476"}, {"source": "1144283896", "flow": 343, "target": "1295780476"}, {"source": "1356389597", "flow": 54, "target": "1295780476"}, {"source": "1417952581", "flow": 24, "target": "1295780476"}, {"source": "1801069471", "flow": 22, "target": "1295780476"}, {"source": "1245215649", "flow": 442, "target": "1295780476"}, {"source": "1134346323", "flow": 669, "target": "1295780476"}, {"source": "1457306565", "flow": 165, "target": "1295780476"}, {"source": "1417946203", "flow": 23, "target": "1295780476"}, {"source": "1982712162", "flow": 48, "target": "1295780476"}, {"source": "1487840872", "flow": 62, "target": "1295780476"}, {"source": "1790762219", "flow": 56, "target": "1295780476"}, {"source": "1972506186", "flow": 328, "target": "1295780476"}, {"source": "1952473431", "flow": 21, "target": "1295780476"}, {"source": "1568493062", "flow": 137, "target": "1295780476"}, {"source": "1043218654", "flow": 28, "target": "1295780476"}, {"source": "1245313741", "flow": 2143, "target": "1295780476"}, {"source": "1417919218", "flow": 14, "target": "1295780476"}, {"source": "1326046673", "flow": 995, "target": "1295780476"}, {"source": "1538109103", "flow": 26, "target": "1295780476"}, {"source": "1972547891", "flow": 33, "target": "1295780476"}, {"source": "1639113509", "flow": 165, "target": "1295780476"}, {"source": "1306183702", "flow": 22, "target": "1295780476"}, {"source": "1417903378", "flow": 18, "target": "1295780476"}, {"source": "1245325422", "flow": 264, "target": "1295780476"}, {"source": "1679504765", "flow": 145, "target": "1295780476"}, {"source": "1851549240", "flow": 22, "target": "1295780476"}, {"source": "1134321235", "flow": 27, "target": "1295780476"}, {"source": "1326023789", "flow": 204, "target": "1295780476"}, {"source": "1891005856", "flow": 272, "target": "1295780476"}, {"source": "1396707923", "flow": 253, "target": "1295780476"}, {"source": "1255301800", "flow": 671, "target": "1295780476"}, {"source": "1467498279", "flow": 37, "target": "1295780476"}, {"source": "1417091257", "flow": 219, "target": "1295780476"}, {"source": "1699970566", "flow": 25, "target": "1295780476"}, {"source": "1740353002", "flow": 41, "target": "1295780476"}, {"source": "1538105242", "flow": 87, "target": "1295780476"}, {"source": "1871548818", "flow": 639, "target": "1295780476"}, {"source": "1255318051", "flow": 549, "target": "1295780476"}, {"source": "1366429151", "flow": 195, "target": "1295780476"}, {"source": "1912953555", "flow": 25, "target": "1295780476"}, {"source": "1134103831", "flow": 163, "target": "1295780476"}, {"source": "1629249891", "flow": 60, "target": "1295780476"}, {"source": "1932183779", "flow": 74, "target": "1295780476"}, {"source": "1255370755", "flow": 14, "target": "1295780476"}, {"source": "1972549533", "flow": 185, "target": "1295780476"}, {"source": "1689616294", "flow": 161, "target": "1295780476"}, {"source": "1992149819", "flow": 182, "target": "1295780476"}, {"source": "1316977861", "flow": 114, "target": "1295780476"}, {"source": "1952358541", "flow": 19, "target": "1295780476"}, {"source": "1538103692", "flow": 60, "target": "1295780476"}, {"source": "1902845118", "flow": 25, "target": "1295780476"}, {"source": "1912984758", "flow": 334, "target": "1295780476"}, {"source": "1801846712", "flow": 22, "target": "1295780476"}, {"source": "1841498821", "flow": 17, "target": "1295780476"}, {"source": "1538356571", "flow": 35, "target": "1295780476"}, {"source": "1477537173", "flow": 169, "target": "1295780476"}, {"source": "1407892516", "flow": 21, "target": "1295780476"}, {"source": "1316921166", "flow": 261, "target": "1295780476"}, {"source": "1972658060", "flow": 958, "target": "1295780476"}, {"source": "1407890593", "flow": 243, "target": "1295780476"}, {"source": "1114956687", "flow": 45, "target": "1295780476"}, {"source": "1689617433", "flow": 327, "target": "1295780476"}, {"source": "1023094851", "flow": 148, "target": "1295780476"}, {"source": "1609014489", "flow": 39, "target": "1295780476"}, {"source": "1972538486", "flow": 76, "target": "1295780476"}, {"source": "1508805862", "flow": 45, "target": "1295780476"}, {"source": "1306993282", "flow": 264, "target": "1295780476"}, {"source": "1477542942", "flow": 132, "target": "1295780476"}, {"source": "1407833825", "flow": 184, "target": "1295780476"}, {"source": "1407830102", "flow": 824, "target": "1295780476"}, {"source": "1376756742", "flow": 364, "target": "1295780476"}, {"source": "1265631675", "flow": 30, "target": "1295780476"}, {"source": "1568460640", "flow": 838, "target": "1295780476"}, {"source": "1699752493", "flow": 94, "target": "1295780476"}, {"source": "1508804337", "flow": 43, "target": "1295780476"}, {"source": "1114074085", "flow": 38, "target": "1295780476"}, {"source": "1932128782", "flow": 40, "target": "1295780476"}, {"source": "1114020336", "flow": 62, "target": "1295780476"}, {"source": "1902099443", "flow": 102, "target": "1295780476"}, {"source": "1396721106", "flow": 186, "target": "1295780476"}, {"source": "1497849491", "flow": 33, "target": "1295780476"}, {"source": "1770578882", "flow": 132, "target": "1295780476"}, {"source": "1942284658", "flow": 173, "target": "1295780476"}, {"source": "1295872216", "flow": 17, "target": "1295780476"}, {"source": "1821060526", "flow": 259, "target": "1295780476"}, {"source": "1285611715", "flow": 456, "target": "1295780476"}, {"source": "1558345256", "flow": 72, "target": "1295780476"}, {"source": "1942254883", "flow": 46, "target": "1295780476"}, {"source": "1871696096", "flow": 41, "target": "1295780476"}, {"source": "1851507073", "flow": 38, "target": "1295780476"}, {"source": "1972540557", "flow": 32, "target": "1295780476"}, {"source": "1487638185", "flow": 93, "target": "1295780476"}, {"source": "1497741714", "flow": 108, "target": "1295780476"}, {"source": "1306822234", "flow": 32, "target": "1295780476"}, {"source": "1760672026", "flow": 33, "target": "1295780476"}, {"source": "1396909255", "flow": 70, "target": "1295780476"}, {"source": "1083609481", "flow": 164, "target": "1295780476"}, {"source": "1902903651", "flow": 33, "target": "1295780476"}, {"source": "1902031610", "flow": 377, "target": "1295780476"}, {"source": "1740377845", "flow": 22, "target": "1295780476"}, {"source": "1386976207", "flow": 21, "target": "1295780476"}, {"source": "1295708576", "flow": 105, "target": "1295780476"}, {"source": "1083606248", "flow": 30, "target": "1295780476"}, {"source": "1770563215", "flow": 43, "target": "1295780476"}, {"source": "1750410452", "flow": 498, "target": "1295780476"}, {"source": "1801878616", "flow": 24, "target": "1295780476"}, {"source": "1720286487", "flow": 115, "target": "1295780476"}, {"source": "1639500739", "flow": 20, "target": "1295780476"}, {"source": "1730111642", "flow": 29, "target": "1295780476"}, {"source": "1932316429", "flow": 102, "target": "1295780476"}, {"source": "1609917129", "flow": 164, "target": "1295780476"}, {"source": "1649219742", "flow": 30, "target": "1295780476"}, {"source": "1801894142", "flow": 854, "target": "1295780476"}, {"source": "1730113440", "flow": 112, "target": "1295780476"}, {"source": "1689645707", "flow": 21, "target": "1295780476"}, {"source": "1932217171", "flow": 30, "target": "1295780476"}, {"source": "1215966726", "flow": 18, "target": "1295780476"}, {"source": "1437136827", "flow": 173, "target": "1295780476"}, {"source": "1649262338", "flow": 55, "target": "1295780476"}, {"source": "1326149907", "flow": 14, "target": "1306876065"}, {"source": "1073610754", "flow": 314, "target": "1306876065"}, {"source": "1861452195", "flow": 114, "target": "1306889597"}, {"source": "1306950514", "flow": 517, "target": "1306889597"}, {"source": "1255318051", "flow": 42, "target": "1306889597"}, {"source": "1295733772", "flow": 147, "target": "1306889597"}, {"source": "1942276829", "flow": 123, "target": "1306889597"}, {"source": "1679574180", "flow": 140, "target": "1306889597"}, {"source": "1114020336", "flow": 104, "target": "1306889597"}, {"source": "1366429151", "flow": 19, "target": "1306889597"}, {"source": "1013920735", "flow": 431, "target": "1306889597"}, {"source": "1629249891", "flow": 101, "target": "1306889597"}, {"source": "1124150016", "flow": 479, "target": "1306889597"}, {"source": "1215995972", "flow": 845, "target": "1306889597"}, {"source": "1538104526", "flow": 52, "target": "1306889597"}, {"source": "1669470555", "flow": 453, "target": "1306889597"}, {"source": "1215981196", "flow": 70, "target": "1306889597"}, {"source": "1538172077", "flow": 15, "target": "1306889597"}, {"source": "1720245301", "flow": 37, "target": "1306889597"}, {"source": "1568417772", "flow": 88, "target": "1306889597"}, {"source": "1225070337", "flow": 65, "target": "1306889597"}, {"source": "1255370755", "flow": 875, "target": "1306889597"}, {"source": "1437136827", "flow": 23, "target": "1306889597"}, {"source": "1275520827", "flow": 85, "target": "1306889597"}, {"source": "1942255575", "flow": 659, "target": "1306889597"}, {"source": "1023171576", "flow": 115, "target": "1306889597"}, {"source": "1851330906", "flow": 638, "target": "1306889597"}, {"source": "1619180403", "flow": 24, "target": "1306889597"}, {"source": "1962445726", "flow": 215, "target": "1306889597"}, {"source": "1972670552", "flow": 348, "target": "1306889597"}, {"source": "1306159181", "flow": 17, "target": "1306889597"}, {"source": "1538103692", "flow": 29, "target": "1306889597"}, {"source": "1336188457", "flow": 90, "target": "1306889597"}, {"source": "1649425885", "flow": 660, "target": "1306889597"}, {"source": "1306847009", "flow": 161, "target": "1306889597"}, {"source": "1558642934", "flow": 168, "target": "1306889597"}, {"source": "1255383766", "flow": 1016, "target": "1306889597"}, {"source": "1124111257", "flow": 82, "target": "1306889597"}, {"source": "1275631129", "flow": 418, "target": "1306889597"}, {"source": "1184663494", "flow": 102, "target": "1306889597"}, {"source": "1487665634", "flow": 103, "target": "1306889597"}, {"source": "1073610754", "flow": 35, "target": "1306889597"}, {"source": "1013991850", "flow": 38, "target": "1306889597"}, {"source": "1467545541", "flow": 781, "target": "1306889597"}, {"source": "1720171796", "flow": 99, "target": "1306889597"}, {"source": "1184619124", "flow": 211, "target": "1306889597"}, {"source": "1538101068", "flow": 42, "target": "1306889597"}, {"source": "1336189521", "flow": 40, "target": "1306889597"}, {"source": "1902845118", "flow": 63, "target": "1306889597"}, {"source": "1942284658", "flow": 36, "target": "1306889597"}, {"source": "1184612921", "flow": 361, "target": "1306889597"}, {"source": "1720059397", "flow": 569, "target": "1306889597"}, {"source": "1467737999", "flow": 24, "target": "1306889597"}, {"source": "1912982513", "flow": 36, "target": "1306889597"}, {"source": "1932194966", "flow": 32, "target": "1306889597"}, {"source": "1891741435", "flow": 86, "target": "1306889597"}, {"source": "1174669998", "flow": 397, "target": "1306889597"}, {"source": "1265402879", "flow": 1333, "target": "1306889597"}, {"source": "1689616294", "flow": 22, "target": "1306889597"}, {"source": "1427046622", "flow": 57, "target": "1306889597"}, {"source": "1477517167", "flow": 33, "target": "1306889597"}, {"source": "1861469017", "flow": 36, "target": "1306889597"}, {"source": "1063457315", "flow": 69, "target": "1306889597"}, {"source": "1972718104", "flow": 23, "target": "1306889597"}, {"source": "1447234141", "flow": 35, "target": "1306889597"}, {"source": "1780685743", "flow": 319, "target": "1306889597"}, {"source": "1568576825", "flow": 270, "target": "1306889597"}, {"source": "1053425181", "flow": 527, "target": "1306889597"}, {"source": "1396751749", "flow": 293, "target": "1306889597"}, {"source": "1407892516", "flow": 231, "target": "1306889597"}, {"source": "1003862566", "flow": 107, "target": "1306889597"}, {"source": "1568513075", "flow": 194, "target": "1306889597"}, {"source": "1740377845", "flow": 26, "target": "1306889597"}, {"source": "1306013305", "flow": 125, "target": "1306889597"}, {"source": "1972504405", "flow": 431, "target": "1306889597"}, {"source": "1639113509", "flow": 21, "target": "1306889597"}, {"source": "1538356571", "flow": 76, "target": "1306889597"}, {"source": "1376607259", "flow": 19, "target": "1306889597"}, {"source": "1790708097", "flow": 160, "target": "1306889597"}, {"source": "1922079771", "flow": 208, "target": "1306889597"}, {"source": "1912970021", "flow": 44, "target": "1306889597"}, {"source": "1932190360", "flow": 68, "target": "1306889597"}, {"source": "1386697126", "flow": 387, "target": "1306889597"}, {"source": "1821083973", "flow": 42, "target": "1306889597"}, {"source": "1144288747", "flow": 729, "target": "1306889597"}, {"source": "1396721106", "flow": 25, "target": "1306889597"}, {"source": "1619916970", "flow": 47, "target": "1306889597"}, {"source": "1316921166", "flow": 28, "target": "1306889597"}, {"source": "1396729091", "flow": 19, "target": "1306889597"}, {"source": "1104837327", "flow": 609, "target": "1306889597"}, {"source": "1710966247", "flow": 376, "target": "1306889597"}, {"source": "1588777445", "flow": 94, "target": "1306889597"}, {"source": "1942314075", "flow": 681, "target": "1306889597"}, {"source": "1508839622", "flow": 74, "target": "1306889597"}, {"source": "1447299698", "flow": 169, "target": "1306889597"}, {"source": "1710919295", "flow": 47, "target": "1306889597"}, {"source": "1568498665", "flow": 18, "target": "1306889597"}, {"source": "1750389607", "flow": 939, "target": "1306889597"}, {"source": "1447307251", "flow": 25, "target": "1306889597"}, {"source": "1710181201", "flow": 55, "target": "1306889597"}, {"source": "1760672026", "flow": 122, "target": "1306889597"}, {"source": "1144283896", "flow": 28, "target": "1306889597"}, {"source": "1043232879", "flow": 381, "target": "1306889597"}, {"source": "1912984758", "flow": 46, "target": "1306889597"}, {"source": "1396789269", "flow": 23, "target": "1306889597"}, {"source": "1588656664", "flow": 222, "target": "1306889597"}, {"source": "1962403378", "flow": 203, "target": "1306889597"}, {"source": "1417952581", "flow": 67, "target": "1306889597"}, {"source": "1992960298", "flow": 128, "target": "1306889597"}, {"source": "1740377852", "flow": 48, "target": "1306889597"}, {"source": "1114956687", "flow": 41, "target": "1306889597"}, {"source": "1558386771", "flow": 589, "target": "1306889597"}, {"source": "1821060526", "flow": 18, "target": "1306889597"}, {"source": "1245215649", "flow": 16, "target": "1306889597"}, {"source": "1356389597", "flow": 153, "target": "1306889597"}, {"source": "1548251705", "flow": 261, "target": "1306889597"}, {"source": "1386976207", "flow": 107, "target": "1306889597"}, {"source": "1568493062", "flow": 96, "target": "1306889597"}, {"source": "1851478747", "flow": 18, "target": "1306889597"}, {"source": "1700970928", "flow": 56, "target": "1306889597"}, {"source": "1699773150", "flow": 32, "target": "1306889597"}, {"source": "1689617433", "flow": 31, "target": "1306889597"}, {"source": "1649271206", "flow": 371, "target": "1306889597"}, {"source": "1457330649", "flow": 24, "target": "1306889597"}, {"source": "1790757755", "flow": 147, "target": "1306889597"}, {"source": "1609810274", "flow": 498, "target": "1306889597"}, {"source": "1245238567", "flow": 41, "target": "1306889597"}, {"source": "1790762219", "flow": 64, "target": "1306889597"}, {"source": "1669563920", "flow": 56, "target": "1306889597"}, {"source": "1295919041", "flow": 67, "target": "1306889597"}, {"source": "1851507073", "flow": 89, "target": "1306889597"}, {"source": "1265599518", "flow": 673, "target": "1306889597"}, {"source": "1245274778", "flow": 20, "target": "1306889597"}, {"source": "1326093345", "flow": 152, "target": "1306889597"}, {"source": "1457465668", "flow": 1014, "target": "1306889597"}, {"source": "1558355941", "flow": 566, "target": "1306889597"}, {"source": "1902013410", "flow": 494, "target": "1306889597"}, {"source": "1548281124", "flow": 26, "target": "1306889597"}, {"source": "1801888060", "flow": 30, "target": "1306889597"}, {"source": "1538109103", "flow": 140, "target": "1306889597"}, {"source": "1326057167", "flow": 822, "target": "1306889597"}, {"source": "1851549240", "flow": 232, "target": "1306889597"}, {"source": "1558306357", "flow": 206, "target": "1306889597"}, {"source": "1649219742", "flow": 243, "target": "1306889597"}, {"source": "1285843896", "flow": 905, "target": "1306889597"}, {"source": "1396909255", "flow": 90, "target": "1306889597"}, {"source": "1306822234", "flow": 127, "target": "1306889597"}, {"source": "1972549533", "flow": 22, "target": "1306889597"}, {"source": "1942254883", "flow": 79, "target": "1306889597"}, {"source": "1134321235", "flow": 131, "target": "1306889597"}, {"source": "1265631675", "flow": 34, "target": "1306889597"}, {"source": "1396707923", "flow": 20, "target": "1306889597"}, {"source": "1881646073", "flow": 1586, "target": "1306889597"}, {"source": "1306183702", "flow": 273, "target": "1306889597"}, {"source": "1629221692", "flow": 196, "target": "1306889597"}, {"source": "1912989989", "flow": 1053, "target": "1306889597"}, {"source": "1598718330", "flow": 1335, "target": "1306889597"}, {"source": "1750320966", "flow": 698, "target": "1306889597"}, {"source": "1114074085", "flow": 33, "target": "1306889597"}, {"source": "1912953555", "flow": 50, "target": "1306889597"}, {"source": "1972506186", "flow": 27, "target": "1306889597"}, {"source": "1972543064", "flow": 298, "target": "1306889597"}, {"source": "1508804337", "flow": 66, "target": "1306889597"}, {"source": "1902812571", "flow": 95, "target": "1306889597"}, {"source": "1538163126", "flow": 89, "target": "1306889597"}, {"source": "1003897380", "flow": 32, "target": "1306889597"}, {"source": "1417091257", "flow": 29, "target": "1306889597"}, {"source": "1871505750", "flow": 41, "target": "1306889597"}, {"source": "1205849502", "flow": 112, "target": "1306889597"}, {"source": "1770578882", "flow": 228, "target": "1306889597"}, {"source": "1043205008", "flow": 289, "target": "1306889597"}, {"source": "1467498279", "flow": 449, "target": "1306889597"}, {"source": "1699705855", "flow": 598, "target": "1306889597"}, {"source": "1487840872", "flow": 466, "target": "1306897335"}, {"source": "1982712162", "flow": 212, "target": "1306897335"}, {"source": "1073610754", "flow": 59, "target": "1306897335"}, {"source": "1770563215", "flow": 257, "target": "1306897335"}, {"source": "1841498821", "flow": 273, "target": "1306897335"}, {"source": "1194796391", "flow": 1891, "target": "1306897335"}, {"source": "1225222367", "flow": 292, "target": "1306897335"}, {"source": "1962418038", "flow": 360, "target": "1306897335"}, {"source": "1235299975", "flow": 497, "target": "1306897335"}, {"source": "1699970566", "flow": 753, "target": "1306897335"}, {"source": "1295708576", "flow": 740, "target": "1306897335"}, {"source": "1689645707", "flow": 746, "target": "1306897335"}, {"source": "1801878616", "flow": 216, "target": "1306897335"}, {"source": "1326149907", "flow": 81, "target": "1306897335"}, {"source": "1932316429", "flow": 319, "target": "1306897335"}, {"source": "1033199401", "flow": 284, "target": "1306897335"}, {"source": "1609917129", "flow": 488, "target": "1306897335"}, {"source": "1073610754", "flow": 24, "target": "1306898960"}, {"source": "1962418038", "flow": 15, "target": "1306898960"}, {"source": "1326149907", "flow": 59, "target": "1306898960"}, {"source": "1689645707", "flow": 28, "target": "1306898960"}, {"source": "1194796391", "flow": 24, "target": "1306898960"}, {"source": "1770563215", "flow": 22, "target": "1306898960"}, {"source": "1609917129", "flow": 19, "target": "1306898960"}, {"source": "1699970566", "flow": 16, "target": "1306898960"}, {"source": "1073610754", "flow": 26, "target": "1306909734"}, {"source": "1326149907", "flow": 27, "target": "1306914882"}, {"source": "1073610754", "flow": 1071, "target": "1306914882"}, {"source": "1326149907", "flow": 15, "target": "1306921887"}, {"source": "1326149907", "flow": 83, "target": "1306925540"}, {"source": "1073610754", "flow": 268, "target": "1306925540"}, {"source": "1073610754", "flow": 243, "target": "1316901937"}, {"source": "1073610754", "flow": 77, "target": "1316938459"}, {"source": "1326149907", "flow": 60, "target": "1316938459"}, {"source": "1326149907", "flow": 21, "target": "1316939689"}, {"source": "1326149907", "flow": 33, "target": "1326028978"}, {"source": "1073610754", "flow": 36, "target": "1326028978"}, {"source": "1265556898", "flow": 21, "target": "1346243375"}, {"source": "1740377845", "flow": 18, "target": "1346244126"}, {"source": "1265631675", "flow": 31, "target": "1346244126"}, {"source": "1073610754", "flow": 56, "target": "1346244126"}, {"source": "1972543064", "flow": 130, "target": "1346244126"}, {"source": "1902903651", "flow": 18, "target": "1346244126"}, {"source": "1326149907", "flow": 64, "target": "1346251543"}, {"source": "1073610754", "flow": 69, "target": "1346251543"}, {"source": "1962418038", "flow": 20, "target": "1346267879"}, {"source": "1912167669", "flow": 132, "target": "1356307581"}, {"source": "1194796391", "flow": 53, "target": "1356320469"}, {"source": "1689645707", "flow": 22, "target": "1356320469"}, {"source": "1073610754", "flow": 162, "target": "1356366314"}, {"source": "1770563215", "flow": 43, "target": "1356428429"}, {"source": "1932316429", "flow": 30, "target": "1356428429"}, {"source": "1609917129", "flow": 44, "target": "1356428429"}, {"source": "1033199401", "flow": 52, "target": "1356428429"}, {"source": "1699970566", "flow": 57, "target": "1356428429"}, {"source": "1235299975", "flow": 19, "target": "1356428429"}, {"source": "1962418038", "flow": 36, "target": "1356428429"}, {"source": "1295708576", "flow": 37, "target": "1356428429"}, {"source": "1194796391", "flow": 66, "target": "1356428429"}, {"source": "1689645707", "flow": 46, "target": "1356428429"}, {"source": "1225222367", "flow": 65, "target": "1356428429"}, {"source": "1306822234", "flow": 35, "target": "1356692297"}, {"source": "1326149907", "flow": 24, "target": "1356692297"}, {"source": "1982712162", "flow": 138, "target": "1366407603"}, {"source": "1689645707", "flow": 417, "target": "1366407603"}, {"source": "1932316429", "flow": 99, "target": "1366407603"}, {"source": "1962418038", "flow": 195, "target": "1366407603"}, {"source": "1326149907", "flow": 75, "target": "1366407603"}, {"source": "1699970566", "flow": 336, "target": "1366407603"}, {"source": "1770563215", "flow": 157, "target": "1366407603"}, {"source": "1225222367", "flow": 102, "target": "1366407603"}, {"source": "1235299975", "flow": 139, "target": "1366407603"}, {"source": "1487840872", "flow": 191, "target": "1366407603"}, {"source": "1609917129", "flow": 222, "target": "1366407603"}, {"source": "1073610754", "flow": 33, "target": "1366407603"}, {"source": "1033199401", "flow": 129, "target": "1366407603"}, {"source": "1841498821", "flow": 100, "target": "1366407603"}, {"source": "1295708576", "flow": 201, "target": "1366407603"}, {"source": "1801878616", "flow": 108, "target": "1366407603"}, {"source": "1194796391", "flow": 497, "target": "1366407603"}, {"source": "1073610754", "flow": 32, "target": "1366441370"}, {"source": "1265556898", "flow": 18, "target": "1366459570"}, {"source": "1073610754", "flow": 37, "target": "1376574277"}, {"source": "1326149907", "flow": 21, "target": "1376586404"}, {"source": "1194796391", "flow": 357, "target": "1376594366"}, {"source": "1982712162", "flow": 28, "target": "1376594366"}, {"source": "1609917129", "flow": 73, "target": "1376594366"}, {"source": "1689645707", "flow": 107, "target": "1376594366"}, {"source": "1033199401", "flow": 66, "target": "1376594366"}, {"source": "1295708576", "flow": 130, "target": "1376594366"}, {"source": "1487840872", "flow": 33, "target": "1376594366"}, {"source": "1841498821", "flow": 36, "target": "1376594366"}, {"source": "1225222367", "flow": 59, "target": "1376594366"}, {"source": "1801878616", "flow": 30, "target": "1376594366"}, {"source": "1770563215", "flow": 39, "target": "1376594366"}, {"source": "1962418038", "flow": 60, "target": "1376594366"}, {"source": "1932316429", "flow": 65, "target": "1376594366"}, {"source": "1235299975", "flow": 89, "target": "1376594366"}, {"source": "1699970566", "flow": 126, "target": "1376594366"}, {"source": "1073610754", "flow": 103, "target": "1386630705"}, {"source": "1689645707", "flow": 29, "target": "1386683316"}, {"source": "1194796391", "flow": 35, "target": "1386683316"}, {"source": "1699970566", "flow": 29, "target": "1386683316"}, {"source": "1326149907", "flow": 112, "target": "1386749893"}, {"source": "1073610754", "flow": 52, "target": "1386749893"}, {"source": "1073610754", "flow": 20, "target": "1396709978"}, {"source": "1326149907", "flow": 46, "target": "1396739165"}, {"source": "1073610754", "flow": 191, "target": "1396739165"}, {"source": "1073610754", "flow": 16, "target": "1396766267"}, {"source": "1073610754", "flow": 54, "target": "1396792032"}, {"source": "1942255575", "flow": 62, "target": "1396882205"}, {"source": "1306159181", "flow": 36, "target": "1396882205"}, {"source": "1306183702", "flow": 196, "target": "1396882205"}, {"source": "1942254883", "flow": 226, "target": "1396882205"}, {"source": "1295708576", "flow": 48, "target": "1396882205"}, {"source": "1285936013", "flow": 82, "target": "1396882205"}, {"source": "1942276829", "flow": 59, "target": "1396882205"}, {"source": "1306822234", "flow": 484, "target": "1396882205"}, {"source": "1285843896", "flow": 54, "target": "1396882205"}, {"source": "1285611715", "flow": 79, "target": "1396882205"}, {"source": "1306827605", "flow": 61, "target": "1396882205"}, {"source": "1275691073", "flow": 29, "target": "1396882205"}, {"source": "1275631129", "flow": 2957, "target": "1396882205"}, {"source": "1942284658", "flow": 120, "target": "1396882205"}, {"source": "1306847009", "flow": 141, "target": "1396882205"}, {"source": "1275520827", "flow": 66, "target": "1396882205"}, {"source": "1275515223", "flow": 25, "target": "1396882205"}, {"source": "1306950514", "flow": 1069, "target": "1396882205"}, {"source": "1699705855", "flow": 129, "target": "1396882205"}, {"source": "1699752493", "flow": 80, "target": "1396882205"}, {"source": "1023094851", "flow": 154, "target": "1396882205"}, {"source": "1265631675", "flow": 5430, "target": "1396882205"}, {"source": "1306993282", "flow": 154, "target": "1396882205"}, {"source": "1023171576", "flow": 37, "target": "1396882205"}, {"source": "1851507073", "flow": 391, "target": "1396882205"}, {"source": "1689617433", "flow": 153, "target": "1396882205"}, {"source": "1699760587", "flow": 236, "target": "1396882205"}, {"source": "1942314075", "flow": 82, "target": "1396882205"}, {"source": "1699773150", "flow": 26, "target": "1396882205"}, {"source": "1316921166", "flow": 141, "target": "1396882205"}, {"source": "1992790174", "flow": 63, "target": "1396882205"}, {"source": "1265464499", "flow": 122, "target": "1396882205"}, {"source": "1265419725", "flow": 30, "target": "1396882205"}, {"source": "1942404728", "flow": 41, "target": "1396882205"}, {"source": "1689616294", "flow": 79, "target": "1396882205"}, {"source": "1265402879", "flow": 102, "target": "1396882205"}, {"source": "1952353054", "flow": 67, "target": "1396882205"}, {"source": "1255383766", "flow": 52, "target": "1396882205"}, {"source": "1952358541", "flow": 116, "target": "1396882205"}, {"source": "1316977861", "flow": 102, "target": "1396882205"}, {"source": "1255370755", "flow": 56, "target": "1396882205"}, {"source": "1679795256", "flow": 63, "target": "1396882205"}, {"source": "1679546717", "flow": 38, "target": "1396882205"}, {"source": "1255318051", "flow": 130, "target": "1396882205"}, {"source": "1255301800", "flow": 180, "target": "1396882205"}, {"source": "1952392797", "flow": 78, "target": "1396882205"}, {"source": "1326023789", "flow": 123, "target": "1396882205"}, {"source": "1023253549", "flow": 89, "target": "1396882205"}, {"source": "1679534309", "flow": 66, "target": "1396882205"}, {"source": "1245325422", "flow": 96, "target": "1396882205"}, {"source": "1326046673", "flow": 116, "target": "1396882205"}, {"source": "1851549240", "flow": 249, "target": "1396882205"}, {"source": "1801878616", "flow": 28, "target": "1396882205"}, {"source": "1326057167", "flow": 116, "target": "1396882205"}, {"source": "1245313741", "flow": 87, "target": "1396882205"}, {"source": "1245274778", "flow": 121, "target": "1396882205"}, {"source": "1326093345", "flow": 161, "target": "1396882205"}, {"source": "1952473431", "flow": 151, "target": "1396882205"}, {"source": "1669563920", "flow": 75, "target": "1396882205"}, {"source": "1245238567", "flow": 32, "target": "1396882205"}, {"source": "1851478747", "flow": 119, "target": "1396882205"}, {"source": "1245215649", "flow": 122, "target": "1396882205"}, {"source": "1710181201", "flow": 301, "target": "1396882205"}, {"source": "1710919295", "flow": 59, "target": "1396882205"}, {"source": "1235299975", "flow": 67, "target": "1396882205"}, {"source": "1710966247", "flow": 62, "target": "1396882205"}, {"source": "1235116518", "flow": 129, "target": "1396882205"}, {"source": "1710968037", "flow": 30, "target": "1396882205"}, {"source": "1851345755", "flow": 126, "target": "1396882205"}, {"source": "1720059397", "flow": 69, "target": "1396882205"}, {"source": "1720077761", "flow": 30, "target": "1396882205"}, {"source": "1851330906", "flow": 308, "target": "1396882205"}, {"source": "1720171796", "flow": 51, "target": "1396882205"}, {"source": "1225089097", "flow": 343, "target": "1396882205"}, {"source": "1326149907", "flow": 392, "target": "1396882205"}, {"source": "1225060791", "flow": 123, "target": "1396882205"}, {"source": "1669470555", "flow": 82, "target": "1396882205"}, {"source": "1669463568", "flow": 50, "target": "1396882205"}, {"source": "1851554836", "flow": 75, "target": "1396882205"}, {"source": "1669405130", "flow": 27, "target": "1396882205"}, {"source": "1215995972", "flow": 100, "target": "1396882205"}, {"source": "1851688865", "flow": 84, "target": "1396882205"}, {"source": "1649425885", "flow": 86, "target": "1396882205"}, {"source": "1962418038", "flow": 40, "target": "1396882205"}, {"source": "1215981196", "flow": 81, "target": "1396882205"}, {"source": "1649271206", "flow": 74, "target": "1396882205"}, {"source": "1215971858", "flow": 16, "target": "1396882205"}, {"source": "1649262338", "flow": 126, "target": "1396882205"}, {"source": "1215966726", "flow": 3332, "target": "1396882205"}, {"source": "1861482259", "flow": 23, "target": "1396882205"}, {"source": "1871505750", "flow": 24, "target": "1396882205"}, {"source": "1649219742", "flow": 330, "target": "1396882205"}, {"source": "1215918321", "flow": 50, "target": "1396882205"}, {"source": "1720245301", "flow": 42, "target": "1396882205"}, {"source": "1205978012", "flow": 64, "target": "1396882205"}, {"source": "1205861929", "flow": 21, "target": "1396882205"}, {"source": "1194967380", "flow": 42, "target": "1396882205"}, {"source": "1639500739", "flow": 18, "target": "1396882205"}, {"source": "1720286487", "flow": 75, "target": "1396882205"}, {"source": "1932316429", "flow": 30, "target": "1396882205"}, {"source": "1487840872", "flow": 38, "target": "1396882205"}, {"source": "1730111642", "flow": 91, "target": "1396882205"}, {"source": "1730113440", "flow": 172, "target": "1396882205"}, {"source": "1932217171", "flow": 44, "target": "1396882205"}, {"source": "1336147685", "flow": 35, "target": "1396882205"}, {"source": "1194724864", "flow": 66, "target": "1396882205"}, {"source": "1962445726", "flow": 43, "target": "1396882205"}, {"source": "1336188457", "flow": 171, "target": "1396882205"}, {"source": "1639226582", "flow": 40, "target": "1396882205"}, {"source": "1841498821", "flow": 16, "target": "1396882205"}, {"source": "1013991850", "flow": 166, "target": "1396882205"}, {"source": "1184663494", "flow": 132, "target": "1396882205"}, {"source": "1740252642", "flow": 123, "target": "1396882205"}, {"source": "1184619124", "flow": 186, "target": "1396882205"}, {"source": "1962457069", "flow": 71, "target": "1396882205"}, {"source": "1336189521", "flow": 113, "target": "1396882205"}, {"source": "1184612921", "flow": 478, "target": "1396882205"}, {"source": "1932194966", "flow": 65, "target": "1396882205"}, {"source": "1962499582", "flow": 186, "target": "1396882205"}, {"source": "1346212602", "flow": 20, "target": "1396882205"}, {"source": "1174669998", "flow": 23, "target": "1396882205"}, {"source": "1174584403", "flow": 167, "target": "1396882205"}, {"source": "1154365518", "flow": 53, "target": "1396882205"}, {"source": "1346239498", "flow": 141, "target": "1396882205"}, {"source": "1639113509", "flow": 168, "target": "1396882205"}, {"source": "1972504405", "flow": 31, "target": "1396882205"}, {"source": "1932190360", "flow": 80, "target": "1396882205"}, {"source": "1144288747", "flow": 95, "target": "1396882205"}, {"source": "1740279660", "flow": 123, "target": "1396882205"}, {"source": "1144283896", "flow": 126, "target": "1396882205"}, {"source": "1144205519", "flow": 49, "target": "1396882205"}, {"source": "1356389597", "flow": 211, "target": "1396882205"}, {"source": "1134346323", "flow": 67, "target": "1396882205"}, {"source": "1134321235", "flow": 220, "target": "1396882205"}, {"source": "1134163694", "flow": 85, "target": "1396882205"}, {"source": "1972506186", "flow": 180, "target": "1396882205"}, {"source": "1356436174", "flow": 87, "target": "1396882205"}, {"source": "1740353002", "flow": 90, "target": "1396882205"}, {"source": "1871548818", "flow": 159, "target": "1396882205"}, {"source": "1134103831", "flow": 44, "target": "1396882205"}, {"source": "1366429151", "flow": 172, "target": "1396882205"}, {"source": "1013920735", "flow": 59, "target": "1396882205"}, {"source": "1629249891", "flow": 220, "target": "1396882205"}, {"source": "1124150016", "flow": 45, "target": "1396882205"}, {"source": "1932183779", "flow": 65, "target": "1396882205"}, {"source": "1124111257", "flow": 62, "target": "1396882205"}, {"source": "1366485997", "flow": 51, "target": "1396882205"}, {"source": "1114961596", "flow": 81, "target": "1396882205"}, {"source": "1972524429", "flow": 22, "target": "1396882205"}, {"source": "1376607259", "flow": 56, "target": "1396882205"}, {"source": "1992960298", "flow": 215, "target": "1396882205"}, {"source": "1114956687", "flow": 289, "target": "1396882205"}, {"source": "1801888060", "flow": 70, "target": "1396882205"}, {"source": "1376756742", "flow": 97, "target": "1396882205"}, {"source": "1114074085", "flow": 97, "target": "1396882205"}, {"source": "1619916970", "flow": 52, "target": "1396882205"}, {"source": "1972538486", "flow": 88, "target": "1396882205"}, {"source": "1932128782", "flow": 181, "target": "1396882205"}, {"source": "1114020336", "flow": 92, "target": "1396882205"}, {"source": "1386615540", "flow": 37, "target": "1396882205"}, {"source": "1386683118", "flow": 113, "target": "1396882205"}, {"source": "1104837327", "flow": 121, "target": "1396882205"}, {"source": "1104832450", "flow": 80, "target": "1396882205"}, {"source": "1619180403", "flow": 64, "target": "1396882205"}, {"source": "1003897380", "flow": 96, "target": "1396882205"}, {"source": "1386683407", "flow": 36, "target": "1396882205"}, {"source": "1972540557", "flow": 266, "target": "1396882205"}, {"source": "1083609481", "flow": 27, "target": "1396882205"}, {"source": "1740377845", "flow": 3252, "target": "1396882205"}, {"source": "1386697126", "flow": 71, "target": "1396882205"}, {"source": "1083606248", "flow": 99, "target": "1396882205"}, {"source": "1386976207", "flow": 90, "target": "1396882205"}, {"source": "1922079771", "flow": 31, "target": "1396882205"}, {"source": "1972543064", "flow": 89, "target": "1396882205"}, {"source": "1811044787", "flow": 21, "target": "1396882205"}, {"source": "1841239647", "flow": 31, "target": "1396882205"}, {"source": "1972547891", "flow": 38, "target": "1396882205"}, {"source": "1972549533", "flow": 119, "target": "1396882205"}, {"source": "1396707923", "flow": 153, "target": "1396882205"}, {"source": "1033199401", "flow": 29, "target": "1396882205"}, {"source": "1871696096", "flow": 26, "target": "1396882205"}, {"source": "1912993262", "flow": 40, "target": "1396882205"}, {"source": "1740377852", "flow": 1042, "target": "1396882205"}, {"source": "1821095738", "flow": 25, "target": "1396882205"}, {"source": "1972581775", "flow": 80, "target": "1396882205"}, {"source": "1972658060", "flow": 59, "target": "1396882205"}, {"source": "1396721106", "flow": 125, "target": "1396882205"}, {"source": "1609917129", "flow": 83, "target": "1396882205"}, {"source": "1912989989", "flow": 142, "target": "1396882205"}, {"source": "1750320966", "flow": 113, "target": "1396882205"}, {"source": "1821083973", "flow": 82, "target": "1396882205"}, {"source": "1750348892", "flow": 49, "target": "1396882205"}, {"source": "1396729091", "flow": 118, "target": "1396882205"}, {"source": "1750389607", "flow": 145, "target": "1396882205"}, {"source": "1750394060", "flow": 1778, "target": "1396882205"}, {"source": "1750410452", "flow": 162, "target": "1396882205"}, {"source": "1760672026", "flow": 178, "target": "1396882205"}, {"source": "1396751749", "flow": 48, "target": "1396882205"}, {"source": "1770563215", "flow": 17, "target": "1396882205"}, {"source": "1396909255", "flow": 222, "target": "1396882205"}, {"source": "1609838499", "flow": 19, "target": "1396882205"}, {"source": "1396932463", "flow": 56, "target": "1396882205"}, {"source": "1609810274", "flow": 107, "target": "1396882205"}, {"source": "1821060526", "flow": 110, "target": "1396882205"}, {"source": "1770578882", "flow": 232, "target": "1396882205"}, {"source": "1407148927", "flow": 15, "target": "1396882205"}, {"source": "1609039973", "flow": 55, "target": "1396882205"}, {"source": "1801894142", "flow": 86, "target": "1396882205"}, {"source": "1407830102", "flow": 90, "target": "1396882205"}, {"source": "1881646073", "flow": 171, "target": "1396882205"}, {"source": "1609014489", "flow": 47, "target": "1396882205"}, {"source": "1407833825", "flow": 83, "target": "1396882205"}, {"source": "1811133903", "flow": 41, "target": "1396882205"}, {"source": "1912984758", "flow": 196, "target": "1396882205"}, {"source": "1407890593", "flow": 264, "target": "1396882205"}, {"source": "1801846712", "flow": 58, "target": "1396882205"}, {"source": "1881673093", "flow": 56, "target": "1396882205"}, {"source": "1407892516", "flow": 72, "target": "1396882205"}, {"source": "1407977184", "flow": 24, "target": "1396882205"}, {"source": "1417091257", "flow": 119, "target": "1396882205"}, {"source": "1598718330", "flow": 139, "target": "1396882205"}, {"source": "1891005856", "flow": 84, "target": "1396882205"}, {"source": "1598083578", "flow": 34, "target": "1396882205"}, {"source": "1417903378", "flow": 85, "target": "1396882205"}, {"source": "1801069471", "flow": 70, "target": "1396882205"}, {"source": "1588788301", "flow": 62, "target": "1396882205"}, {"source": "1417919218", "flow": 27, "target": "1396882205"}, {"source": "1417946203", "flow": 165, "target": "1396882205"}, {"source": "1891701017", "flow": 25, "target": "1396882205"}, {"source": "1417952581", "flow": 188, "target": "1396882205"}, {"source": "1588777445", "flow": 190, "target": "1396882205"}, {"source": "1417997990", "flow": 38, "target": "1396882205"}, {"source": "1427010297", "flow": 41, "target": "1396882205"}, {"source": "1427023605", "flow": 26, "target": "1396882205"}, {"source": "1073610754", "flow": 1199, "target": "1396882205"}, {"source": "1427044148", "flow": 79, "target": "1396882205"}, {"source": "1427046622", "flow": 56, "target": "1396882205"}, {"source": "1427055326", "flow": 43, "target": "1396882205"}, {"source": "1427079946", "flow": 84, "target": "1396882205"}, {"source": "1790906295", "flow": 19, "target": "1396882205"}, {"source": "1588656664", "flow": 33, "target": "1396882205"}, {"source": "1912982513", "flow": 140, "target": "1396882205"}, {"source": "1437101524", "flow": 49, "target": "1396882205"}, {"source": "1437136827", "flow": 236, "target": "1396882205"}, {"source": "1811971534", "flow": 82, "target": "1396882205"}, {"source": "1073557831", "flow": 35, "target": "1396882205"}, {"source": "1891741435", "flow": 89, "target": "1396882205"}, {"source": "1578677274", "flow": 115, "target": "1396882205"}, {"source": "1770637266", "flow": 34, "target": "1396882205"}, {"source": "1073505830", "flow": 121, "target": "1396882205"}, {"source": "1437260296", "flow": 1196, "target": "1396882205"}, {"source": "1063673622", "flow": 88, "target": "1396882205"}, {"source": "1790886059", "flow": 49, "target": "1396882205"}, {"source": "1972670552", "flow": 42, "target": "1396882205"}, {"source": "1972690006", "flow": 119, "target": "1396882205"}, {"source": "1063467876", "flow": 93, "target": "1396882205"}, {"source": "1063457315", "flow": 31, "target": "1396882205"}, {"source": "1053604330", "flow": 119, "target": "1396882205"}, {"source": "1447234141", "flow": 151, "target": "1396882205"}, {"source": "1578610457", "flow": 40, "target": "1396882205"}, {"source": "1003862566", "flow": 240, "target": "1396882205"}, {"source": "1568576825", "flow": 43, "target": "1396882205"}, {"source": "1053425181", "flow": 37, "target": "1396882205"}, {"source": "1912970021", "flow": 35, "target": "1396882205"}, {"source": "1982668976", "flow": 47, "target": "1396882205"}, {"source": "1780685743", "flow": 73, "target": "1396882205"}, {"source": "1447242565", "flow": 69, "target": "1396882205"}, {"source": "1568513075", "flow": 58, "target": "1396882205"}, {"source": "1053406405", "flow": 98, "target": "1396882205"}, {"source": "1053337717", "flow": 105, "target": "1396882205"}, {"source": "1790710374", "flow": 40, "target": "1396882205"}, {"source": "1053303248", "flow": 71, "target": "1396882205"}, {"source": "1790730448", "flow": 154, "target": "1396882205"}, {"source": "1447299698", "flow": 208, "target": "1396882205"}, {"source": "1891749420", "flow": 53, "target": "1396882205"}, {"source": "1568498665", "flow": 34, "target": "1396882205"}, {"source": "1447307251", "flow": 39, "target": "1396882205"}, {"source": "1891999389", "flow": 34, "target": "1396882205"}, {"source": "1043232879", "flow": 378, "target": "1396882205"}, {"source": "1457306565", "flow": 91, "target": "1396882205"}, {"source": "1790762219", "flow": 79, "target": "1396882205"}, {"source": "1568493062", "flow": 323, "target": "1396882205"}, {"source": "1043219165", "flow": 67, "target": "1396882205"}, {"source": "1043218654", "flow": 284, "target": "1396882205"}, {"source": "1457465668", "flow": 42, "target": "1396882205"}, {"source": "1538109103", "flow": 206, "target": "1396882205"}, {"source": "1912953555", "flow": 118, "target": "1396882205"}, {"source": "1902812571", "flow": 63, "target": "1396882205"}, {"source": "1538163126", "flow": 84, "target": "1396882205"}, {"source": "1467498279", "flow": 107, "target": "1396882205"}, {"source": "1538105242", "flow": 147, "target": "1396882205"}, {"source": "1538104526", "flow": 94, "target": "1396882205"}, {"source": "1538103692", "flow": 343, "target": "1396882205"}, {"source": "1538101068", "flow": 33, "target": "1396882205"}, {"source": "1467545541", "flow": 63, "target": "1396882205"}, {"source": "1043205008", "flow": 46, "target": "1396882205"}, {"source": "1902845118", "flow": 181, "target": "1396882205"}, {"source": "1538172077", "flow": 19, "target": "1396882205"}, {"source": "1518955699", "flow": 69, "target": "1396882205"}, {"source": "1518919224", "flow": 76, "target": "1396882205"}, {"source": "1902899677", "flow": 31, "target": "1396882205"}, {"source": "1508884875", "flow": 46, "target": "1396882205"}, {"source": "1538356571", "flow": 67, "target": "1396882205"}, {"source": "1477537173", "flow": 88, "target": "1396882205"}, {"source": "1508839622", "flow": 1692, "target": "1396882205"}, {"source": "1548259864", "flow": 104, "target": "1396882205"}, {"source": "1508805862", "flow": 112, "target": "1396882205"}, {"source": "1548281124", "flow": 68, "target": "1396882205"}, {"source": "1902099443", "flow": 42, "target": "1396882205"}, {"source": "1043217854", "flow": 32, "target": "1396882205"}, {"source": "1477542942", "flow": 158, "target": "1396882205"}, {"source": "1568460640", "flow": 91, "target": "1396882205"}, {"source": "1508804337", "flow": 227, "target": "1396882205"}, {"source": "1902013410", "flow": 77, "target": "1396882205"}, {"source": "1568417772", "flow": 217, "target": "1396882205"}, {"source": "1497849491", "flow": 104, "target": "1396882205"}, {"source": "1558345256", "flow": 70, "target": "1396882205"}, {"source": "1477595593", "flow": 32, "target": "1396882205"}, {"source": "1487635777", "flow": 23, "target": "1396882205"}, {"source": "1497741714", "flow": 77, "target": "1396882205"}, {"source": "1487638185", "flow": 84, "target": "1396882205"}, {"source": "1497718712", "flow": 62, "target": "1396882205"}, {"source": "1568415164", "flow": 47, "target": "1396882205"}, {"source": "1558642934", "flow": 22, "target": "1396882205"}, {"source": "1902903651", "flow": 89, "target": "1396882205"}, {"source": "1487665634", "flow": 53, "target": "1396882205"}, {"source": "1902031610", "flow": 76, "target": "1396882205"}, {"source": "1558355941", "flow": 203, "target": "1396882205"}, {"source": "1487680237", "flow": 182, "target": "1396882205"}, {"source": "1558386771", "flow": 38, "target": "1396882205"}, {"source": "1487788188", "flow": 14, "target": "1396882205"}, {"source": "1295872216", "flow": 67, "target": "1396882205"}, {"source": "1295733772", "flow": 82, "target": "1396882205"}, {"source": "1326149907", "flow": 53, "target": "1407827157"}, {"source": "1073610754", "flow": 43, "target": "1417227398"}, {"source": "1073610754", "flow": 20, "target": "1417919531"}, {"source": "1558355941", "flow": 231, "target": "1417938846"}, {"source": "1467498279", "flow": 61, "target": "1417938846"}, {"source": "1114074085", "flow": 474, "target": "1417938846"}, {"source": "1457465668", "flow": 75, "target": "1417938846"}, {"source": "1265402879", "flow": 68, "target": "1417938846"}, {"source": "1295733772", "flow": 64, "target": "1417938846"}, {"source": "1306847009", "flow": 48, "target": "1417938846"}, {"source": "1386976207", "flow": 100, "target": "1417938846"}, {"source": "1104837327", "flow": 82, "target": "1417938846"}, {"source": "1942255575", "flow": 110, "target": "1417938846"}, {"source": "1851330906", "flow": 20, "target": "1417938846"}, {"source": "1255383766", "flow": 39, "target": "1417938846"}, {"source": "1750320966", "flow": 16, "target": "1417938846"}, {"source": "1013920735", "flow": 18, "target": "1417938846"}, {"source": "1649271206", "flow": 239, "target": "1417938846"}, {"source": "1235116518", "flow": 33, "target": "1417938846"}, {"source": "1184619124", "flow": 110, "target": "1417938846"}, {"source": "1245238567", "flow": 21, "target": "1417938846"}, {"source": "1326149907", "flow": 121, "target": "1427055821"}, {"source": "1073610754", "flow": 292, "target": "1427055821"}, {"source": "1770637266", "flow": 125, "target": "1427055821"}, {"source": "1073610754", "flow": 36, "target": "1427082957"}, {"source": "1073610754", "flow": 33, "target": "1437150984"}, {"source": "1902903651", "flow": 18, "target": "1437150984"}, {"source": "1326149907", "flow": 15, "target": "1437150984"}, {"source": "1740353002", "flow": 19, "target": "1437150984"}, {"source": "1073610754", "flow": 235, "target": "1437156346"}, {"source": "1326149907", "flow": 30, "target": "1437186111"}, {"source": "1073610754", "flow": 155, "target": "1437186111"}, {"source": "1073610754", "flow": 105, "target": "1437188216"}, {"source": "1184612921", "flow": 95, "target": "1447221056"}, {"source": "1740377845", "flow": 19, "target": "1447221056"}, {"source": "1326149907", "flow": 638, "target": "1447221056"}, {"source": "1073610754", "flow": 1050, "target": "1447221056"}, {"source": "1194796391", "flow": 59, "target": "1447226584"}, {"source": "1609917129", "flow": 78, "target": "1447226584"}, {"source": "1235299975", "flow": 106, "target": "1447226584"}, {"source": "1801878616", "flow": 41, "target": "1447226584"}, {"source": "1295708576", "flow": 90, "target": "1447226584"}, {"source": "1932316429", "flow": 70, "target": "1447226584"}, {"source": "1770563215", "flow": 179, "target": "1447226584"}, {"source": "1225222367", "flow": 169, "target": "1447226584"}, {"source": "1982712162", "flow": 57, "target": "1447226584"}, {"source": "1962418038", "flow": 120, "target": "1447226584"}, {"source": "1033199401", "flow": 200, "target": "1447226584"}, {"source": "1851507073", "flow": 63, "target": "1447231956"}, {"source": "1306822234", "flow": 104, "target": "1447231956"}, {"source": "1326149907", "flow": 23, "target": "1447231956"}, {"source": "1073610754", "flow": 25, "target": "1447231956"}, {"source": "1073610754", "flow": 35, "target": "1447388335"}, {"source": "1326149907", "flow": 35, "target": "1447457775"}, {"source": "1073610754", "flow": 31, "target": "1447457775"}, {"source": "1255301800", "flow": 94, "target": "1447571658"}, {"source": "1255318051", "flow": 34, "target": "1447571658"}, {"source": "1326149907", "flow": 90, "target": "1447571658"}, {"source": "1689616294", "flow": 22, "target": "1447571658"}, {"source": "1730113440", "flow": 59, "target": "1447571658"}, {"source": "1073610754", "flow": 189, "target": "1447571658"}, {"source": "1316977861", "flow": 54, "target": "1447571658"}, {"source": "1417946203", "flow": 22, "target": "1447571658"}, {"source": "1811971534", "flow": 32, "target": "1447571658"}, {"source": "1255370755", "flow": 22, "target": "1447571658"}, {"source": "1306993282", "flow": 33, "target": "1447571658"}, {"source": "1447307251", "flow": 168, "target": "1447571658"}, {"source": "1558355941", "flow": 980, "target": "1447571658"}, {"source": "1043232879", "flow": 21, "target": "1447571658"}, {"source": "1649271206", "flow": 92, "target": "1447571658"}, {"source": "1013991850", "flow": 40, "target": "1447571658"}, {"source": "1750320966", "flow": 30, "target": "1447571658"}, {"source": "1396729091", "flow": 19, "target": "1447571658"}, {"source": "1699752493", "flow": 67, "target": "1447571658"}, {"source": "1265631675", "flow": 22, "target": "1447571658"}, {"source": "1083606248", "flow": 105, "target": "1447571658"}, {"source": "1912970021", "flow": 55, "target": "1447571658"}, {"source": "1487638185", "flow": 14, "target": "1447571658"}, {"source": "1750410452", "flow": 40, "target": "1447571658"}, {"source": "1558345256", "flow": 70, "target": "1447571658"}, {"source": "1760672026", "flow": 19, "target": "1447571658"}, {"source": "1386976207", "flow": 813, "target": "1447571658"}, {"source": "1942284658", "flow": 30, "target": "1447571658"}, {"source": "1447242565", "flow": 104, "target": "1447571658"}, {"source": "1871548818", "flow": 38, "target": "1447571658"}, {"source": "1396909255", "flow": 19, "target": "1447571658"}, {"source": "1629249891", "flow": 21, "target": "1447571658"}, {"source": "1366429151", "flow": 28, "target": "1447571658"}, {"source": "1578677274", "flow": 51, "target": "1447571658"}, {"source": "1821060526", "flow": 32, "target": "1447571658"}, {"source": "1295733772", "flow": 27, "target": "1447571658"}, {"source": "1477537173", "flow": 23, "target": "1447571658"}, {"source": "1053337717", "flow": 28, "target": "1447571658"}, {"source": "1891741435", "flow": 62, "target": "1447571658"}, {"source": "1942255575", "flow": 125, "target": "1447571658"}, {"source": "1972547891", "flow": 53, "target": "1447571658"}, {"source": "1134103831", "flow": 18, "target": "1447571658"}, {"source": "1790730448", "flow": 33, "target": "1447571658"}, {"source": "1740353002", "flow": 24, "target": "1447571658"}, {"source": "1427079946", "flow": 17, "target": "1447571658"}, {"source": "1902903651", "flow": 18, "target": "1447571658"}, {"source": "1114074085", "flow": 1747, "target": "1447571658"}, {"source": "1467498279", "flow": 562, "target": "1447571658"}, {"source": "1972506186", "flow": 49, "target": "1447571658"}, {"source": "1285936013", "flow": 54, "target": "1447571658"}, {"source": "1912984758", "flow": 58, "target": "1447571658"}, {"source": "1396707923", "flow": 29, "target": "1447571658"}, {"source": "1912982513", "flow": 14, "target": "1447571658"}, {"source": "1972549533", "flow": 13, "target": "1447571658"}, {"source": "1437136827", "flow": 52, "target": "1447571658"}, {"source": "1356389597", "flow": 35, "target": "1447571658"}, {"source": "1144283896", "flow": 23, "target": "1447571658"}, {"source": "1407892516", "flow": 42, "target": "1447571658"}, {"source": "1376756742", "flow": 21, "target": "1447571658"}, {"source": "1740279660", "flow": 21, "target": "1447571658"}, {"source": "1639113509", "flow": 29, "target": "1447571658"}, {"source": "1871696096", "flow": 52, "target": "1447571658"}, {"source": "1851478747", "flow": 27, "target": "1447571658"}, {"source": "1184612921", "flow": 984, "target": "1447571658"}, {"source": "1710966247", "flow": 23, "target": "1447571658"}, {"source": "1104837327", "flow": 53, "target": "1447571658"}, {"source": "1235116518", "flow": 151, "target": "1447571658"}, {"source": "1184619124", "flow": 192, "target": "1447571658"}, {"source": "1417091257", "flow": 57, "target": "1447571658"}, {"source": "1497741714", "flow": 21, "target": "1447571658"}, {"source": "1265556898", "flow": 165, "target": "1447571658"}, {"source": "1568493062", "flow": 93, "target": "1447571658"}, {"source": "1447234141", "flow": 47, "target": "1447571658"}, {"source": "1245313741", "flow": 31, "target": "1447571658"}, {"source": "1073557831", "flow": 17, "target": "1447571658"}, {"source": "1396721106", "flow": 38, "target": "1447571658"}, {"source": "1316921166", "flow": 48, "target": "1447571658"}, {"source": "1679504765", "flow": 35, "target": "1447571658"}, {"source": "1689617433", "flow": 24, "target": "1447571658"}, {"source": "1326023789", "flow": 36, "target": "1447571658"}, {"source": "1689645707", "flow": 26, "target": "1457366189"}, {"source": "1699970566", "flow": 29, "target": "1457366189"}, {"source": "1194796391", "flow": 38, "target": "1457366189"}, {"source": "1326149907", "flow": 26, "target": "1457396079"}, {"source": "1073610754", "flow": 384, "target": "1457396079"}, {"source": "1073610754", "flow": 100, "target": "1467406132"}, {"source": "1437260296", "flow": 107, "target": "1467408781"}, {"source": "1740353002", "flow": 24, "target": "1467408781"}, {"source": "1184612921", "flow": 1020, "target": "1467408781"}, {"source": "1134321235", "flow": 17, "target": "1467408781"}, {"source": "1326149907", "flow": 105, "target": "1467408781"}, {"source": "1902903651", "flow": 24, "target": "1467408781"}, {"source": "1306183702", "flow": 20, "target": "1467408781"}, {"source": "1043232879", "flow": 25, "target": "1467408781"}, {"source": "1073610754", "flow": 488, "target": "1467408781"}, {"source": "1326149907", "flow": 25, "target": "1467412726"}, {"source": "1073610754", "flow": 103, "target": "1467496802"}, {"source": "1558355941", "flow": 152, "target": "1467763458"}, {"source": "1104837327", "flow": 43, "target": "1467763458"}, {"source": "1639500739", "flow": 247, "target": "1467763458"}, {"source": "1891741435", "flow": 34, "target": "1467763458"}, {"source": "1386976207", "flow": 516, "target": "1467763458"}, {"source": "1649271206", "flow": 57, "target": "1467763458"}, {"source": "1114074085", "flow": 94, "target": "1467763458"}, {"source": "1942255575", "flow": 58, "target": "1467763458"}, {"source": "1326149907", "flow": 42, "target": "1477549756"}, {"source": "1073610754", "flow": 62, "target": "1477549756"}, {"source": "1265556898", "flow": 81, "target": "1477616571"}, {"source": "1073610754", "flow": 30, "target": "1487663506"}, {"source": "1326149907", "flow": 92, "target": "1487663506"}, {"source": "1073610754", "flow": 630, "target": "1487684122"}, {"source": "1326149907", "flow": 103, "target": "1487684122"}, {"source": "1073610754", "flow": 110, "target": "1487690400"}, {"source": "1770637266", "flow": 49, "target": "1487690400"}, {"source": "1740353002", "flow": 47, "target": "1497750244"}, {"source": "1326149907", "flow": 174, "target": "1497750244"}, {"source": "1386683118", "flow": 28, "target": "1497750244"}, {"source": "1134321235", "flow": 70, "target": "1497750244"}, {"source": "1538109103", "flow": 22, "target": "1497750244"}, {"source": "1770637266", "flow": 81, "target": "1497750244"}, {"source": "1306183702", "flow": 23, "target": "1497750244"}, {"source": "1619916970", "flow": 23, "target": "1497750244"}, {"source": "1760672026", "flow": 25, "target": "1497750244"}, {"source": "1043232879", "flow": 30, "target": "1497750244"}, {"source": "1629249891", "flow": 22, "target": "1497750244"}, {"source": "1336189521", "flow": 55, "target": "1497750244"}, {"source": "1003862566", "flow": 31, "target": "1497750244"}, {"source": "1073610754", "flow": 52, "target": "1497750244"}, {"source": "1902903651", "flow": 49, "target": "1497750244"}, {"source": "1194796391", "flow": 28, "target": "1497759260"}, {"source": "1326149907", "flow": 104, "target": "1497770424"}, {"source": "1073610754", "flow": 20, "target": "1497770424"}, {"source": "1073610754", "flow": 116, "target": "1508934217"}, {"source": "1073610754", "flow": 68, "target": "1518911338"}, {"source": "1326149907", "flow": 24, "target": "1518911338"}, {"source": "1902903651", "flow": 33, "target": "1518911338"}, {"source": "1326149907", "flow": 33, "target": "1528052578"}, {"source": "1073610754", "flow": 33, "target": "1528052578"}, {"source": "1326149907", "flow": 262, "target": "1528056066"}, {"source": "1073610754", "flow": 100, "target": "1528056066"}, {"source": "1851507073", "flow": 149, "target": "1528056066"}, {"source": "1306822234", "flow": 112, "target": "1528056066"}, {"source": "1265556898", "flow": 20, "target": "1528064409"}, {"source": "1326149907", "flow": 43, "target": "1538100029"}, {"source": "1225222367", "flow": 67, "target": "1538110556"}, {"source": "1962418038", "flow": 39, "target": "1538110556"}, {"source": "1932316429", "flow": 50, "target": "1538110556"}, {"source": "1295708576", "flow": 196, "target": "1538110556"}, {"source": "1801878616", "flow": 40, "target": "1538110556"}, {"source": "1689645707", "flow": 141, "target": "1538110556"}, {"source": "1194796391", "flow": 329, "target": "1538110556"}, {"source": "1770563215", "flow": 65, "target": "1538110556"}, {"source": "1033199401", "flow": 64, "target": "1538110556"}, {"source": "1487840872", "flow": 193, "target": "1538110556"}, {"source": "1609917129", "flow": 94, "target": "1538110556"}, {"source": "1699970566", "flow": 111, "target": "1538110556"}, {"source": "1841498821", "flow": 46, "target": "1538110556"}, {"source": "1235299975", "flow": 90, "target": "1538110556"}, {"source": "1326149907", "flow": 38, "target": "1538110556"}, {"source": "1982712162", "flow": 55, "target": "1538110556"}, {"source": "1134321235", "flow": 27, "target": "1538114434"}, {"source": "1437136827", "flow": 294, "target": "1538114434"}, {"source": "1487840872", "flow": 74, "target": "1538114434"}, {"source": "1538105242", "flow": 94, "target": "1538114434"}, {"source": "1578677274", "flow": 102, "target": "1538114434"}, {"source": "1265556898", "flow": 43, "target": "1538114434"}, {"source": "1467498279", "flow": 78, "target": "1538114434"}, {"source": "1689617433", "flow": 122, "target": "1538114434"}, {"source": "1740377845", "flow": 14, "target": "1538114434"}, {"source": "1083606248", "flow": 54, "target": "1538114434"}, {"source": "1063673622", "flow": 30, "target": "1538114434"}, {"source": "1386976207", "flow": 54, "target": "1538114434"}, {"source": "1699752493", "flow": 276, "target": "1538114434"}, {"source": "1972547891", "flow": 285, "target": "1538114434"}, {"source": "1497741714", "flow": 163, "target": "1538114434"}, {"source": "1396707923", "flow": 295, "target": "1538114434"}, {"source": "1972549533", "flow": 74, "target": "1538114434"}, {"source": "1801894142", "flow": 93, "target": "1538114434"}, {"source": "1447234141", "flow": 542, "target": "1538114434"}, {"source": "1396721106", "flow": 227, "target": "1538114434"}, {"source": "1609917129", "flow": 83, "target": "1538114434"}, {"source": "1306993282", "flow": 248, "target": "1538114434"}, {"source": "1972658060", "flow": 79, "target": "1538114434"}, {"source": "1396729091", "flow": 246, "target": "1538114434"}, {"source": "1033199401", "flow": 71, "target": "1538114434"}, {"source": "1265631675", "flow": 25, "target": "1538114434"}, {"source": "1750410452", "flow": 173, "target": "1538114434"}, {"source": "1487638185", "flow": 39, "target": "1538114434"}, {"source": "1760672026", "flow": 31, "target": "1538114434"}, {"source": "1023094851", "flow": 61, "target": "1538114434"}, {"source": "1942284658", "flow": 150, "target": "1538114434"}, {"source": "1770563215", "flow": 22, "target": "1538114434"}, {"source": "1811971534", "flow": 125, "target": "1538114434"}, {"source": "1396909255", "flow": 30, "target": "1538114434"}, {"source": "1871696096", "flow": 81, "target": "1538114434"}, {"source": "1053406405", "flow": 24, "target": "1538114434"}, {"source": "1821060526", "flow": 129, "target": "1538114434"}, {"source": "1053337717", "flow": 56, "target": "1538114434"}, {"source": "1477537173", "flow": 566, "target": "1538114434"}, {"source": "1487788188", "flow": 60, "target": "1538114434"}, {"source": "1407830102", "flow": 82, "target": "1538114434"}, {"source": "1912984758", "flow": 235, "target": "1538114434"}, {"source": "1407833825", "flow": 292, "target": "1538114434"}, {"source": "1447299698", "flow": 25, "target": "1538114434"}, {"source": "1790762219", "flow": 18, "target": "1538114434"}, {"source": "1902099443", "flow": 41, "target": "1538114434"}, {"source": "1407890593", "flow": 26, "target": "1538114434"}, {"source": "1568460640", "flow": 41, "target": "1538114434"}, {"source": "1043232879", "flow": 21, "target": "1538114434"}, {"source": "1407892516", "flow": 135, "target": "1538114434"}, {"source": "1851478747", "flow": 105, "target": "1538114434"}, {"source": "1245215649", "flow": 115, "target": "1538114434"}, {"source": "1801878616", "flow": 24, "target": "1538114434"}, {"source": "1235299975", "flow": 170, "target": "1538114434"}, {"source": "1235116518", "flow": 147, "target": "1538114434"}, {"source": "1720079114", "flow": 71, "target": "1538114434"}, {"source": "1417091257", "flow": 616, "target": "1538114434"}, {"source": "1225222367", "flow": 42, "target": "1538114434"}, {"source": "1669563920", "flow": 23, "target": "1538114434"}, {"source": "1932316429", "flow": 27, "target": "1538114434"}, {"source": "1245313741", "flow": 95, "target": "1538114434"}, {"source": "1326046673", "flow": 74, "target": "1538114434"}, {"source": "1245325422", "flow": 100, "target": "1538114434"}, {"source": "1326023789", "flow": 225, "target": "1538114434"}, {"source": "1255301800", "flow": 348, "target": "1538114434"}, {"source": "1326149907", "flow": 124, "target": "1538114434"}, {"source": "1255318051", "flow": 381, "target": "1538114434"}, {"source": "1073610754", "flow": 553, "target": "1538114434"}, {"source": "1255370755", "flow": 59, "target": "1538114434"}, {"source": "1013991850", "flow": 289, "target": "1538114434"}, {"source": "1447307251", "flow": 76, "target": "1538114434"}, {"source": "1902903651", "flow": 17, "target": "1538114434"}, {"source": "1790730448", "flow": 104, "target": "1538114434"}, {"source": "1962418038", "flow": 36, "target": "1538114434"}, {"source": "1417946203", "flow": 33, "target": "1538114434"}, {"source": "1720286487", "flow": 65, "target": "1538114434"}, {"source": "1316977861", "flow": 496, "target": "1538114434"}, {"source": "1457306565", "flow": 35, "target": "1538114434"}, {"source": "1730113440", "flow": 100, "target": "1538114434"}, {"source": "1194796391", "flow": 24, "target": "1538114434"}, {"source": "1336147685", "flow": 98, "target": "1538114434"}, {"source": "1689616294", "flow": 87, "target": "1538114434"}, {"source": "1316921166", "flow": 289, "target": "1538114434"}, {"source": "1477542942", "flow": 126, "target": "1538114434"}, {"source": "1639226582", "flow": 30, "target": "1538114434"}, {"source": "1417997990", "flow": 90, "target": "1538114434"}, {"source": "1184612921", "flow": 58, "target": "1538114434"}, {"source": "1558355941", "flow": 226, "target": "1538114434"}, {"source": "1639113509", "flow": 104, "target": "1538114434"}, {"source": "1285611715", "flow": 225, "target": "1538114434"}, {"source": "1508804337", "flow": 19, "target": "1538114434"}, {"source": "1740279660", "flow": 26, "target": "1538114434"}, {"source": "1144283896", "flow": 191, "target": "1538114434"}, {"source": "1427046622", "flow": 49, "target": "1538114434"}, {"source": "1912982513", "flow": 45, "target": "1538114434"}, {"source": "1134346323", "flow": 127, "target": "1538114434"}, {"source": "1902031610", "flow": 27, "target": "1538114434"}, {"source": "1427079946", "flow": 104, "target": "1538114434"}, {"source": "1932183779", "flow": 43, "target": "1538114434"}, {"source": "1134103831", "flow": 75, "target": "1538114434"}, {"source": "1972506186", "flow": 156, "target": "1538114434"}, {"source": "1366429151", "flow": 225, "target": "1538114434"}, {"source": "1912953555", "flow": 19, "target": "1538114434"}, {"source": "1629249891", "flow": 82, "target": "1538114434"}, {"source": "1558345256", "flow": 363, "target": "1538114434"}, {"source": "1295708576", "flow": 46, "target": "1538114434"}, {"source": "1740353002", "flow": 31, "target": "1538114434"}, {"source": "1114074085", "flow": 127, "target": "1538114434"}, {"source": "1376756742", "flow": 192, "target": "1538114434"}, {"source": "1073557831", "flow": 142, "target": "1538114434"}, {"source": "1871548818", "flow": 185, "target": "1538114434"}, {"source": "1073610754", "flow": 217, "target": "1538164090"}, {"source": "1326149907", "flow": 69, "target": "1538164090"}, {"source": "1417946203", "flow": 27, "target": "1538218680"}, {"source": "1326149907", "flow": 27, "target": "1538218680"}, {"source": "1073610754", "flow": 32, "target": "1538218680"}, {"source": "1740353002", "flow": 48, "target": "1538244918"}, {"source": "1902903651", "flow": 27, "target": "1538244918"}, {"source": "1073610754", "flow": 42, "target": "1538244918"}, {"source": "1073610754", "flow": 187, "target": "1548216880"}, {"source": "1326149907", "flow": 25, "target": "1548216880"}, {"source": "1073610754", "flow": 36, "target": "1548376700"}, {"source": "1073610754", "flow": 108, "target": "1548546138"}, {"source": "1326149907", "flow": 169, "target": "1548546138"}, {"source": "1073610754", "flow": 127, "target": "1558311779"}, {"source": "1073610754", "flow": 79, "target": "1558339085"}, {"source": "1326149907", "flow": 50, "target": "1558339085"}, {"source": "1306822234", "flow": 34, "target": "1558365890"}, {"source": "1326149907", "flow": 211, "target": "1558365890"}, {"source": "1073610754", "flow": 1036, "target": "1558365890"}, {"source": "1386976207", "flow": 37, "target": "1558672543"}, {"source": "1962418038", "flow": 22, "target": "1568416311"}, {"source": "1770563215", "flow": 20, "target": "1568416311"}, {"source": "1194796391", "flow": 32, "target": "1568416311"}, {"source": "1235299975", "flow": 27, "target": "1568416311"}, {"source": "1295708576", "flow": 17, "target": "1568416311"}, {"source": "1689645707", "flow": 46, "target": "1568416311"}, {"source": "1699970566", "flow": 22, "target": "1568416311"}, {"source": "1073610754", "flow": 37, "target": "1568481984"}, {"source": "1326149907", "flow": 36, "target": "1568481984"}, {"source": "1073610754", "flow": 189, "target": "1568532513"}, {"source": "1407890593", "flow": 111, "target": "1568551455"}, {"source": "1740252642", "flow": 41, "target": "1568551455"}, {"source": "1184612921", "flow": 195, "target": "1568551455"}, {"source": "1043218654", "flow": 33, "target": "1568551455"}, {"source": "1689645707", "flow": 15, "target": "1568739423"}, {"source": "1306822234", "flow": 43, "target": "1578527172"}, {"source": "1326149907", "flow": 111, "target": "1578527172"}, {"source": "1073610754", "flow": 502, "target": "1578527172"}, {"source": "1417946203", "flow": 34, "target": "1578591756"}, {"source": "1043232879", "flow": 21, "target": "1578591756"}, {"source": "1326017856", "flow": 797, "target": "1578620449"}, {"source": "1326149907", "flow": 37, "target": "1588640692"}, {"source": "1073610754", "flow": 130, "target": "1588640692"}, {"source": "1902903651", "flow": 26, "target": "1588679898"}, {"source": "1073610754", "flow": 63, "target": "1588679898"}, {"source": "1326149907", "flow": 23, "target": "1588679898"}, {"source": "1770637266", "flow": 22, "target": "1588713440"}, {"source": "1932316429", "flow": 72, "target": "1598099699"}, {"source": "1689645707", "flow": 338, "target": "1598099699"}, {"source": "1295708576", "flow": 197, "target": "1598099699"}, {"source": "1609917129", "flow": 72, "target": "1598099699"}, {"source": "1962418038", "flow": 192, "target": "1598099699"}, {"source": "1194796391", "flow": 313, "target": "1598099699"}, {"source": "1235299975", "flow": 190, "target": "1598099699"}, {"source": "1801878616", "flow": 76, "target": "1598099699"}, {"source": "1982712162", "flow": 83, "target": "1598099699"}, {"source": "1770563215", "flow": 106, "target": "1598099699"}, {"source": "1225222367", "flow": 107, "target": "1598099699"}, {"source": "1033199401", "flow": 113, "target": "1598099699"}, {"source": "1699970566", "flow": 129, "target": "1598099699"}, {"source": "1073610754", "flow": 80, "target": "1598716060"}, {"source": "1073610754", "flow": 140, "target": "1598719643"}, {"source": "1073610754", "flow": 74, "target": "1598835308"}, {"source": "1073610754", "flow": 272, "target": "1598875460"}, {"source": "1326149907", "flow": 228, "target": "1598875460"}, {"source": "1912167669", "flow": 39, "target": "1609007525"}, {"source": "1073610754", "flow": 21, "target": "1609807122"}, {"source": "1073610754", "flow": 112, "target": "1609824010"}, {"source": "1518949809", "flow": 16, "target": "1609826783"}, {"source": "1073610754", "flow": 69, "target": "1609857432"}, {"source": "1073610754", "flow": 20, "target": "1609860659"}, {"source": "1770637266", "flow": 45, "target": "1609897339"}, {"source": "1073610754", "flow": 225, "target": "1609897339"}, {"source": "1326149907", "flow": 45, "target": "1619038247"}, {"source": "1740353002", "flow": 16, "target": "1619038247"}, {"source": "1902903651", "flow": 20, "target": "1619038247"}, {"source": "1073610754", "flow": 40, "target": "1619038247"}, {"source": "1326149907", "flow": 297, "target": "1619914785"}, {"source": "1073610754", "flow": 77, "target": "1619914785"}, {"source": "1235299975", "flow": 83, "target": "1619920949"}, {"source": "1982712162", "flow": 51, "target": "1619920949"}, {"source": "1962418038", "flow": 96, "target": "1619920949"}, {"source": "1609917129", "flow": 242, "target": "1619920949"}, {"source": "1770563215", "flow": 85, "target": "1619920949"}, {"source": "1295708576", "flow": 202, "target": "1619920949"}, {"source": "1194796391", "flow": 392, "target": "1619920949"}, {"source": "1225222367", "flow": 125, "target": "1619920949"}, {"source": "1932316429", "flow": 67, "target": "1619920949"}, {"source": "1699970566", "flow": 137, "target": "1619920949"}, {"source": "1689645707", "flow": 176, "target": "1619920949"}, {"source": "1033199401", "flow": 70, "target": "1619920949"}, {"source": "1801878616", "flow": 40, "target": "1619920949"}, {"source": "1841498821", "flow": 55, "target": "1619920949"}, {"source": "1487840872", "flow": 175, "target": "1619920949"}, {"source": "1073610754", "flow": 637, "target": "1619931466"}, {"source": "1326149907", "flow": 248, "target": "1619931466"}, {"source": "1538182779", "flow": 279, "target": "1619939071"}, {"source": "1073610754", "flow": 481, "target": "1619939071"}, {"source": "1326149907", "flow": 86, "target": "1619939071"}, {"source": "1043232879", "flow": 17, "target": "1629024914"}, {"source": "1134321235", "flow": 16, "target": "1629024914"}, {"source": "1184612921", "flow": 417, "target": "1629024914"}, {"source": "1326149907", "flow": 66, "target": "1629024914"}, {"source": "1073610754", "flow": 258, "target": "1629024914"}, {"source": "1578677274", "flow": 165, "target": "1629025648"}, {"source": "1003862566", "flow": 768, "target": "1629025648"}, {"source": "1992960298", "flow": 278, "target": "1629025648"}, {"source": "1013920735", "flow": 30, "target": "1629025648"}, {"source": "1013991850", "flow": 48, "target": "1629025648"}, {"source": "1023094851", "flow": 83, "target": "1629025648"}, {"source": "1043218654", "flow": 43, "target": "1629025648"}, {"source": "1043232879", "flow": 1595, "target": "1629025648"}, {"source": "1053337717", "flow": 36, "target": "1629025648"}, {"source": "1982668976", "flow": 31, "target": "1629025648"}, {"source": "1053406405", "flow": 28, "target": "1629025648"}, {"source": "1053425181", "flow": 26, "target": "1629025648"}, {"source": "1063457315", "flow": 15, "target": "1629025648"}, {"source": "1073505830", "flow": 3514, "target": "1629025648"}, {"source": "1073557831", "flow": 22, "target": "1629025648"}, {"source": "1972658060", "flow": 33, "target": "1629025648"}, {"source": "1073610754", "flow": 418, "target": "1629025648"}, {"source": "1972549533", "flow": 38, "target": "1629025648"}, {"source": "1972543064", "flow": 22, "target": "1629025648"}, {"source": "1083606248", "flow": 62, "target": "1629025648"}, {"source": "1972540557", "flow": 56, "target": "1629025648"}, {"source": "1093830176", "flow": 44, "target": "1629025648"}, {"source": "1104837327", "flow": 92, "target": "1629025648"}, {"source": "1114074085", "flow": 24, "target": "1629025648"}, {"source": "1114956687", "flow": 31, "target": "1629025648"}, {"source": "1124150016", "flow": 39, "target": "1629025648"}, {"source": "1972506186", "flow": 37, "target": "1629025648"}, {"source": "1134103831", "flow": 15, "target": "1629025648"}, {"source": "1134321235", "flow": 2800, "target": "1629025648"}, {"source": "1144205519", "flow": 17, "target": "1629025648"}, {"source": "1144283896", "flow": 32, "target": "1629025648"}, {"source": "1144288747", "flow": 34, "target": "1629025648"}, {"source": "1174584403", "flow": 56, "target": "1629025648"}, {"source": "1962499582", "flow": 79, "target": "1629025648"}, {"source": "1174669998", "flow": 28, "target": "1629025648"}, {"source": "1184612921", "flow": 58, "target": "1629025648"}, {"source": "1184619124", "flow": 66, "target": "1629025648"}, {"source": "1962445726", "flow": 28, "target": "1629025648"}, {"source": "1184663494", "flow": 295, "target": "1629025648"}, {"source": "1215966726", "flow": 18, "target": "1629025648"}, {"source": "1215995972", "flow": 40, "target": "1629025648"}, {"source": "1225089097", "flow": 80, "target": "1629025648"}, {"source": "1235116518", "flow": 21, "target": "1629025648"}, {"source": "1235299975", "flow": 21, "target": "1629025648"}, {"source": "1245215649", "flow": 60, "target": "1629025648"}, {"source": "1952473431", "flow": 39, "target": "1629025648"}, {"source": "1245313741", "flow": 17, "target": "1629025648"}, {"source": "1245325422", "flow": 31, "target": "1629025648"}, {"source": "1952392797", "flow": 31, "target": "1629025648"}, {"source": "1255301800", "flow": 87, "target": "1629025648"}, {"source": "1255318051", "flow": 40, "target": "1629025648"}, {"source": "1255370755", "flow": 86, "target": "1629025648"}, {"source": "1255383766", "flow": 63, "target": "1629025648"}, {"source": "1255535746", "flow": 155, "target": "1629025648"}, {"source": "1265402879", "flow": 29, "target": "1629025648"}, {"source": "1942314075", "flow": 59, "target": "1629025648"}, {"source": "1265556898", "flow": 44, "target": "1629025648"}, {"source": "1265631675", "flow": 23, "target": "1629025648"}, {"source": "1942284658", "flow": 45, "target": "1629025648"}, {"source": "1285611715", "flow": 21, "target": "1629025648"}, {"source": "1285843896", "flow": 23, "target": "1629025648"}, {"source": "1942255575", "flow": 74, "target": "1629025648"}, {"source": "1295733772", "flow": 31, "target": "1629025648"}, {"source": "1295872216", "flow": 18, "target": "1629025648"}, {"source": "1306183702", "flow": 756, "target": "1629025648"}, {"source": "1942254883", "flow": 277, "target": "1629025648"}, {"source": "1306822234", "flow": 80, "target": "1629025648"}, {"source": "1306847009", "flow": 30, "target": "1629025648"}, {"source": "1306993282", "flow": 55, "target": "1629025648"}, {"source": "1316921166", "flow": 47, "target": "1629025648"}, {"source": "1316977861", "flow": 52, "target": "1629025648"}, {"source": "1326023789", "flow": 33, "target": "1629025648"}, {"source": "1326057167", "flow": 49, "target": "1629025648"}, {"source": "1326093345", "flow": 693, "target": "1629025648"}, {"source": "1326149907", "flow": 64, "target": "1629025648"}, {"source": "1336188457", "flow": 317, "target": "1629025648"}, {"source": "1336189521", "flow": 1895, "target": "1629025648"}, {"source": "1356389597", "flow": 555, "target": "1629025648"}, {"source": "1356436174", "flow": 13, "target": "1629025648"}, {"source": "1366429151", "flow": 39, "target": "1629025648"}, {"source": "1376756742", "flow": 41, "target": "1629025648"}, {"source": "1932128782", "flow": 69, "target": "1629025648"}, {"source": "1386683118", "flow": 1834, "target": "1629025648"}, {"source": "1386697126", "flow": 24, "target": "1629025648"}, {"source": "1922079771", "flow": 11, "target": "1629025648"}, {"source": "1386976207", "flow": 38, "target": "1629025648"}, {"source": "1396707923", "flow": 29, "target": "1629025648"}, {"source": "1396721106", "flow": 36, "target": "1629025648"}, {"source": "1912989989", "flow": 51, "target": "1629025648"}, {"source": "1396729091", "flow": 27, "target": "1629025648"}, {"source": "1396751749", "flow": 20, "target": "1629025648"}, {"source": "1396909255", "flow": 530, "target": "1629025648"}, {"source": "1912984758", "flow": 54, "target": "1629025648"}, {"source": "1407830102", "flow": 32, "target": "1629025648"}, {"source": "1407833825", "flow": 32, "target": "1629025648"}, {"source": "1407890593", "flow": 183, "target": "1629025648"}, {"source": "1407892516", "flow": 25, "target": "1629025648"}, {"source": "1417091257", "flow": 25, "target": "1629025648"}, {"source": "1417903378", "flow": 23, "target": "1629025648"}, {"source": "1417946203", "flow": 45, "target": "1629025648"}, {"source": "1417952581", "flow": 28, "target": "1629025648"}, {"source": "1427044148", "flow": 27, "target": "1629025648"}, {"source": "1912982513", "flow": 92, "target": "1629025648"}, {"source": "1427079946", "flow": 36, "target": "1629025648"}, {"source": "1437136827", "flow": 57, "target": "1629025648"}, {"source": "1912970021", "flow": 22, "target": "1629025648"}, {"source": "1447234141", "flow": 62, "target": "1629025648"}, {"source": "1447242565", "flow": 74, "target": "1629025648"}, {"source": "1447299698", "flow": 348, "target": "1629025648"}, {"source": "1457306565", "flow": 203, "target": "1629025648"}, {"source": "1912953555", "flow": 351, "target": "1629025648"}, {"source": "1457465668", "flow": 868, "target": "1629025648"}, {"source": "1467498279", "flow": 78, "target": "1629025648"}, {"source": "1467545541", "flow": 72, "target": "1629025648"}, {"source": "1477542942", "flow": 22, "target": "1629025648"}, {"source": "1487638185", "flow": 68, "target": "1629025648"}, {"source": "1487680237", "flow": 23, "target": "1629025648"}, {"source": "1497741714", "flow": 22, "target": "1629025648"}, {"source": "1508804337", "flow": 542, "target": "1629025648"}, {"source": "1508805862", "flow": 312, "target": "1629025648"}, {"source": "1518919224", "flow": 1453, "target": "1629025648"}, {"source": "1902845118", "flow": 172, "target": "1629025648"}, {"source": "1538103692", "flow": 171, "target": "1629025648"}, {"source": "1538105242", "flow": 19, "target": "1629025648"}, {"source": "1538109103", "flow": 798, "target": "1629025648"}, {"source": "1902099443", "flow": 15, "target": "1629025648"}, {"source": "1548281124", "flow": 34, "target": "1629025648"}, {"source": "1558355941", "flow": 34, "target": "1629025648"}, {"source": "1902031610", "flow": 22, "target": "1629025648"}, {"source": "1558386771", "flow": 669, "target": "1629025648"}, {"source": "1902013410", "flow": 27, "target": "1629025648"}, {"source": "1568417772", "flow": 480, "target": "1629025648"}, {"source": "1568493062", "flow": 112, "target": "1629025648"}, {"source": "1568576825", "flow": 16, "target": "1629025648"}, {"source": "1578610457", "flow": 65, "target": "1629025648"}, {"source": "1588656664", "flow": 18, "target": "1629025648"}, {"source": "1588777445", "flow": 32, "target": "1629025648"}, {"source": "1598718330", "flow": 54, "target": "1629025648"}, {"source": "1881646073", "flow": 197, "target": "1629025648"}, {"source": "1609810274", "flow": 34, "target": "1629025648"}, {"source": "1609917129", "flow": 25, "target": "1629025648"}, {"source": "1619916970", "flow": 778, "target": "1629025648"}, {"source": "1871548818", "flow": 45, "target": "1629025648"}, {"source": "1629249891", "flow": 580, "target": "1629025648"}, {"source": "1639113509", "flow": 47, "target": "1629025648"}, {"source": "1639226582", "flow": 26, "target": "1629025648"}, {"source": "1649219742", "flow": 537, "target": "1629025648"}, {"source": "1649262338", "flow": 94, "target": "1629025648"}, {"source": "1669470555", "flow": 48, "target": "1629025648"}, {"source": "1851549240", "flow": 146, "target": "1629025648"}, {"source": "1689616294", "flow": 19, "target": "1629025648"}, {"source": "1851507073", "flow": 88, "target": "1629025648"}, {"source": "1689617433", "flow": 44, "target": "1629025648"}, {"source": "1699752493", "flow": 29, "target": "1629025648"}, {"source": "1699760587", "flow": 75, "target": "1629025648"}, {"source": "1851478747", "flow": 36, "target": "1629025648"}, {"source": "1710181201", "flow": 38, "target": "1629025648"}, {"source": "1710966247", "flow": 21, "target": "1629025648"}, {"source": "1851330906", "flow": 129, "target": "1629025648"}, {"source": "1720286487", "flow": 22, "target": "1629025648"}, {"source": "1730113440", "flow": 34, "target": "1629025648"}, {"source": "1740252642", "flow": 45, "target": "1629025648"}, {"source": "1740279660", "flow": 89, "target": "1629025648"}, {"source": "1740353002", "flow": 13, "target": "1629025648"}, {"source": "1740377845", "flow": 21, "target": "1629025648"}, {"source": "1750320966", "flow": 198, "target": "1629025648"}, {"source": "1750389607", "flow": 82, "target": "1629025648"}, {"source": "1750394060", "flow": 58, "target": "1629025648"}, {"source": "1750410452", "flow": 36, "target": "1629025648"}, {"source": "1760672026", "flow": 689, "target": "1629025648"}, {"source": "1821060526", "flow": 56, "target": "1629025648"}, {"source": "1770578882", "flow": 53, "target": "1629025648"}, {"source": "1780685743", "flow": 30, "target": "1629025648"}, {"source": "1790730448", "flow": 36, "target": "1629025648"}, {"source": "1801888060", "flow": 60, "target": "1629025648"}, {"source": "1962418038", "flow": 104, "target": "1629078712"}, {"source": "1295708576", "flow": 53, "target": "1629078712"}, {"source": "1033199401", "flow": 37, "target": "1629078712"}, {"source": "1770563215", "flow": 40, "target": "1629078712"}, {"source": "1225222367", "flow": 73, "target": "1629078712"}, {"source": "1487840872", "flow": 18, "target": "1629078712"}, {"source": "1235299975", "flow": 23, "target": "1629078712"}, {"source": "1609917129", "flow": 64, "target": "1629078712"}, {"source": "1982712162", "flow": 28, "target": "1629078712"}, {"source": "1932316429", "flow": 55, "target": "1629078712"}, {"source": "1073610754", "flow": 28, "target": "1629166194"}, {"source": "1326149907", "flow": 21, "target": "1639124134"}, {"source": "1073610754", "flow": 27, "target": "1639151301"}, {"source": "1073610754", "flow": 31, "target": "1639172869"}, {"source": "1073610754", "flow": 410, "target": "1639264575"}, {"source": "1326149907", "flow": 273, "target": "1639264575"}, {"source": "1326149907", "flow": 50, "target": "1639284409"}, {"source": "1073610754", "flow": 21, "target": "1649248626"}, {"source": "1326149907", "flow": 29, "target": "1649248626"}, {"source": "1073610754", "flow": 121, "target": "1649299827"}, {"source": "1326149907", "flow": 44, "target": "1649299827"}, {"source": "1073610754", "flow": 41, "target": "1659313906"}, {"source": "1326149907", "flow": 22, "target": "1659313906"}, {"source": "1336189521", "flow": 18, "target": "1659347920"}, {"source": "1265556898", "flow": 18, "target": "1659387975"}, {"source": "1699970566", "flow": 49, "target": "1659392819"}, {"source": "1689645707", "flow": 31, "target": "1659392819"}, {"source": "1982712162", "flow": 155, "target": "1659392819"}, {"source": "1487840872", "flow": 131, "target": "1659392819"}, {"source": "1225222367", "flow": 303, "target": "1659392819"}, {"source": "1801878616", "flow": 159, "target": "1659392819"}, {"source": "1932316429", "flow": 246, "target": "1659392819"}, {"source": "1770563215", "flow": 272, "target": "1659392819"}, {"source": "1194796391", "flow": 69, "target": "1659392819"}, {"source": "1033199401", "flow": 477, "target": "1659392819"}, {"source": "1962418038", "flow": 440, "target": "1659392819"}, {"source": "1609917129", "flow": 250, "target": "1659392819"}, {"source": "1295708576", "flow": 206, "target": "1659392819"}, {"source": "1235299975", "flow": 278, "target": "1659392819"}, {"source": "1073610754", "flow": 20, "target": "1659473916"}, {"source": "1073610754", "flow": 12, "target": "1669564662"}, {"source": "1073610754", "flow": 228, "target": "1669567319"}, {"source": "1326149907", "flow": 56, "target": "1669567319"}, {"source": "1902903651", "flow": 25, "target": "1669567897"}, {"source": "1316921166", "flow": 25, "target": "1669567897"}, {"source": "1437136827", "flow": 32, "target": "1669567897"}, {"source": "1225089097", "flow": 39, "target": "1669567897"}, {"source": "1689617433", "flow": 28, "target": "1669567897"}, {"source": "1508804337", "flow": 86, "target": "1669567897"}, {"source": "1972658060", "flow": 61, "target": "1669567897"}, {"source": "1306993282", "flow": 29, "target": "1669567897"}, {"source": "1427079946", "flow": 132, "target": "1669567897"}, {"source": "1235116518", "flow": 127, "target": "1669567897"}, {"source": "1306159181", "flow": 251, "target": "1669567897"}, {"source": "1326046673", "flow": 56, "target": "1669567897"}, {"source": "1578677274", "flow": 113, "target": "1669567897"}, {"source": "1497849491", "flow": 93, "target": "1669567897"}, {"source": "1245215649", "flow": 25, "target": "1669567897"}, {"source": "1063673622", "flow": 16, "target": "1669567897"}, {"source": "1730113440", "flow": 51, "target": "1669567897"}, {"source": "1184663494", "flow": 26, "target": "1669567897"}, {"source": "1013991850", "flow": 16, "target": "1669567897"}, {"source": "1851478747", "flow": 35, "target": "1669567897"}, {"source": "1184612921", "flow": 355, "target": "1669567897"}, {"source": "1740279660", "flow": 69, "target": "1669567897"}, {"source": "1134346323", "flow": 107, "target": "1669567897"}, {"source": "1972506186", "flow": 31, "target": "1669567897"}, {"source": "1740353002", "flow": 43, "target": "1669567897"}, {"source": "1942284658", "flow": 37, "target": "1669567897"}, {"source": "1053337717", "flow": 61, "target": "1669567897"}, {"source": "1336147685", "flow": 63, "target": "1669567897"}, {"source": "1083606248", "flow": 95, "target": "1669567897"}, {"source": "1447234141", "flow": 35, "target": "1669567897"}, {"source": "1265631675", "flow": 27, "target": "1669567897"}, {"source": "1740377845", "flow": 28, "target": "1669567897"}, {"source": "1336188457", "flow": 23, "target": "1669567897"}, {"source": "1972549533", "flow": 23, "target": "1669567897"}, {"source": "1801894142", "flow": 46, "target": "1669567897"}, {"source": "1750410452", "flow": 29, "target": "1669567897"}, {"source": "1639113509", "flow": 25, "target": "1669567897"}, {"source": "1245313741", "flow": 73, "target": "1669567897"}, {"source": "1447242565", "flow": 80, "target": "1669567897"}, {"source": "1366429151", "flow": 20, "target": "1669567897"}, {"source": "1396721106", "flow": 20, "target": "1669567897"}, {"source": "1932128782", "flow": 30, "target": "1669567897"}, {"source": "1376756742", "flow": 19, "target": "1669567897"}, {"source": "1568460640", "flow": 72, "target": "1669567897"}, {"source": "1265464499", "flow": 348, "target": "1669567897"}, {"source": "1871548818", "flow": 40, "target": "1669567897"}, {"source": "1396707923", "flow": 22, "target": "1669567897"}, {"source": "1417091257", "flow": 33, "target": "1669567897"}, {"source": "1508805862", "flow": 18, "target": "1669567897"}, {"source": "1487638185", "flow": 32, "target": "1669567897"}, {"source": "1407830102", "flow": 62, "target": "1669567897"}, {"source": "1912984758", "flow": 49, "target": "1669567897"}, {"source": "1871696096", "flow": 24, "target": "1669567897"}, {"source": "1073610754", "flow": 230, "target": "1669567897"}, {"source": "1396909255", "flow": 36, "target": "1669567897"}, {"source": "1821060526", "flow": 12, "target": "1669567897"}, {"source": "1396729091", "flow": 34, "target": "1669567897"}, {"source": "1073610754", "flow": 23, "target": "1679553994"}, {"source": "1073610754", "flow": 91, "target": "1679632137"}, {"source": "1326149907", "flow": 28, "target": "1679632137"}, {"source": "1073610754", "flow": 32, "target": "1679664395"}, {"source": "1073610754", "flow": 603, "target": "1689624900"}, {"source": "1073610754", "flow": 27, "target": "1689645004"}, {"source": "1770563215", "flow": 36, "target": "1689653487"}, {"source": "1962418038", "flow": 40, "target": "1689653487"}, {"source": "1235299975", "flow": 22, "target": "1689653487"}, {"source": "1033199401", "flow": 32, "target": "1689653487"}, {"source": "1225222367", "flow": 26, "target": "1689653487"}, {"source": "1962418038", "flow": 181, "target": "1689696148"}, {"source": "1326149907", "flow": 46, "target": "1689696148"}, {"source": "1235299975", "flow": 166, "target": "1689696148"}, {"source": "1932316429", "flow": 102, "target": "1689696148"}, {"source": "1801878616", "flow": 109, "target": "1689696148"}, {"source": "1225222367", "flow": 98, "target": "1689696148"}, {"source": "1699970566", "flow": 302, "target": "1689696148"}, {"source": "1194796391", "flow": 512, "target": "1689696148"}, {"source": "1770563215", "flow": 56, "target": "1689696148"}, {"source": "1689645707", "flow": 503, "target": "1689696148"}, {"source": "1295708576", "flow": 151, "target": "1689696148"}, {"source": "1033199401", "flow": 83, "target": "1689696148"}, {"source": "1609917129", "flow": 148, "target": "1689696148"}, {"source": "1982712162", "flow": 87, "target": "1689696148"}, {"source": "1487840872", "flow": 136, "target": "1689696148"}, {"source": "1073610754", "flow": 16, "target": "1689736282"}, {"source": "1073610754", "flow": 197, "target": "1689761942"}, {"source": "1326149907", "flow": 144, "target": "1689761942"}, {"source": "1073610754", "flow": 16, "target": "1699714717"}, {"source": "1326149907", "flow": 36, "target": "1699754812"}, {"source": "1073610754", "flow": 244, "target": "1699754812"}, {"source": "1073610754", "flow": 64, "target": "1699756445"}, {"source": "1073610754", "flow": 36, "target": "1699779017"}, {"source": "1073610754", "flow": 98, "target": "1699819003"}, {"source": "1841239647", "flow": 22, "target": "1699874248"}, {"source": "1770637266", "flow": 45, "target": "1700831724"}, {"source": "1326149907", "flow": 270, "target": "1700831724"}, {"source": "1073610754", "flow": 108, "target": "1700831724"}, {"source": "1073610754", "flow": 14, "target": "1700870672"}, {"source": "1326149907", "flow": 87, "target": "1700977105"}, {"source": "1073610754", "flow": 18, "target": "1700977105"}, {"source": "1073610754", "flow": 21, "target": "1700983236"}, {"source": "1295733772", "flow": 97, "target": "1700983236"}, {"source": "1639500739", "flow": 38, "target": "1700983236"}, {"source": "1073610754", "flow": 256, "target": "1710901178"}, {"source": "1477542942", "flow": 68, "target": "1710906565"}, {"source": "1073610754", "flow": 263, "target": "1710909585"}, {"source": "1326149907", "flow": 19, "target": "1710909585"}, {"source": "1326149907", "flow": 13, "target": "1710941356"}, {"source": "1073610754", "flow": 13, "target": "1710941356"}, {"source": "1417091257", "flow": 397, "target": "1720032345"}, {"source": "1538109103", "flow": 38, "target": "1720032345"}, {"source": "1316921166", "flow": 193, "target": "1720032345"}, {"source": "1790762219", "flow": 19, "target": "1720032345"}, {"source": "1952358541", "flow": 472, "target": "1720032345"}, {"source": "1225089097", "flow": 16, "target": "1720032345"}, {"source": "1538105242", "flow": 1316, "target": "1720032345"}, {"source": "1396729091", "flow": 149, "target": "1720032345"}, {"source": "1487638185", "flow": 45, "target": "1720032345"}, {"source": "1770563215", "flow": 19, "target": "1720032345"}, {"source": "1609917129", "flow": 103, "target": "1720032345"}, {"source": "1568493062", "flow": 173, "target": "1720032345"}, {"source": "1396909255", "flow": 23, "target": "1720032345"}, {"source": "1538104526", "flow": 27, "target": "1720032345"}, {"source": "1396932463", "flow": 20, "target": "1720032345"}, {"source": "1902099443", "flow": 49, "target": "1720032345"}, {"source": "1912984758", "flow": 178, "target": "1720032345"}, {"source": "1477537173", "flow": 109, "target": "1720032345"}, {"source": "1396707923", "flow": 210, "target": "1720032345"}, {"source": "1609014489", "flow": 27, "target": "1720032345"}, {"source": "1407833825", "flow": 119, "target": "1720032345"}, {"source": "1265464499", "flow": 58, "target": "1720032345"}, {"source": "1255318051", "flow": 208, "target": "1720032345"}, {"source": "1245325422", "flow": 311, "target": "1720032345"}, {"source": "1043218654", "flow": 106, "target": "1720032345"}, {"source": "1821060526", "flow": 99, "target": "1720032345"}, {"source": "1366429151", "flow": 252, "target": "1720032345"}, {"source": "1699760587", "flow": 69, "target": "1720032345"}, {"source": "1760672026", "flow": 17, "target": "1720032345"}, {"source": "1629249891", "flow": 19, "target": "1720032345"}, {"source": "1013991850", "flow": 201, "target": "1720032345"}, {"source": "1932183779", "flow": 41, "target": "1720032345"}, {"source": "1811971534", "flow": 56, "target": "1720032345"}, {"source": "1790730448", "flow": 71, "target": "1720032345"}, {"source": "1265556898", "flow": 28, "target": "1720032345"}, {"source": "1356389597", "flow": 37, "target": "1720032345"}, {"source": "1043219165", "flow": 138, "target": "1720032345"}, {"source": "1346239498", "flow": 45, "target": "1720032345"}, {"source": "1699970566", "flow": 23, "target": "1720032345"}, {"source": "1639113509", "flow": 148, "target": "1720032345"}, {"source": "1043232879", "flow": 31, "target": "1720032345"}, {"source": "1750410452", "flow": 84, "target": "1720032345"}, {"source": "1801885819", "flow": 127, "target": "1720032345"}, {"source": "1750394060", "flow": 203, "target": "1720032345"}, {"source": "1003862566", "flow": 25, "target": "1720032345"}, {"source": "1972549533", "flow": 166, "target": "1720032345"}, {"source": "1336189521", "flow": 31, "target": "1720032345"}, {"source": "1699752493", "flow": 170, "target": "1720032345"}, {"source": "1447234141", "flow": 296, "target": "1720032345"}, {"source": "1588777445", "flow": 52, "target": "1720032345"}, {"source": "1639226582", "flow": 42, "target": "1720032345"}, {"source": "1265631675", "flow": 31, "target": "1720032345"}, {"source": "1033199401", "flow": 55, "target": "1720032345"}, {"source": "1083606248", "flow": 81, "target": "1720032345"}, {"source": "1942284658", "flow": 103, "target": "1720032345"}, {"source": "1972538486", "flow": 61, "target": "1720032345"}, {"source": "1114956687", "flow": 58, "target": "1720032345"}, {"source": "1477542942", "flow": 113, "target": "1720032345"}, {"source": "1972506186", "flow": 109, "target": "1720032345"}, {"source": "1770578882", "flow": 195, "target": "1720032345"}, {"source": "1134103831", "flow": 66, "target": "1720032345"}, {"source": "1134321235", "flow": 39, "target": "1720032345"}, {"source": "1285611715", "flow": 99, "target": "1720032345"}, {"source": "1740279660", "flow": 31, "target": "1720032345"}, {"source": "1144283896", "flow": 155, "target": "1720032345"}, {"source": "1649219742", "flow": 35, "target": "1720032345"}, {"source": "1962499582", "flow": 130, "target": "1720032345"}, {"source": "1730113440", "flow": 46, "target": "1720032345"}, {"source": "1649262338", "flow": 21, "target": "1720032345"}, {"source": "1972690006", "flow": 44, "target": "1720032345"}, {"source": "1326149907", "flow": 56, "target": "1720032345"}, {"source": "1689645707", "flow": 18, "target": "1720032345"}, {"source": "1245215649", "flow": 350, "target": "1720032345"}, {"source": "1295708576", "flow": 26, "target": "1720032345"}, {"source": "1073557831", "flow": 314, "target": "1720032345"}, {"source": "1710181201", "flow": 22, "target": "1720032345"}, {"source": "1497741714", "flow": 104, "target": "1720032345"}, {"source": "1023094851", "flow": 57, "target": "1720032345"}, {"source": "1295872216", "flow": 21, "target": "1720032345"}, {"source": "1669563920", "flow": 41, "target": "1720032345"}, {"source": "1578677274", "flow": 202, "target": "1720032345"}, {"source": "1235299975", "flow": 71, "target": "1720032345"}, {"source": "1912982513", "flow": 50, "target": "1720032345"}, {"source": "1720286487", "flow": 88, "target": "1720032345"}, {"source": "1326023789", "flow": 120, "target": "1720032345"}, {"source": "1942254883", "flow": 19, "target": "1720032345"}, {"source": "1508804337", "flow": 32, "target": "1720032345"}, {"source": "1306993282", "flow": 179, "target": "1720032345"}, {"source": "1316977861", "flow": 245, "target": "1720032345"}, {"source": "1689616294", "flow": 442, "target": "1720032345"}, {"source": "1437136827", "flow": 223, "target": "1720032345"}, {"source": "1689617433", "flow": 262, "target": "1720032345"}, {"source": "1225222367", "flow": 22, "target": "1720032345"}, {"source": "1396721106", "flow": 229, "target": "1720032345"}, {"source": "1871548818", "flow": 94, "target": "1720032345"}, {"source": "1487840872", "flow": 47, "target": "1720032345"}, {"source": "1073610754", "flow": 449, "target": "1720032345"}, {"source": "1851478747", "flow": 77, "target": "1720032345"}, {"source": "1376756742", "flow": 67, "target": "1720032345"}, {"source": "1073610754", "flow": 479, "target": "1730123175"}, {"source": "1073610754", "flow": 43, "target": "1730134123"}, {"source": "1194796391", "flow": 138, "target": "1730145392"}, {"source": "1235299975", "flow": 36, "target": "1730145392"}, {"source": "1225222367", "flow": 44, "target": "1730145392"}, {"source": "1699970566", "flow": 93, "target": "1730145392"}, {"source": "1033199401", "flow": 51, "target": "1730145392"}, {"source": "1609917129", "flow": 30, "target": "1730145392"}, {"source": "1487840872", "flow": 15, "target": "1730145392"}, {"source": "1295708576", "flow": 30, "target": "1730145392"}, {"source": "1962418038", "flow": 54, "target": "1730145392"}, {"source": "1689645707", "flow": 182, "target": "1730145392"}, {"source": "1619916970", "flow": 90, "target": "1730264128"}, {"source": "1972543064", "flow": 288, "target": "1730264128"}, {"source": "1073610754", "flow": 137, "target": "1730264128"}, {"source": "1902903651", "flow": 22, "target": "1730264128"}, {"source": "1073610754", "flow": 17, "target": "1730566027"}, {"source": "1194796391", "flow": 25, "target": "1740268846"}, {"source": "1689645707", "flow": 19, "target": "1740268846"}, {"source": "1073610754", "flow": 76, "target": "1750353041"}, {"source": "1326149907", "flow": 54, "target": "1760402424"}, {"source": "1073610754", "flow": 41, "target": "1760402424"}, {"source": "1689645707", "flow": 31, "target": "1760436216"}, {"source": "1194796391", "flow": 41, "target": "1760436216"}, {"source": "1982712162", "flow": 62, "target": "1760436216"}, {"source": "1770563215", "flow": 154, "target": "1760436216"}, {"source": "1225222367", "flow": 353, "target": "1760436216"}, {"source": "1235299975", "flow": 77, "target": "1760436216"}, {"source": "1801878616", "flow": 39, "target": "1760436216"}, {"source": "1033199401", "flow": 220, "target": "1760436216"}, {"source": "1932316429", "flow": 203, "target": "1760436216"}, {"source": "1609917129", "flow": 246, "target": "1760436216"}, {"source": "1699970566", "flow": 65, "target": "1760436216"}, {"source": "1295708576", "flow": 179, "target": "1760436216"}, {"source": "1487840872", "flow": 106, "target": "1760436216"}, {"source": "1962418038", "flow": 257, "target": "1760436216"}, {"source": "1073610754", "flow": 78, "target": "1760498588"}, {"source": "1841239647", "flow": 243, "target": "1760599286"}, {"source": "1477542942", "flow": 156, "target": "1770581894"}, {"source": "1326149907", "flow": 637, "target": "1770581894"}, {"source": "1073610754", "flow": 46, "target": "1770581894"}, {"source": "1851507073", "flow": 45, "target": "1770581894"}, {"source": "1184663494", "flow": 25, "target": "1770581894"}, {"source": "1073610754", "flow": 21, "target": "1770678617"}, {"source": "1194796391", "flow": 70, "target": "1770679201"}, {"source": "1932316429", "flow": 21, "target": "1770679201"}, {"source": "1487840872", "flow": 47, "target": "1770679201"}, {"source": "1609917129", "flow": 19, "target": "1770679201"}, {"source": "1841498821", "flow": 27, "target": "1770679201"}, {"source": "1770563215", "flow": 38, "target": "1770679201"}, {"source": "1982712162", "flow": 20, "target": "1770679201"}, {"source": "1699970566", "flow": 43, "target": "1770679201"}, {"source": "1689645707", "flow": 74, "target": "1770679201"}, {"source": "1982712162", "flow": 36, "target": "1780625442"}, {"source": "1770563215", "flow": 95, "target": "1780625442"}, {"source": "1033199401", "flow": 32, "target": "1780625442"}, {"source": "1194796391", "flow": 122, "target": "1780625442"}, {"source": "1295708576", "flow": 58, "target": "1780625442"}, {"source": "1225222367", "flow": 42, "target": "1780625442"}, {"source": "1801878616", "flow": 37, "target": "1780625442"}, {"source": "1235299975", "flow": 54, "target": "1780625442"}, {"source": "1689645707", "flow": 141, "target": "1780625442"}, {"source": "1699970566", "flow": 113, "target": "1780625442"}, {"source": "1609917129", "flow": 63, "target": "1780625442"}, {"source": "1487840872", "flow": 22, "target": "1780625442"}, {"source": "1962418038", "flow": 52, "target": "1780625442"}, {"source": "1932316429", "flow": 54, "target": "1780625442"}, {"source": "1073610754", "flow": 23, "target": "1780630608"}, {"source": "1326149907", "flow": 18, "target": "1780648352"}, {"source": "1326149907", "flow": 21, "target": "1780684431"}, {"source": "1073610754", "flow": 117, "target": "1780684431"}, {"source": "1326149907", "flow": 68, "target": "1780688333"}, {"source": "1740353002", "flow": 18, "target": "1780688333"}, {"source": "1356389597", "flow": 443, "target": "1780778969"}, {"source": "1487680237", "flow": 21, "target": "1780778969"}, {"source": "1558386771", "flow": 37, "target": "1780778969"}, {"source": "1487638185", "flow": 81, "target": "1780778969"}, {"source": "1568417772", "flow": 447, "target": "1780778969"}, {"source": "1477542942", "flow": 33, "target": "1780778969"}, {"source": "1902903651", "flow": 20, "target": "1780778969"}, {"source": "1568460640", "flow": 64, "target": "1780778969"}, {"source": "1477537173", "flow": 24, "target": "1780778969"}, {"source": "1912953555", "flow": 220, "target": "1780778969"}, {"source": "1457306565", "flow": 306, "target": "1780778969"}, {"source": "1568493062", "flow": 121, "target": "1780778969"}, {"source": "1447307251", "flow": 32, "target": "1780778969"}, {"source": "1447299698", "flow": 320, "target": "1780778969"}, {"source": "1447242565", "flow": 118, "target": "1780778969"}, {"source": "1447234141", "flow": 60, "target": "1780778969"}, {"source": "1437260296", "flow": 18, "target": "1780778969"}, {"source": "1437136827", "flow": 71, "target": "1780778969"}, {"source": "1801888060", "flow": 182, "target": "1780778969"}, {"source": "1578677274", "flow": 102, "target": "1780778969"}, {"source": "1427079946", "flow": 70, "target": "1780778969"}, {"source": "1427044148", "flow": 68, "target": "1780778969"}, {"source": "1912982513", "flow": 90, "target": "1780778969"}, {"source": "1417997990", "flow": 22, "target": "1780778969"}, {"source": "1417952581", "flow": 34, "target": "1780778969"}, {"source": "1588777445", "flow": 110, "target": "1780778969"}, {"source": "1417946203", "flow": 41, "target": "1780778969"}, {"source": "1891005856", "flow": 49, "target": "1780778969"}, {"source": "1417903378", "flow": 134, "target": "1780778969"}, {"source": "1417091257", "flow": 70, "target": "1780778969"}, {"source": "1407892516", "flow": 19, "target": "1780778969"}, {"source": "1407890593", "flow": 204, "target": "1780778969"}, {"source": "1407833825", "flow": 22, "target": "1780778969"}, {"source": "1801846712", "flow": 22, "target": "1780778969"}, {"source": "1407830102", "flow": 35, "target": "1780778969"}, {"source": "1912984758", "flow": 54, "target": "1780778969"}, {"source": "1396909255", "flow": 1238, "target": "1780778969"}, {"source": "1396729091", "flow": 44, "target": "1780778969"}, {"source": "1396721106", "flow": 37, "target": "1780778969"}, {"source": "1609917129", "flow": 24, "target": "1780778969"}, {"source": "1396707923", "flow": 56, "target": "1780778969"}, {"source": "1386976207", "flow": 21, "target": "1780778969"}, {"source": "1871548818", "flow": 74, "target": "1780778969"}, {"source": "1386683118", "flow": 131, "target": "1780778969"}, {"source": "1619916970", "flow": 83, "target": "1780778969"}, {"source": "1376756742", "flow": 20, "target": "1780778969"}, {"source": "1376607259", "flow": 18, "target": "1780778969"}, {"source": "1932128782", "flow": 821, "target": "1780778969"}, {"source": "1366429151", "flow": 50, "target": "1780778969"}, {"source": "1629249891", "flow": 703, "target": "1780778969"}, {"source": "1356436174", "flow": 15, "target": "1780778969"}, {"source": "1932183779", "flow": 36, "target": "1780778969"}, {"source": "1932190360", "flow": 35, "target": "1780778969"}, {"source": "1346239498", "flow": 30, "target": "1780778969"}, {"source": "1639113509", "flow": 107, "target": "1780778969"}, {"source": "1336189521", "flow": 343, "target": "1780778969"}, {"source": "1336188457", "flow": 331, "target": "1780778969"}, {"source": "1639226582", "flow": 48, "target": "1780778969"}, {"source": "1336147685", "flow": 34, "target": "1780778969"}, {"source": "1932217171", "flow": 19, "target": "1780778969"}, {"source": "1649219742", "flow": 741, "target": "1780778969"}, {"source": "1326149907", "flow": 142, "target": "1780778969"}, {"source": "1649262338", "flow": 722, "target": "1780778969"}, {"source": "1851688865", "flow": 31, "target": "1780778969"}, {"source": "1669463568", "flow": 92, "target": "1780778969"}, {"source": "1023094851", "flow": 243, "target": "1780778969"}, {"source": "1851549240", "flow": 336, "target": "1780778969"}, {"source": "1326093345", "flow": 620, "target": "1780778969"}, {"source": "1326046673", "flow": 55, "target": "1780778969"}, {"source": "1326023789", "flow": 47, "target": "1780778969"}, {"source": "1851507073", "flow": 95, "target": "1780778969"}, {"source": "1316977861", "flow": 33, "target": "1780778969"}, {"source": "1689616294", "flow": 26, "target": "1780778969"}, {"source": "1316921166", "flow": 39, "target": "1780778969"}, {"source": "1689617433", "flow": 56, "target": "1780778969"}, {"source": "1306993282", "flow": 50, "target": "1780778969"}, {"source": "1306822234", "flow": 99, "target": "1780778969"}, {"source": "1306183702", "flow": 392, "target": "1780778969"}, {"source": "1942254883", "flow": 674, "target": "1780778969"}, {"source": "1295872216", "flow": 24, "target": "1780778969"}, {"source": "1295708576", "flow": 15, "target": "1780778969"}, {"source": "1285611715", "flow": 29, "target": "1780778969"}, {"source": "1275691073", "flow": 30, "target": "1780778969"}, {"source": "1275515223", "flow": 76, "target": "1780778969"}, {"source": "1265631675", "flow": 43, "target": "1780778969"}, {"source": "1942284658", "flow": 56, "target": "1780778969"}, {"source": "1013991850", "flow": 68, "target": "1780778969"}, {"source": "1699752493", "flow": 28, "target": "1780778969"}, {"source": "1265556898", "flow": 29, "target": "1780778969"}, {"source": "1699760587", "flow": 67, "target": "1780778969"}, {"source": "1699773150", "flow": 214, "target": "1780778969"}, {"source": "1851478747", "flow": 65, "target": "1780778969"}, {"source": "1265419725", "flow": 21, "target": "1780778969"}, {"source": "1942404728", "flow": 29, "target": "1780778969"}, {"source": "1255370755", "flow": 73, "target": "1780778969"}, {"source": "1952358541", "flow": 28, "target": "1780778969"}, {"source": "1255318051", "flow": 48, "target": "1780778969"}, {"source": "1255301800", "flow": 340, "target": "1780778969"}, {"source": "1245325422", "flow": 40, "target": "1780778969"}, {"source": "1952392797", "flow": 78, "target": "1780778969"}, {"source": "1245313741", "flow": 46, "target": "1780778969"}, {"source": "1952473431", "flow": 62, "target": "1780778969"}, {"source": "1245215649", "flow": 35, "target": "1780778969"}, {"source": "1235299975", "flow": 44, "target": "1780778969"}, {"source": "1003897380", "flow": 32, "target": "1780778969"}, {"source": "1710181201", "flow": 57, "target": "1780778969"}, {"source": "1235116518", "flow": 53, "target": "1780778969"}, {"source": "1851330906", "flow": 143, "target": "1780778969"}, {"source": "1225089097", "flow": 149, "target": "1780778969"}, {"source": "1215966726", "flow": 54, "target": "1780778969"}, {"source": "1720286487", "flow": 61, "target": "1780778969"}, {"source": "1730113440", "flow": 57, "target": "1780778969"}, {"source": "1194724864", "flow": 140, "target": "1780778969"}, {"source": "1184663494", "flow": 137, "target": "1780778969"}, {"source": "1184619124", "flow": 24, "target": "1780778969"}, {"source": "1184612921", "flow": 118, "target": "1780778969"}, {"source": "1174584403", "flow": 159, "target": "1780778969"}, {"source": "1962499582", "flow": 31, "target": "1780778969"}, {"source": "1144283896", "flow": 63, "target": "1780778969"}, {"source": "1740279660", "flow": 93, "target": "1780778969"}, {"source": "1144205519", "flow": 807, "target": "1780778969"}, {"source": "1134321235", "flow": 314, "target": "1780778969"}, {"source": "1134163694", "flow": 30, "target": "1780778969"}, {"source": "1134103831", "flow": 17, "target": "1780778969"}, {"source": "1972506186", "flow": 76, "target": "1780778969"}, {"source": "1740353002", "flow": 19, "target": "1780778969"}, {"source": "1114956687", "flow": 57, "target": "1780778969"}, {"source": "1114074085", "flow": 14, "target": "1780778969"}, {"source": "1972538486", "flow": 165, "target": "1780778969"}, {"source": "1104837327", "flow": 18, "target": "1780778969"}, {"source": "1083609481", "flow": 23, "target": "1780778969"}, {"source": "1972540557", "flow": 53, "target": "1780778969"}, {"source": "1083606248", "flow": 72, "target": "1780778969"}, {"source": "1992960298", "flow": 200, "target": "1780778969"}, {"source": "1740377845", "flow": 38, "target": "1780778969"}, {"source": "1972549533", "flow": 50, "target": "1780778969"}, {"source": "1740377852", "flow": 28, "target": "1780778969"}, {"source": "1972581775", "flow": 120, "target": "1780778969"}, {"source": "1801894142", "flow": 72, "target": "1780778969"}, {"source": "1750320966", "flow": 117, "target": "1780778969"}, {"source": "1750394060", "flow": 142, "target": "1780778969"}, {"source": "1750410452", "flow": 36, "target": "1780778969"}, {"source": "1073610754", "flow": 382, "target": "1780778969"}, {"source": "1760672026", "flow": 602, "target": "1780778969"}, {"source": "1821060526", "flow": 65, "target": "1780778969"}, {"source": "1770563215", "flow": 12, "target": "1780778969"}, {"source": "1003862566", "flow": 860, "target": "1780778969"}, {"source": "1770578882", "flow": 609, "target": "1780778969"}, {"source": "1073557831", "flow": 23, "target": "1780778969"}, {"source": "1972658060", "flow": 33, "target": "1780778969"}, {"source": "1073505830", "flow": 209, "target": "1780778969"}, {"source": "1063673622", "flow": 33, "target": "1780778969"}, {"source": "1770637266", "flow": 30, "target": "1780778969"}, {"source": "1972690006", "flow": 22, "target": "1780778969"}, {"source": "1063457315", "flow": 199, "target": "1780778969"}, {"source": "1972718104", "flow": 70, "target": "1780778969"}, {"source": "1053406405", "flow": 29, "target": "1780778969"}, {"source": "1053337717", "flow": 53, "target": "1780778969"}, {"source": "1982668976", "flow": 73, "target": "1780778969"}, {"source": "1043232879", "flow": 962, "target": "1780778969"}, {"source": "1790730448", "flow": 34, "target": "1780778969"}, {"source": "1811971534", "flow": 25, "target": "1780778969"}, {"source": "1043218654", "flow": 94, "target": "1780778969"}, {"source": "1902812571", "flow": 47, "target": "1780778969"}, {"source": "1790762219", "flow": 24, "target": "1780778969"}, {"source": "1538109103", "flow": 491, "target": "1780778969"}, {"source": "1538105242", "flow": 38, "target": "1780778969"}, {"source": "1538103692", "flow": 1351, "target": "1780778969"}, {"source": "1902845118", "flow": 192, "target": "1780778969"}, {"source": "1902099443", "flow": 58, "target": "1780778969"}, {"source": "1518919224", "flow": 70, "target": "1780778969"}, {"source": "1902899677", "flow": 12, "target": "1780778969"}, {"source": "1508839622", "flow": 32, "target": "1780778969"}, {"source": "1508805862", "flow": 48, "target": "1780778969"}, {"source": "1508804337", "flow": 585, "target": "1780778969"}, {"source": "1548281124", "flow": 59, "target": "1780778969"}, {"source": "1497741714", "flow": 27, "target": "1780778969"}, {"source": "1902031610", "flow": 26, "target": "1780778969"}, {"source": "1487840872", "flow": 13, "target": "1780778969"}, {"source": "1073610754", "flow": 90, "target": "1790715381"}, {"source": "1326149907", "flow": 20, "target": "1790715381"}, {"source": "1073610754", "flow": 697, "target": "1790756203"}, {"source": "1326149907", "flow": 132, "target": "1790756203"}, {"source": "1972543064", "flow": 26, "target": "1790788578"}, {"source": "1770563215", "flow": 118, "target": "1790789147"}, {"source": "1033199401", "flow": 65, "target": "1790789147"}, {"source": "1699970566", "flow": 36, "target": "1790789147"}, {"source": "1295708576", "flow": 73, "target": "1790789147"}, {"source": "1609917129", "flow": 109, "target": "1790789147"}, {"source": "1225222367", "flow": 18, "target": "1790789147"}, {"source": "1982712162", "flow": 22, "target": "1790789147"}, {"source": "1962418038", "flow": 70, "target": "1790789147"}, {"source": "1326149907", "flow": 545, "target": "1801830500"}, {"source": "1073610754", "flow": 19, "target": "1801830500"}, {"source": "1073610754", "flow": 134, "target": "1801831102"}, {"source": "1326149907", "flow": 18, "target": "1801990825"}, {"source": "1073610754", "flow": 22, "target": "1811913460"}, {"source": "1073610754", "flow": 20, "target": "1811922347"}, {"source": "1083606248", "flow": 797, "target": "1811927544"}, {"source": "1073610754", "flow": 197, "target": "1811929151"}, {"source": "1073610754", "flow": 36, "target": "1811940976"}, {"source": "1326149907", "flow": 35, "target": "1811987084"}, {"source": "1073610754", "flow": 741, "target": "1811987084"}, {"source": "1265556898", "flow": 32, "target": "1821026816"}, {"source": "1326149907", "flow": 17, "target": "1831107895"}, {"source": "1073610754", "flow": 26, "target": "1831107895"}, {"source": "1689645707", "flow": 19, "target": "1831116441"}, {"source": "1477542942", "flow": 50, "target": "1831173467"}, {"source": "1053406405", "flow": 83, "target": "1831173467"}, {"source": "1073610754", "flow": 154, "target": "1831190958"}, {"source": "1073610754", "flow": 27, "target": "1841298999"}, {"source": "1326149907", "flow": 25, "target": "1841298999"}, {"source": "1073610754", "flow": 59, "target": "1841308020"}, {"source": "1326149907", "flow": 75, "target": "1841308020"}, {"source": "1891741435", "flow": 111, "target": "1841388519"}, {"source": "1306183702", "flow": 40, "target": "1841388519"}, {"source": "1649219742", "flow": 30, "target": "1841388519"}, {"source": "1336189521", "flow": 32, "target": "1841388519"}, {"source": "1326149907", "flow": 16, "target": "1841388519"}, {"source": "1134321235", "flow": 81, "target": "1841388519"}, {"source": "1043232879", "flow": 51, "target": "1841388519"}, {"source": "1073610754", "flow": 199, "target": "1841388519"}, {"source": "1760672026", "flow": 25, "target": "1841388519"}, {"source": "1073610754", "flow": 1067, "target": "1851346720"}, {"source": "1326149907", "flow": 23, "target": "1851346720"}, {"source": "1770637266", "flow": 39, "target": "1851346720"}, {"source": "1073610754", "flow": 32, "target": "1851362263"}, {"source": "1326149907", "flow": 71, "target": "1851362263"}, {"source": "1013991850", "flow": 41, "target": "1851642540"}, {"source": "1255318051", "flow": 17, "target": "1851642540"}, {"source": "1366429151", "flow": 103, "target": "1851642540"}, {"source": "1437136827", "flow": 432, "target": "1851642540"}, {"source": "1245325422", "flow": 118, "target": "1851642540"}, {"source": "1689617433", "flow": 23, "target": "1851642540"}, {"source": "1912984758", "flow": 18, "target": "1851642540"}, {"source": "1720286487", "flow": 59, "target": "1851642540"}, {"source": "1851478747", "flow": 28, "target": "1851642540"}, {"source": "1639113509", "flow": 40, "target": "1851642540"}, {"source": "1396721106", "flow": 22, "target": "1851642540"}, {"source": "1376756742", "flow": 25, "target": "1851642540"}, {"source": "1538105242", "flow": 25, "target": "1851642540"}, {"source": "1316921166", "flow": 35, "target": "1851642540"}, {"source": "1023094851", "flow": 27, "target": "1851642540"}, {"source": "1306993282", "flow": 39, "target": "1851642540"}, {"source": "1396729091", "flow": 58, "target": "1851642540"}, {"source": "1871548818", "flow": 40, "target": "1851642540"}, {"source": "1639226582", "flow": 22, "target": "1851642540"}, {"source": "1326023789", "flow": 277, "target": "1851642540"}, {"source": "1396707923", "flow": 60, "target": "1851642540"}, {"source": "1689645707", "flow": 560, "target": "1861465999"}, {"source": "1932316429", "flow": 99, "target": "1861465999"}, {"source": "1235299975", "flow": 141, "target": "1861465999"}, {"source": "1295708576", "flow": 162, "target": "1861465999"}, {"source": "1033199401", "flow": 154, "target": "1861465999"}, {"source": "1609917129", "flow": 172, "target": "1861465999"}, {"source": "1194796391", "flow": 388, "target": "1861465999"}, {"source": "1699970566", "flow": 441, "target": "1861465999"}, {"source": "1225222367", "flow": 146, "target": "1861465999"}, {"source": "1770563215", "flow": 228, "target": "1861465999"}, {"source": "1982712162", "flow": 105, "target": "1861465999"}, {"source": "1962418038", "flow": 150, "target": "1861465999"}, {"source": "1801878616", "flow": 152, "target": "1861465999"}, {"source": "1184663494", "flow": 33, "target": "1861479545"}, {"source": "1356389597", "flow": 44, "target": "1861479545"}, {"source": "1437136827", "flow": 34, "target": "1861479545"}, {"source": "1629249891", "flow": 33, "target": "1861479545"}, {"source": "1003862566", "flow": 53, "target": "1861479545"}, {"source": "1902845118", "flow": 51, "target": "1861479545"}, {"source": "1760672026", "flow": 73, "target": "1861479545"}, {"source": "1912953555", "flow": 37, "target": "1861479545"}, {"source": "1073505830", "flow": 68, "target": "1861479545"}, {"source": "1326093345", "flow": 31, "target": "1861479545"}, {"source": "1619916970", "flow": 118, "target": "1861479545"}, {"source": "1508839622", "flow": 31, "target": "1861479545"}, {"source": "1386683118", "flow": 51, "target": "1861479545"}, {"source": "1578677274", "flow": 147, "target": "1861479545"}, {"source": "1871548818", "flow": 46, "target": "1861479545"}, {"source": "1770578882", "flow": 87, "target": "1861479545"}, {"source": "1588777445", "flow": 206, "target": "1861479545"}, {"source": "1417946203", "flow": 181, "target": "1861479545"}, {"source": "1134321235", "flow": 52, "target": "1861479545"}, {"source": "1396909255", "flow": 43, "target": "1861479545"}, {"source": "1912984758", "flow": 45, "target": "1861479545"}, {"source": "1689617433", "flow": 37, "target": "1861479545"}, {"source": "1043218654", "flow": 60, "target": "1861479545"}, {"source": "1487680237", "flow": 115, "target": "1861479545"}, {"source": "1851330906", "flow": 63, "target": "1861479545"}, {"source": "1851549240", "flow": 37, "target": "1861479545"}, {"source": "1972506186", "flow": 38, "target": "1861479545"}, {"source": "1326149907", "flow": 51, "target": "1861479545"}, {"source": "1447299698", "flow": 43, "target": "1861479545"}, {"source": "1306822234", "flow": 56, "target": "1861479545"}, {"source": "1306183702", "flow": 73, "target": "1861479545"}, {"source": "1942254883", "flow": 27, "target": "1861479545"}, {"source": "1215966726", "flow": 22, "target": "1861479545"}, {"source": "1437260296", "flow": 69, "target": "1861479545"}, {"source": "1093830176", "flow": 250, "target": "1861479545"}, {"source": "1568493062", "flow": 114, "target": "1861479545"}, {"source": "1083606248", "flow": 335, "target": "1861479545"}, {"source": "1538109103", "flow": 56, "target": "1861479545"}, {"source": "1891741435", "flow": 47, "target": "1861479545"}, {"source": "1245215649", "flow": 27, "target": "1861479545"}, {"source": "1740377845", "flow": 82, "target": "1861479545"}, {"source": "1336188457", "flow": 39, "target": "1861479545"}, {"source": "1194967380", "flow": 99, "target": "1861479545"}, {"source": "1265631675", "flow": 88, "target": "1861479545"}, {"source": "1992960298", "flow": 44, "target": "1861479545"}, {"source": "1508804337", "flow": 42, "target": "1861479545"}, {"source": "1568417772", "flow": 58, "target": "1861479545"}, {"source": "1073610754", "flow": 135, "target": "1861479545"}, {"source": "1336189521", "flow": 43, "target": "1861479545"}, {"source": "1649219742", "flow": 85, "target": "1861479545"}, {"source": "1043232879", "flow": 104, "target": "1861479545"}, {"source": "1306993282", "flow": 28, "target": "1861479545"}, {"source": "1326023789", "flow": 36, "target": "1861479545"}, {"source": "1821060526", "flow": 42, "target": "1861479545"}, {"source": "1770637266", "flow": 30, "target": "1861494072"}, {"source": "1073610754", "flow": 63, "target": "1861494072"}, {"source": "1073610754", "flow": 16, "target": "1861554438"}, {"source": "1073610754", "flow": 106, "target": "1861690364"}, {"source": "1316977861", "flow": 920, "target": "1871530832"}, {"source": "1568417772", "flow": 19, "target": "1871530832"}, {"source": "1720286487", "flow": 168, "target": "1871530832"}, {"source": "1841498821", "flow": 28, "target": "1871530832"}, {"source": "1326023789", "flow": 189, "target": "1871530832"}, {"source": "1326093345", "flow": 44, "target": "1871530832"}, {"source": "1992960298", "flow": 33, "target": "1871530832"}, {"source": "1649219742", "flow": 40, "target": "1871530832"}, {"source": "1447234141", "flow": 258, "target": "1871530832"}, {"source": "1790730448", "flow": 207, "target": "1871530832"}, {"source": "1144283896", "flow": 161, "target": "1871530832"}, {"source": "1811971534", "flow": 129, "target": "1871530832"}, {"source": "1023094851", "flow": 84, "target": "1871530832"}, {"source": "1801878616", "flow": 70, "target": "1871530832"}, {"source": "1740279660", "flow": 17, "target": "1871530832"}, {"source": "1134321235", "flow": 37, "target": "1871530832"}, {"source": "1134103831", "flow": 92, "target": "1871530832"}, {"source": "1447242565", "flow": 43, "target": "1871530832"}, {"source": "1972506186", "flow": 138, "target": "1871530832"}, {"source": "1326149907", "flow": 21, "target": "1871530832"}, {"source": "1447299698", "flow": 37, "target": "1871530832"}, {"source": "1912953555", "flow": 44, "target": "1871530832"}, {"source": "1003090424", "flow": 45, "target": "1871530832"}, {"source": "1497741714", "flow": 117, "target": "1871530832"}, {"source": "1639226582", "flow": 61, "target": "1871530832"}, {"source": "1538109103", "flow": 33, "target": "1871530832"}, {"source": "1336188457", "flow": 36, "target": "1871530832"}, {"source": "1538105242", "flow": 116, "target": "1871530832"}, {"source": "1972549533", "flow": 50, "target": "1871530832"}, {"source": "1457306565", "flow": 34, "target": "1871530832"}, {"source": "1073610754", "flow": 305, "target": "1871530832"}, {"source": "1003862566", "flow": 91, "target": "1871530832"}, {"source": "1336189521", "flow": 30, "target": "1871530832"}, {"source": "1558345256", "flow": 30, "target": "1871530832"}, {"source": "1639113509", "flow": 222, "target": "1871530832"}, {"source": "1487840872", "flow": 84, "target": "1871530832"}, {"source": "1750410452", "flow": 187, "target": "1871530832"}, {"source": "1821060526", "flow": 257, "target": "1871530832"}, {"source": "1902099443", "flow": 22, "target": "1871530832"}, {"source": "1356389597", "flow": 40, "target": "1871530832"}, {"source": "1932183779", "flow": 87, "target": "1871530832"}, {"source": "1629249891", "flow": 51, "target": "1871530832"}, {"source": "1760672026", "flow": 28, "target": "1871530832"}, {"source": "1366429151", "flow": 307, "target": "1871530832"}, {"source": "1932128782", "flow": 28, "target": "1871530832"}, {"source": "1376756742", "flow": 188, "target": "1871530832"}, {"source": "1386683118", "flow": 38, "target": "1871530832"}, {"source": "1871548818", "flow": 148, "target": "1871530832"}, {"source": "1609917129", "flow": 162, "target": "1871530832"}, {"source": "1396707923", "flow": 479, "target": "1871530832"}, {"source": "1396721106", "flow": 187, "target": "1871530832"}, {"source": "1396729091", "flow": 223, "target": "1871530832"}, {"source": "1902845118", "flow": 35, "target": "1871530832"}, {"source": "1770563215", "flow": 79, "target": "1871530832"}, {"source": "1912984758", "flow": 161, "target": "1871530832"}, {"source": "1396909255", "flow": 43, "target": "1871530832"}, {"source": "1609014489", "flow": 32, "target": "1871530832"}, {"source": "1407830102", "flow": 21, "target": "1871530832"}, {"source": "1407833825", "flow": 122, "target": "1871530832"}, {"source": "1417091257", "flow": 224, "target": "1871530832"}, {"source": "1417903378", "flow": 19, "target": "1871530832"}, {"source": "1477542942", "flow": 154, "target": "1871530832"}, {"source": "1912982513", "flow": 39, "target": "1871530832"}, {"source": "1578677274", "flow": 34, "target": "1871530832"}, {"source": "1073557831", "flow": 30, "target": "1871530832"}, {"source": "1033199401", "flow": 58, "target": "1871530832"}, {"source": "1437136827", "flow": 316, "target": "1871530832"}, {"source": "1477537173", "flow": 119, "target": "1871530832"}, {"source": "1255318051", "flow": 208, "target": "1871530832"}, {"source": "1255301800", "flow": 20, "target": "1871530832"}, {"source": "1508804337", "flow": 45, "target": "1871530832"}, {"source": "1245325422", "flow": 110, "target": "1871530832"}, {"source": "1851478747", "flow": 164, "target": "1871530832"}, {"source": "1487638185", "flow": 49, "target": "1871530832"}, {"source": "1952473431", "flow": 36, "target": "1871530832"}, {"source": "1699752493", "flow": 164, "target": "1871530832"}, {"source": "1942284658", "flow": 120, "target": "1871530832"}, {"source": "1689645707", "flow": 16, "target": "1871530832"}, {"source": "1699970566", "flow": 33, "target": "1871530832"}, {"source": "1245215649", "flow": 638, "target": "1871530832"}, {"source": "1285611715", "flow": 108, "target": "1871530832"}, {"source": "1235299975", "flow": 170, "target": "1871530832"}, {"source": "1295708576", "flow": 42, "target": "1871530832"}, {"source": "1942254883", "flow": 29, "target": "1871530832"}, {"source": "1306183702", "flow": 48, "target": "1871530832"}, {"source": "1225222367", "flow": 42, "target": "1871530832"}, {"source": "1851330906", "flow": 20, "target": "1871530832"}, {"source": "1689617433", "flow": 324, "target": "1871530832"}, {"source": "1043232879", "flow": 47, "target": "1871530832"}, {"source": "1306993282", "flow": 704, "target": "1871530832"}, {"source": "1932316429", "flow": 24, "target": "1871530832"}, {"source": "1316921166", "flow": 265, "target": "1871530832"}, {"source": "1013991850", "flow": 198, "target": "1871530832"}, {"source": "1689616294", "flow": 83, "target": "1871530832"}, {"source": "1073610754", "flow": 78, "target": "1871534297"}, {"source": "1245325422", "flow": 123, "target": "1871547703"}, {"source": "1720286487", "flow": 99, "target": "1871547703"}, {"source": "1821060526", "flow": 140, "target": "1871547703"}, {"source": "1134103831", "flow": 143, "target": "1871547703"}, {"source": "1316921166", "flow": 217, "target": "1871547703"}, {"source": "1326149907", "flow": 22, "target": "1871547703"}, {"source": "1417091257", "flow": 161, "target": "1871547703"}, {"source": "1972506186", "flow": 58, "target": "1871547703"}, {"source": "1396707923", "flow": 167, "target": "1871547703"}, {"source": "1609917129", "flow": 68, "target": "1871547703"}, {"source": "1912982513", "flow": 40, "target": "1871547703"}, {"source": "1871548818", "flow": 61, "target": "1871547703"}, {"source": "1073557831", "flow": 20, "target": "1871547703"}, {"source": "1376756742", "flow": 98, "target": "1871547703"}, {"source": "1366429151", "flow": 96, "target": "1871547703"}, {"source": "1477542942", "flow": 3715, "target": "1871547703"}, {"source": "1033199401", "flow": 21, "target": "1871547703"}, {"source": "1225222367", "flow": 11, "target": "1871547703"}, {"source": "1326023789", "flow": 185, "target": "1871547703"}, {"source": "1437136827", "flow": 152, "target": "1871547703"}, {"source": "1801878616", "flow": 17, "target": "1871547703"}, {"source": "1992840813", "flow": 117, "target": "1871547703"}, {"source": "1255318051", "flow": 117, "target": "1871547703"}, {"source": "1497741714", "flow": 73, "target": "1871547703"}, {"source": "1750410452", "flow": 81, "target": "1871547703"}, {"source": "1477537173", "flow": 62, "target": "1871547703"}, {"source": "1639113509", "flow": 186, "target": "1871547703"}, {"source": "1689617433", "flow": 207, "target": "1871547703"}, {"source": "1316977861", "flow": 171, "target": "1871547703"}, {"source": "1447234141", "flow": 224, "target": "1871547703"}, {"source": "1851478747", "flow": 25, "target": "1871547703"}, {"source": "1942284658", "flow": 62, "target": "1871547703"}, {"source": "1699752493", "flow": 71, "target": "1871547703"}, {"source": "1740279660", "flow": 20, "target": "1871547703"}, {"source": "1487840872", "flow": 49, "target": "1871547703"}, {"source": "1144283896", "flow": 165, "target": "1871547703"}, {"source": "1972549533", "flow": 37, "target": "1871547703"}, {"source": "1245215649", "flow": 54, "target": "1871547703"}, {"source": "1013991850", "flow": 206, "target": "1871547703"}, {"source": "1538105242", "flow": 92, "target": "1871547703"}, {"source": "1306993282", "flow": 294, "target": "1871547703"}, {"source": "1285611715", "flow": 127, "target": "1871547703"}, {"source": "1235299975", "flow": 64, "target": "1871547703"}, {"source": "1790730448", "flow": 128, "target": "1871547703"}, {"source": "1023094851", "flow": 81, "target": "1871547703"}, {"source": "1487638185", "flow": 25, "target": "1871547703"}, {"source": "1811971534", "flow": 70, "target": "1871547703"}, {"source": "1912984758", "flow": 142, "target": "1871547703"}, {"source": "1396729091", "flow": 124, "target": "1871547703"}, {"source": "1841498821", "flow": 19, "target": "1871547703"}, {"source": "1396721106", "flow": 108, "target": "1871547703"}, {"source": "1295708576", "flow": 19, "target": "1871547703"}, {"source": "1073610754", "flow": 50, "target": "1871556621"}, {"source": "1730113440", "flow": 42, "target": "1871596403"}, {"source": "1326149907", "flow": 39, "target": "1871596403"}, {"source": "1073610754", "flow": 20, "target": "1871596403"}, {"source": "1740377845", "flow": 37, "target": "1871596403"}, {"source": "1073610754", "flow": 27, "target": "1881626075"}, {"source": "1134321235", "flow": 44, "target": "1881642809"}, {"source": "1043218654", "flow": 35, "target": "1881642809"}, {"source": "1326149907", "flow": 136, "target": "1881642809"}, {"source": "1073610754", "flow": 514, "target": "1881642809"}, {"source": "1740353002", "flow": 25, "target": "1881642809"}, {"source": "1760672026", "flow": 43, "target": "1881642809"}, {"source": "1336189521", "flow": 30, "target": "1881642809"}, {"source": "1629249891", "flow": 36, "target": "1881642809"}, {"source": "1902903651", "flow": 35, "target": "1881642809"}, {"source": "1043232879", "flow": 29, "target": "1881642809"}, {"source": "1821083973", "flow": 30, "target": "1881642809"}, {"source": "1649219742", "flow": 23, "target": "1881642809"}, {"source": "1306183702", "flow": 24, "target": "1881642809"}, {"source": "1114956687", "flow": 50, "target": "1881642809"}, {"source": "1386683118", "flow": 40, "target": "1881642809"}, {"source": "1487665634", "flow": 39, "target": "1881642809"}, {"source": "1255301800", "flow": 57, "target": "1881642809"}, {"source": "1073610754", "flow": 30, "target": "1881643401"}, {"source": "1326149907", "flow": 97, "target": "1881643401"}, {"source": "1073610754", "flow": 31, "target": "1881647204"}, {"source": "1073610754", "flow": 265, "target": "1881669778"}, {"source": "1073610754", "flow": 19, "target": "1891799227"}, {"source": "1073610754", "flow": 34, "target": "1891801734"}, {"source": "1972543064", "flow": 27, "target": "1891892741"}, {"source": "1740353002", "flow": 27, "target": "1891892741"}, {"source": "1902903651", "flow": 26, "target": "1891892741"}, {"source": "1073610754", "flow": 45, "target": "1891973939"}, {"source": "1770637266", "flow": 22, "target": "1902800535"}, {"source": "1073610754", "flow": 30, "target": "1902800535"}, {"source": "1265556898", "flow": 24, "target": "1902865355"}, {"source": "1073610754", "flow": 498, "target": "1902865389"}, {"source": "1326149907", "flow": 36, "target": "1902865389"}, {"source": "1902903651", "flow": 69, "target": "1902865389"}, {"source": "1740353002", "flow": 52, "target": "1902865389"}, {"source": "1770563215", "flow": 400, "target": "1902878994"}, {"source": "1225222367", "flow": 183, "target": "1902878994"}, {"source": "1033199401", "flow": 318, "target": "1902878994"}, {"source": "1801878616", "flow": 246, "target": "1902878994"}, {"source": "1609917129", "flow": 330, "target": "1902878994"}, {"source": "1699970566", "flow": 510, "target": "1902878994"}, {"source": "1295708576", "flow": 261, "target": "1902878994"}, {"source": "1982712162", "flow": 69, "target": "1902878994"}, {"source": "1487840872", "flow": 155, "target": "1902878994"}, {"source": "1932316429", "flow": 171, "target": "1902878994"}, {"source": "1962418038", "flow": 265, "target": "1902878994"}, {"source": "1235299975", "flow": 251, "target": "1902878994"}, {"source": "1194796391", "flow": 840, "target": "1902878994"}, {"source": "1689645707", "flow": 861, "target": "1902878994"}, {"source": "1932316429", "flow": 90, "target": "1902897937"}, {"source": "1770563215", "flow": 247, "target": "1902897937"}, {"source": "1699970566", "flow": 605, "target": "1902897937"}, {"source": "1194796391", "flow": 434, "target": "1902897937"}, {"source": "1235299975", "flow": 188, "target": "1902897937"}, {"source": "1033199401", "flow": 197, "target": "1902897937"}, {"source": "1295708576", "flow": 116, "target": "1902897937"}, {"source": "1801878616", "flow": 198, "target": "1902897937"}, {"source": "1609917129", "flow": 254, "target": "1902897937"}, {"source": "1487840872", "flow": 60, "target": "1902897937"}, {"source": "1982712162", "flow": 69, "target": "1902897937"}, {"source": "1962418038", "flow": 151, "target": "1902897937"}, {"source": "1689645707", "flow": 885, "target": "1902897937"}, {"source": "1235299975", "flow": 27, "target": "1912094806"}, {"source": "1609917129", "flow": 76, "target": "1912094806"}, {"source": "1225222367", "flow": 93, "target": "1912094806"}, {"source": "1770563215", "flow": 119, "target": "1912094806"}, {"source": "1962418038", "flow": 39, "target": "1912094806"}, {"source": "1801878616", "flow": 41, "target": "1912094806"}, {"source": "1932316429", "flow": 28, "target": "1912094806"}, {"source": "1033199401", "flow": 129, "target": "1912094806"}, {"source": "1982712162", "flow": 34, "target": "1912094806"}, {"source": "1295708576", "flow": 42, "target": "1912094806"}, {"source": "1699970566", "flow": 32, "target": "1912094806"}, {"source": "1073610754", "flow": 47, "target": "1912139643"}, {"source": "1073610754", "flow": 32, "target": "1912341439"}, {"source": "1326149907", "flow": 27, "target": "1912341439"}, {"source": "1073610754", "flow": 78, "target": "1912997024"}, {"source": "1043232879", "flow": 40, "target": "1922052869"}, {"source": "1134321235", "flow": 43, "target": "1922052869"}, {"source": "1184612921", "flow": 161, "target": "1922052869"}, {"source": "1073610754", "flow": 353, "target": "1922052869"}, {"source": "1902903651", "flow": 40, "target": "1922052869"}, {"source": "1336189521", "flow": 40, "target": "1922052869"}, {"source": "1326149907", "flow": 70, "target": "1922052869"}, {"source": "1740353002", "flow": 19, "target": "1922052869"}, {"source": "1306183702", "flow": 39, "target": "1922052869"}, {"source": "1083609481", "flow": 159, "target": "1922052869"}, {"source": "1649219742", "flow": 19, "target": "1922052869"}, {"source": "1265631675", "flow": 25, "target": "1922052869"}, {"source": "1114956687", "flow": 22, "target": "1922052869"}, {"source": "1043218654", "flow": 30, "target": "1922052869"}, {"source": "1245238567", "flow": 22, "target": "1922319037"}, {"source": "1912970021", "flow": 848, "target": "1922319037"}, {"source": "1902013410", "flow": 255, "target": "1922319037"}, {"source": "1881646073", "flow": 123, "target": "1922319037"}, {"source": "1912977430", "flow": 185, "target": "1922319037"}, {"source": "1295733772", "flow": 21, "target": "1922319037"}, {"source": "1013920735", "flow": 39, "target": "1922319037"}, {"source": "1609810274", "flow": 57, "target": "1922319037"}, {"source": "1720171796", "flow": 33, "target": "1922319037"}, {"source": "1386976207", "flow": 2030, "target": "1922319037"}, {"source": "1942255575", "flow": 593, "target": "1922319037"}, {"source": "1407892516", "flow": 38, "target": "1922319037"}, {"source": "1750320966", "flow": 42, "target": "1922319037"}, {"source": "1649219742", "flow": 14, "target": "1922319037"}, {"source": "1730111642", "flow": 47, "target": "1922319037"}, {"source": "1285843896", "flow": 36, "target": "1922319037"}, {"source": "1962403378", "flow": 119, "target": "1922319037"}, {"source": "1558355941", "flow": 644, "target": "1922319037"}, {"source": "1184619124", "flow": 6437, "target": "1922319037"}, {"source": "1023171576", "flow": 37, "target": "1922319037"}, {"source": "1912989989", "flow": 44, "target": "1922319037"}, {"source": "1043205008", "flow": 132, "target": "1922319037"}, {"source": "1538109103", "flow": 21, "target": "1922319037"}, {"source": "1104837327", "flow": 237, "target": "1922319037"}, {"source": "1972504405", "flow": 67, "target": "1922319037"}, {"source": "1619180403", "flow": 34, "target": "1922319037"}, {"source": "1255383766", "flow": 55, "target": "1922319037"}, {"source": "1063457315", "flow": 29, "target": "1922319037"}, {"source": "1114074085", "flow": 345, "target": "1922319037"}, {"source": "1942314075", "flow": 24, "target": "1922319037"}, {"source": "1588656664", "flow": 33, "target": "1922319037"}, {"source": "1851549240", "flow": 28, "target": "1922319037"}, {"source": "1588777445", "flow": 63, "target": "1922319037"}, {"source": "1467545541", "flow": 50, "target": "1922319037"}, {"source": "1851330906", "flow": 45, "target": "1922319037"}, {"source": "1467498279", "flow": 150, "target": "1922319037"}, {"source": "1568576825", "flow": 40, "target": "1922319037"}, {"source": "1891741435", "flow": 1021, "target": "1922319037"}, {"source": "1457465668", "flow": 33, "target": "1922319037"}, {"source": "1356389597", "flow": 24, "target": "1922319037"}, {"source": "1720059397", "flow": 109, "target": "1922319037"}, {"source": "1710966247", "flow": 33, "target": "1922319037"}, {"source": "1760672026", "flow": 15, "target": "1922319037"}, {"source": "1629249891", "flow": 20, "target": "1922319037"}, {"source": "1598718330", "flow": 45, "target": "1922319037"}, {"source": "1306847009", "flow": 211, "target": "1922319037"}, {"source": "1073610754", "flow": 29, "target": "1922319037"}, {"source": "1649271206", "flow": 731, "target": "1922319037"}, {"source": "1265402879", "flow": 96, "target": "1922319037"}, {"source": "1992960298", "flow": 24, "target": "1922319037"}, {"source": "1225222367", "flow": 21, "target": "1932164795"}, {"source": "1962418038", "flow": 23, "target": "1932164795"}, {"source": "1770563215", "flow": 13, "target": "1932164795"}, {"source": "1033199401", "flow": 30, "target": "1932164795"}, {"source": "1609917129", "flow": 19, "target": "1932164795"}, {"source": "1043218654", "flow": 38, "target": "1932170750"}, {"source": "1326149907", "flow": 47, "target": "1932170750"}, {"source": "1740377845", "flow": 20, "target": "1932170750"}, {"source": "1114956687", "flow": 50, "target": "1932170750"}, {"source": "1073610754", "flow": 181, "target": "1932170750"}, {"source": "1194796391", "flow": 31, "target": "1942267760"}, {"source": "1073610754", "flow": 128, "target": "1942294814"}, {"source": "1326149907", "flow": 15, "target": "1942294814"}, {"source": "1326149907", "flow": 29, "target": "1942391230"}, {"source": "1326149907", "flow": 22, "target": "1952326977"}, {"source": "1073610754", "flow": 215, "target": "1952326977"}, {"source": "1326149907", "flow": 50, "target": "1952340994"}, {"source": "1073610754", "flow": 622, "target": "1952340994"}, {"source": "1073610754", "flow": 76, "target": "1962403865"}, {"source": "1073610754", "flow": 37, "target": "1962435792"}, {"source": "1326149907", "flow": 32, "target": "1962461681"}, {"source": "1073610754", "flow": 111, "target": "1962461681"}, {"source": "1073610754", "flow": 131, "target": "1962572396"}, {"source": "1326149907", "flow": 68, "target": "1972527265"}, {"source": "1073610754", "flow": 203, "target": "1972527265"}, {"source": "1326149907", "flow": 38, "target": "1972557064"}, {"source": "1073610754", "flow": 33, "target": "1972557064"}, {"source": "1073610754", "flow": 86, "target": "1972585347"}, {"source": "1326149907", "flow": 23, "target": "1972606465"}, {"source": "1073610754", "flow": 204, "target": "1972606465"}, {"source": "1538356571", "flow": 1152, "target": "1982650024"}, {"source": "1538182779", "flow": 33, "target": "1982650024"}, {"source": "1538172077", "flow": 232, "target": "1982650024"}, {"source": "1902099443", "flow": 310, "target": "1982650024"}, {"source": "1902107105", "flow": 71, "target": "1982650024"}, {"source": "1538163126", "flow": 415, "target": "1982650024"}, {"source": "1538109103", "flow": 77, "target": "1982650024"}, {"source": "1902812571", "flow": 1912, "target": "1982650024"}, {"source": "1538105242", "flow": 181, "target": "1982650024"}, {"source": "1538104526", "flow": 1252, "target": "1982650024"}, {"source": "1538103692", "flow": 184, "target": "1982650024"}, {"source": "1538101068", "flow": 24, "target": "1982650024"}, {"source": "1528061629", "flow": 62, "target": "1982650024"}, {"source": "1528051448", "flow": 48, "target": "1982650024"}, {"source": "1528030541", "flow": 94, "target": "1982650024"}, {"source": "1528022019", "flow": 257, "target": "1982650024"}, {"source": "1518955699", "flow": 89, "target": "1982650024"}, {"source": "1518949809", "flow": 103, "target": "1982650024"}, {"source": "1902845118", "flow": 61, "target": "1982650024"}, {"source": "1518919224", "flow": 20, "target": "1982650024"}, {"source": "1508884875", "flow": 431, "target": "1982650024"}, {"source": "1508839622", "flow": 40, "target": "1982650024"}, {"source": "1902899677", "flow": 81, "target": "1982650024"}, {"source": "1508805862", "flow": 24, "target": "1982650024"}, {"source": "1508804337", "flow": 44, "target": "1982650024"}, {"source": "1497849491", "flow": 141, "target": "1982650024"}, {"source": "1497802961", "flow": 97, "target": "1982650024"}, {"source": "1497741714", "flow": 335, "target": "1982650024"}, {"source": "1497718712", "flow": 638, "target": "1982650024"}, {"source": "1487840872", "flow": 87, "target": "1982650024"}, {"source": "1487788188", "flow": 130, "target": "1982650024"}, {"source": "1487680237", "flow": 30, "target": "1982650024"}, {"source": "1487665634", "flow": 52, "target": "1982650024"}, {"source": "1487638185", "flow": 136, "target": "1982650024"}, {"source": "1487635777", "flow": 418, "target": "1982650024"}, {"source": "1477595593", "flow": 366, "target": "1982650024"}, {"source": "1477542942", "flow": 312, "target": "1982650024"}, {"source": "1477537173", "flow": 274, "target": "1982650024"}, {"source": "1902903651", "flow": 39, "target": "1982650024"}, {"source": "1477517167", "flow": 19, "target": "1982650024"}, {"source": "1912167669", "flow": 41, "target": "1982650024"}, {"source": "1912910142", "flow": 137, "target": "1982650024"}, {"source": "1467737999", "flow": 44, "target": "1982650024"}, {"source": "1467545541", "flow": 38, "target": "1982650024"}, {"source": "1467498279", "flow": 44, "target": "1982650024"}, {"source": "1467459917", "flow": 103, "target": "1982650024"}, {"source": "1457465668", "flow": 244, "target": "1982650024"}, {"source": "1457389967", "flow": 192, "target": "1982650024"}, {"source": "1457330649", "flow": 132, "target": "1982650024"}, {"source": "1457306565", "flow": 37, "target": "1982650024"}, {"source": "1447307251", "flow": 48, "target": "1982650024"}, {"source": "1912953555", "flow": 28, "target": "1982650024"}, {"source": "1447299698", "flow": 156, "target": "1982650024"}, {"source": "1447282611", "flow": 31, "target": "1982650024"}, {"source": "1447253638", "flow": 71, "target": "1982650024"}, {"source": "1447242565", "flow": 81, "target": "1982650024"}, {"source": "1447234141", "flow": 700, "target": "1982650024"}, {"source": "1437260296", "flow": 20, "target": "1982650024"}, {"source": "1912970021", "flow": 412, "target": "1982650024"}, {"source": "1437138641", "flow": 86, "target": "1982650024"}, {"source": "1912977430", "flow": 21, "target": "1982650024"}, {"source": "1437136827", "flow": 547, "target": "1982650024"}, {"source": "1437101524", "flow": 208, "target": "1982650024"}, {"source": "1427079946", "flow": 21, "target": "1982650024"}, {"source": "1427055326", "flow": 349, "target": "1982650024"}, {"source": "1427046622", "flow": 362, "target": "1982650024"}, {"source": "1427044148", "flow": 18, "target": "1982650024"}, {"source": "1427023605", "flow": 125, "target": "1982650024"}, {"source": "1427010297", "flow": 387, "target": "1982650024"}, {"source": "1417997990", "flow": 35, "target": "1982650024"}, {"source": "1417952581", "flow": 373, "target": "1982650024"}, {"source": "1912982513", "flow": 1775, "target": "1982650024"}, {"source": "1417946203", "flow": 49, "target": "1982650024"}, {"source": "1417919218", "flow": 506, "target": "1982650024"}, {"source": "1417903378", "flow": 32, "target": "1982650024"}, {"source": "1417091257", "flow": 432, "target": "1982650024"}, {"source": "1407977184", "flow": 56, "target": "1982650024"}, {"source": "1407892516", "flow": 758, "target": "1982650024"}, {"source": "1407890593", "flow": 135, "target": "1982650024"}, {"source": "1407833825", "flow": 336, "target": "1982650024"}, {"source": "1407830102", "flow": 59, "target": "1982650024"}, {"source": "1407809890", "flow": 202, "target": "1982650024"}, {"source": "1407148927", "flow": 56, "target": "1982650024"}, {"source": "1396932463", "flow": 20, "target": "1982650024"}, {"source": "1396909255", "flow": 49, "target": "1982650024"}, {"source": "1396851788", "flow": 261, "target": "1982650024"}, {"source": "1396789269", "flow": 20, "target": "1982650024"}, {"source": "1396751749", "flow": 60, "target": "1982650024"}, {"source": "1912984758", "flow": 1113, "target": "1982650024"}, {"source": "1396729091", "flow": 409, "target": "1982650024"}, {"source": "1396721106", "flow": 875, "target": "1982650024"}, {"source": "1912989989", "flow": 121, "target": "1982650024"}, {"source": "1396707923", "flow": 396, "target": "1982650024"}, {"source": "1912993262", "flow": 63, "target": "1982650024"}, {"source": "1922008614", "flow": 19, "target": "1982650024"}, {"source": "1386976207", "flow": 40, "target": "1982650024"}, {"source": "1386697126", "flow": 44, "target": "1982650024"}, {"source": "1922079771", "flow": 147, "target": "1982650024"}, {"source": "1922276153", "flow": 24, "target": "1982650024"}, {"source": "1386691368", "flow": 45, "target": "1982650024"}, {"source": "1386683407", "flow": 533, "target": "1982650024"}, {"source": "1386683118", "flow": 19, "target": "1982650024"}, {"source": "1386615540", "flow": 186, "target": "1982650024"}, {"source": "1376774547", "flow": 13, "target": "1982650024"}, {"source": "1376768218", "flow": 90, "target": "1982650024"}, {"source": "1376756742", "flow": 206, "target": "1982650024"}, {"source": "1376607259", "flow": 116, "target": "1982650024"}, {"source": "1366541302", "flow": 61, "target": "1982650024"}, {"source": "1366510794", "flow": 697, "target": "1982650024"}, {"source": "1932128782", "flow": 36, "target": "1982650024"}, {"source": "1932179389", "flow": 89, "target": "1982650024"}, {"source": "1366485997", "flow": 560, "target": "1982650024"}, {"source": "1366429151", "flow": 434, "target": "1982650024"}, {"source": "1356617567", "flow": 42, "target": "1982650024"}, {"source": "1356436174", "flow": 128, "target": "1982650024"}, {"source": "1356389597", "flow": 214, "target": "1982650024"}, {"source": "1932183779", "flow": 163, "target": "1982650024"}, {"source": "1356365928", "flow": 468, "target": "1982650024"}, {"source": "1356342018", "flow": 66, "target": "1982650024"}, {"source": "1346292257", "flow": 515, "target": "1982650024"}, {"source": "1346239498", "flow": 58, "target": "1982650024"}, {"source": "1932190360", "flow": 1504, "target": "1982650024"}, {"source": "1346212602", "flow": 423, "target": "1982650024"}, {"source": "1336189521", "flow": 30, "target": "1982650024"}, {"source": "1932194966", "flow": 1125, "target": "1982650024"}, {"source": "1336188457", "flow": 79, "target": "1982650024"}, {"source": "1336147685", "flow": 159, "target": "1982650024"}, {"source": "1326262585", "flow": 15, "target": "1982650024"}, {"source": "1932217171", "flow": 124, "target": "1982650024"}, {"source": "1326149907", "flow": 28, "target": "1982650024"}, {"source": "1326093345", "flow": 26, "target": "1982650024"}, {"source": "1326057167", "flow": 66, "target": "1982650024"}, {"source": "1326046673", "flow": 76, "target": "1982650024"}, {"source": "1326023789", "flow": 257, "target": "1982650024"}, {"source": "1326017856", "flow": 41, "target": "1982650024"}, {"source": "1316977861", "flow": 84, "target": "1982650024"}, {"source": "1316940471", "flow": 157, "target": "1982650024"}, {"source": "1316921166", "flow": 646, "target": "1982650024"}, {"source": "1932316429", "flow": 67, "target": "1982650024"}, {"source": "1942252952", "flow": 314, "target": "1982650024"}, {"source": "1306993282", "flow": 461, "target": "1982650024"}, {"source": "1306950514", "flow": 37, "target": "1982650024"}, {"source": "1306847009", "flow": 67, "target": "1982650024"}, {"source": "1306844071", "flow": 74, "target": "1982650024"}, {"source": "1306827605", "flow": 374, "target": "1982650024"}, {"source": "1306822234", "flow": 130, "target": "1982650024"}, {"source": "1306819792", "flow": 134, "target": "1982650024"}, {"source": "1306183702", "flow": 33, "target": "1982650024"}, {"source": "1306159181", "flow": 50, "target": "1982650024"}, {"source": "1306013305", "flow": 23, "target": "1982650024"}, {"source": "1295919041", "flow": 346, "target": "1982650024"}, {"source": "1295872216", "flow": 68, "target": "1982650024"}, {"source": "1942254883", "flow": 36, "target": "1982650024"}, {"source": "1295733772", "flow": 80, "target": "1982650024"}, {"source": "1295708576", "flow": 53, "target": "1982650024"}, {"source": "1942255575", "flow": 113, "target": "1982650024"}, {"source": "1285936013", "flow": 340, "target": "1982650024"}, {"source": "1285843896", "flow": 126, "target": "1982650024"}, {"source": "1942276829", "flow": 57, "target": "1982650024"}, {"source": "1285611715", "flow": 402, "target": "1982650024"}, {"source": "1275691073", "flow": 131, "target": "1982650024"}, {"source": "1275678997", "flow": 60, "target": "1982650024"}, {"source": "1275631129", "flow": 49, "target": "1982650024"}, {"source": "1275571150", "flow": 393, "target": "1982650024"}, {"source": "1275520827", "flow": 1218, "target": "1982650024"}, {"source": "1275515223", "flow": 16, "target": "1982650024"}, {"source": "1265631675", "flow": 22, "target": "1982650024"}, {"source": "1265599518", "flow": 117, "target": "1982650024"}, {"source": "1265556898", "flow": 32, "target": "1982650024"}, {"source": "1942284658", "flow": 652, "target": "1982650024"}, {"source": "1265490833", "flow": 277, "target": "1982650024"}, {"source": "1265464499", "flow": 1076, "target": "1982650024"}, {"source": "1265419725", "flow": 388, "target": "1982650024"}, {"source": "1942314075", "flow": 65, "target": "1982650024"}, {"source": "1265402879", "flow": 68, "target": "1982650024"}, {"source": "1255535746", "flow": 35, "target": "1982650024"}, {"source": "1942404728", "flow": 428, "target": "1982650024"}, {"source": "1952330672", "flow": 19, "target": "1982650024"}, {"source": "1255383766", "flow": 43, "target": "1982650024"}, {"source": "1952353054", "flow": 328, "target": "1982650024"}, {"source": "1992960298", "flow": 60, "target": "1982650024"}, {"source": "1801885819", "flow": 169, "target": "1982650024"}, {"source": "1801878616", "flow": 60, "target": "1982650024"}, {"source": "1801894142", "flow": 219, "target": "1982650024"}, {"source": "1811044787", "flow": 348, "target": "1982650024"}, {"source": "1801846712", "flow": 263, "target": "1982650024"}, {"source": "1811133903", "flow": 623, "target": "1982650024"}, {"source": "1801069471", "flow": 1202, "target": "1982650024"}, {"source": "1790906295", "flow": 128, "target": "1982650024"}, {"source": "1790886059", "flow": 122, "target": "1982650024"}, {"source": "1790762219", "flow": 1341, "target": "1982650024"}, {"source": "1790757755", "flow": 106, "target": "1982650024"}, {"source": "1790730448", "flow": 438, "target": "1982650024"}, {"source": "1790710374", "flow": 395, "target": "1982650024"}, {"source": "1811971534", "flow": 189, "target": "1982650024"}, {"source": "1790708097", "flow": 30, "target": "1982650024"}, {"source": "1780685743", "flow": 171, "target": "1982650024"}, {"source": "1770637266", "flow": 27, "target": "1982650024"}, {"source": "1770578882", "flow": 308, "target": "1982650024"}, {"source": "1770574360", "flow": 43, "target": "1982650024"}, {"source": "1770563215", "flow": 45, "target": "1982650024"}, {"source": "1760672026", "flow": 58, "target": "1982650024"}, {"source": "1750410452", "flow": 301, "target": "1982650024"}, {"source": "1750394060", "flow": 37, "target": "1982650024"}, {"source": "1821060526", "flow": 626, "target": "1982650024"}, {"source": "1750389607", "flow": 65, "target": "1982650024"}, {"source": "1750355129", "flow": 46, "target": "1982650024"}, {"source": "1750348892", "flow": 242, "target": "1982650024"}, {"source": "1750320966", "flow": 63, "target": "1982650024"}, {"source": "1821083973", "flow": 141, "target": "1982650024"}, {"source": "1740377852", "flow": 38, "target": "1982650024"}, {"source": "1821095738", "flow": 260, "target": "1982650024"}, {"source": "1740377845", "flow": 14, "target": "1982650024"}, {"source": "1740353002", "flow": 13, "target": "1982650024"}, {"source": "1841239647", "flow": 271, "target": "1982650024"}, {"source": "1841358363", "flow": 93, "target": "1982650024"}, {"source": "1740279660", "flow": 25, "target": "1982650024"}, {"source": "1740252642", "flow": 23, "target": "1982650024"}, {"source": "1730389743", "flow": 25, "target": "1982650024"}, {"source": "1730224320", "flow": 887, "target": "1982650024"}, {"source": "1730113440", "flow": 54, "target": "1982650024"}, {"source": "1730111642", "flow": 1625, "target": "1982650024"}, {"source": "1841498821", "flow": 34, "target": "1982650024"}, {"source": "1720286487", "flow": 268, "target": "1982650024"}, {"source": "1720245301", "flow": 665, "target": "1982650024"}, {"source": "1720171796", "flow": 51, "target": "1982650024"}, {"source": "1720086317", "flow": 209, "target": "1982650024"}, {"source": "1720079114", "flow": 50, "target": "1982650024"}, {"source": "1720077761", "flow": 268, "target": "1982650024"}, {"source": "1720059397", "flow": 55, "target": "1982650024"}, {"source": "1710986153", "flow": 111, "target": "1982650024"}, {"source": "1851330906", "flow": 54, "target": "1982650024"}, {"source": "1710968037", "flow": 317, "target": "1982650024"}, {"source": "1851345755", "flow": 567, "target": "1982650024"}, {"source": "1710966247", "flow": 37, "target": "1982650024"}, {"source": "1710943519", "flow": 411, "target": "1982650024"}, {"source": "1710926357", "flow": 495, "target": "1982650024"}, {"source": "1710919295", "flow": 692, "target": "1982650024"}, {"source": "1710181201", "flow": 66, "target": "1982650024"}, {"source": "1700970928", "flow": 13, "target": "1982650024"}, {"source": "1700837754", "flow": 15, "target": "1982650024"}, {"source": "1699970566", "flow": 30, "target": "1982650024"}, {"source": "1699950634", "flow": 95, "target": "1982650024"}, {"source": "1699773150", "flow": 39, "target": "1982650024"}, {"source": "1699760587", "flow": 42, "target": "1982650024"}, {"source": "1851478747", "flow": 422, "target": "1982650024"}, {"source": "1851495121", "flow": 100, "target": "1982650024"}, {"source": "1699752493", "flow": 113, "target": "1982650024"}, {"source": "1699705855", "flow": 163, "target": "1982650024"}, {"source": "1689677767", "flow": 55, "target": "1982650024"}, {"source": "1689645707", "flow": 29, "target": "1982650024"}, {"source": "1689620395", "flow": 25, "target": "1982650024"}, {"source": "1689617433", "flow": 637, "target": "1982650024"}, {"source": "1689616294", "flow": 209, "target": "1982650024"}, {"source": "1679795256", "flow": 29, "target": "1982650024"}, {"source": "1679574180", "flow": 30, "target": "1982650024"}, {"source": "1851507073", "flow": 131, "target": "1982650024"}, {"source": "1679546717", "flow": 1096, "target": "1982650024"}, {"source": "1679534309", "flow": 528, "target": "1982650024"}, {"source": "1679504765", "flow": 33, "target": "1982650024"}, {"source": "1669563920", "flow": 233, "target": "1982650024"}, {"source": "1669470555", "flow": 121, "target": "1982650024"}, {"source": "1669463568", "flow": 25, "target": "1982650024"}, {"source": "1851549240", "flow": 55, "target": "1982650024"}, {"source": "1669405130", "flow": 244, "target": "1982650024"}, {"source": "1851554836", "flow": 457, "target": "1982650024"}, {"source": "1649598624", "flow": 499, "target": "1982650024"}, {"source": "1649425885", "flow": 90, "target": "1982650024"}, {"source": "1649271206", "flow": 49, "target": "1982650024"}, {"source": "1851688865", "flow": 100, "target": "1982650024"}, {"source": "1861452195", "flow": 26, "target": "1982650024"}, {"source": "1649262338", "flow": 78, "target": "1982650024"}, {"source": "1861469017", "flow": 58, "target": "1982650024"}, {"source": "1649219742", "flow": 39, "target": "1982650024"}, {"source": "1861482259", "flow": 82, "target": "1982650024"}, {"source": "1861762783", "flow": 14, "target": "1982650024"}, {"source": "1871505750", "flow": 690, "target": "1982650024"}, {"source": "1639500739", "flow": 22, "target": "1982650024"}, {"source": "1639226582", "flow": 307, "target": "1982650024"}, {"source": "1639169386", "flow": 203, "target": "1982650024"}, {"source": "1639116379", "flow": 59, "target": "1982650024"}, {"source": "1639113509", "flow": 547, "target": "1982650024"}, {"source": "1639107873", "flow": 256, "target": "1982650024"}, {"source": "1629249891", "flow": 35, "target": "1982650024"}, {"source": "1629221692", "flow": 37, "target": "1982650024"}, {"source": "1629025689", "flow": 67, "target": "1982650024"}, {"source": "1619965431", "flow": 12, "target": "1982650024"}, {"source": "1619945508", "flow": 31, "target": "1982650024"}, {"source": "1619916970", "flow": 20, "target": "1982650024"}, {"source": "1619180403", "flow": 1517, "target": "1982650024"}, {"source": "1609917129", "flow": 113, "target": "1982650024"}, {"source": "1871548818", "flow": 597, "target": "1982650024"}, {"source": "1609838499", "flow": 620, "target": "1982650024"}, {"source": "1609810274", "flow": 74, "target": "1982650024"}, {"source": "1871696096", "flow": 47, "target": "1982650024"}, {"source": "1609039973", "flow": 854, "target": "1982650024"}, {"source": "1609014489", "flow": 38, "target": "1982650024"}, {"source": "1881646073", "flow": 462, "target": "1982650024"}, {"source": "1598753758", "flow": 347, "target": "1982650024"}, {"source": "1881673093", "flow": 172, "target": "1982650024"}, {"source": "1598718330", "flow": 178, "target": "1982650024"}, {"source": "1598083578", "flow": 590, "target": "1982650024"}, {"source": "1588788301", "flow": 523, "target": "1982650024"}, {"source": "1891005856", "flow": 272, "target": "1982650024"}, {"source": "1588777445", "flow": 32, "target": "1982650024"}, {"source": "1891701017", "flow": 96, "target": "1982650024"}, {"source": "1588656664", "flow": 36, "target": "1982650024"}, {"source": "1578677274", "flow": 171, "target": "1982650024"}, {"source": "1578610457", "flow": 352, "target": "1982650024"}, {"source": "1578510418", "flow": 105, "target": "1982650024"}, {"source": "1568576825", "flow": 48, "target": "1982650024"}, {"source": "1891741435", "flow": 30, "target": "1982650024"}, {"source": "1568513075", "flow": 54, "target": "1982650024"}, {"source": "1568498665", "flow": 63, "target": "1982650024"}, {"source": "1891749420", "flow": 524, "target": "1982650024"}, {"source": "1891836920", "flow": 236, "target": "1982650024"}, {"source": "1891999389", "flow": 68, "target": "1982650024"}, {"source": "1568493062", "flow": 595, "target": "1982650024"}, {"source": "1568460640", "flow": 47, "target": "1982650024"}, {"source": "1568417772", "flow": 28, "target": "1982650024"}, {"source": "1902013410", "flow": 375, "target": "1982650024"}, {"source": "1568415164", "flow": 43, "target": "1982650024"}, {"source": "1558642934", "flow": 19, "target": "1982650024"}, {"source": "1558386771", "flow": 183, "target": "1982650024"}, {"source": "1558355941", "flow": 48, "target": "1982650024"}, {"source": "1902031610", "flow": 24, "target": "1982650024"}, {"source": "1558345256", "flow": 104, "target": "1982650024"}, {"source": "1558306357", "flow": 52, "target": "1982650024"}, {"source": "1548281124", "flow": 162, "target": "1982650024"}, {"source": "1548259864", "flow": 555, "target": "1982650024"}, {"source": "1548251705", "flow": 58, "target": "1982650024"}, {"source": "1174669998", "flow": 42, "target": "1982650024"}, {"source": "1174664296", "flow": 150, "target": "1982650024"}, {"source": "1174584403", "flow": 31, "target": "1982650024"}, {"source": "1164794046", "flow": 164, "target": "1982650024"}, {"source": "1962499582", "flow": 41, "target": "1982650024"}, {"source": "1962645259", "flow": 44, "target": "1982650024"}, {"source": "1972500361", "flow": 70, "target": "1982650024"}, {"source": "1154365518", "flow": 646, "target": "1982650024"}, {"source": "1144288747", "flow": 173, "target": "1982650024"}, {"source": "1972504405", "flow": 88, "target": "1982650024"}, {"source": "1972506061", "flow": 51, "target": "1982650024"}, {"source": "1144283896", "flow": 367, "target": "1982650024"}, {"source": "1144205519", "flow": 39, "target": "1982650024"}, {"source": "1134346323", "flow": 84, "target": "1982650024"}, {"source": "1134321235", "flow": 50, "target": "1982650024"}, {"source": "1134163694", "flow": 341, "target": "1982650024"}, {"source": "1134103831", "flow": 160, "target": "1982650024"}, {"source": "1124466107", "flow": 257, "target": "1982650024"}, {"source": "1124150016", "flow": 23, "target": "1982650024"}, {"source": "1124111257", "flow": 72, "target": "1982650024"}, {"source": "1124087002", "flow": 118, "target": "1982650024"}, {"source": "1124014501", "flow": 75, "target": "1982650024"}, {"source": "1124014360", "flow": 20, "target": "1982650024"}, {"source": "1114961596", "flow": 85, "target": "1982650024"}, {"source": "1972506186", "flow": 728, "target": "1982650024"}, {"source": "1114956687", "flow": 78, "target": "1982650024"}, {"source": "1972524429", "flow": 25, "target": "1982650024"}, {"source": "1114074085", "flow": 21, "target": "1982650024"}, {"source": "1114020336", "flow": 1936, "target": "1982650024"}, {"source": "1104837327", "flow": 145, "target": "1982650024"}, {"source": "1972538486", "flow": 57, "target": "1982650024"}, {"source": "1104832450", "flow": 229, "target": "1982650024"}, {"source": "1093937872", "flow": 60, "target": "1982650024"}, {"source": "1093830176", "flow": 503, "target": "1982650024"}, {"source": "1083609481", "flow": 32, "target": "1982650024"}, {"source": "1083606248", "flow": 69, "target": "1982650024"}, {"source": "1972540557", "flow": 131, "target": "1982650024"}, {"source": "1073796470", "flow": 92, "target": "1982650024"}, {"source": "1972543064", "flow": 28, "target": "1982650024"}, {"source": "1073610754", "flow": 245, "target": "1982650024"}, {"source": "1972547891", "flow": 90, "target": "1982650024"}, {"source": "1972549533", "flow": 301, "target": "1982650024"}, {"source": "1972581775", "flow": 79, "target": "1982650024"}, {"source": "1073557831", "flow": 79, "target": "1982650024"}, {"source": "1073505830", "flow": 21, "target": "1982650024"}, {"source": "1972658060", "flow": 29, "target": "1982650024"}, {"source": "1063673622", "flow": 28, "target": "1982650024"}, {"source": "1063485274", "flow": 319, "target": "1982650024"}, {"source": "1972670552", "flow": 29, "target": "1982650024"}, {"source": "1063475655", "flow": 24, "target": "1982650024"}, {"source": "1063467876", "flow": 498, "target": "1982650024"}, {"source": "1063457315", "flow": 52, "target": "1982650024"}, {"source": "1972690006", "flow": 23, "target": "1982650024"}, {"source": "1053604330", "flow": 58, "target": "1982650024"}, {"source": "1053425181", "flow": 130, "target": "1982650024"}, {"source": "1972718104", "flow": 24, "target": "1982650024"}, {"source": "1972788032", "flow": 83, "target": "1982650024"}, {"source": "1053408567", "flow": 216, "target": "1982650024"}, {"source": "1053406405", "flow": 40, "target": "1982650024"}, {"source": "1053337717", "flow": 51, "target": "1982650024"}, {"source": "1053303248", "flow": 444, "target": "1982650024"}, {"source": "1982668976", "flow": 21, "target": "1982650024"}, {"source": "1043232879", "flow": 36, "target": "1982650024"}, {"source": "1043219165", "flow": 36, "target": "1982650024"}, {"source": "1043218654", "flow": 57, "target": "1982650024"}, {"source": "1043217854", "flow": 240, "target": "1982650024"}, {"source": "1043217623", "flow": 117, "target": "1982650024"}, {"source": "1043205008", "flow": 246, "target": "1982650024"}, {"source": "1043203516", "flow": 18, "target": "1982650024"}, {"source": "1033199401", "flow": 93, "target": "1982650024"}, {"source": "1023340809", "flow": 25, "target": "1982650024"}, {"source": "1023253549", "flow": 82, "target": "1982650024"}, {"source": "1982712162", "flow": 16, "target": "1982650024"}, {"source": "1982826004", "flow": 94, "target": "1982650024"}, {"source": "1023171576", "flow": 48, "target": "1982650024"}, {"source": "1992149819", "flow": 42, "target": "1982650024"}, {"source": "1992790174", "flow": 77, "target": "1982650024"}, {"source": "1992840813", "flow": 206, "target": "1982650024"}, {"source": "1992897318", "flow": 30, "target": "1982650024"}, {"source": "1023094851", "flow": 302, "target": "1982650024"}, {"source": "1023004264", "flow": 89, "target": "1982650024"}, {"source": "1013996222", "flow": 162, "target": "1982650024"}, {"source": "1013991850", "flow": 672, "target": "1982650024"}, {"source": "1013920735", "flow": 30, "target": "1982650024"}, {"source": "1013914449", "flow": 19, "target": "1982650024"}, {"source": "1003897380", "flow": 801, "target": "1982650024"}, {"source": "1003862566", "flow": 86, "target": "1982650024"}, {"source": "1003860982", "flow": 490, "target": "1982650024"}, {"source": "1003090424", "flow": 80, "target": "1982650024"}, {"source": "1801888060", "flow": 464, "target": "1982650024"}, {"source": "1255372181", "flow": 164, "target": "1982650024"}, {"source": "1255370755", "flow": 29, "target": "1982650024"}, {"source": "1255318051", "flow": 1493, "target": "1982650024"}, {"source": "1952358541", "flow": 107, "target": "1982650024"}, {"source": "1255301800", "flow": 441, "target": "1982650024"}, {"source": "1245325422", "flow": 202, "target": "1982650024"}, {"source": "1245313741", "flow": 25, "target": "1982650024"}, {"source": "1952392797", "flow": 39, "target": "1982650024"}, {"source": "1245274778", "flow": 449, "target": "1982650024"}, {"source": "1245238567", "flow": 24, "target": "1982650024"}, {"source": "1245223148", "flow": 29, "target": "1982650024"}, {"source": "1245215649", "flow": 484, "target": "1982650024"}, {"source": "1952473431", "flow": 56, "target": "1982650024"}, {"source": "1952636797", "flow": 73, "target": "1982650024"}, {"source": "1962403378", "flow": 35, "target": "1982650024"}, {"source": "1962409821", "flow": 102, "target": "1982650024"}, {"source": "1235299975", "flow": 131, "target": "1982650024"}, {"source": "1235116518", "flow": 39, "target": "1982650024"}, {"source": "1225222367", "flow": 40, "target": "1982650024"}, {"source": "1225089097", "flow": 33, "target": "1982650024"}, {"source": "1225070337", "flow": 59, "target": "1982650024"}, {"source": "1225060999", "flow": 32, "target": "1982650024"}, {"source": "1225060791", "flow": 749, "target": "1982650024"}, {"source": "1215995972", "flow": 76, "target": "1982650024"}, {"source": "1215981196", "flow": 1295, "target": "1982650024"}, {"source": "1215971858", "flow": 284, "target": "1982650024"}, {"source": "1215966726", "flow": 18, "target": "1982650024"}, {"source": "1215923875", "flow": 117, "target": "1982650024"}, {"source": "1215918321", "flow": 129, "target": "1982650024"}, {"source": "1215158175", "flow": 505, "target": "1982650024"}, {"source": "1215152236", "flow": 141, "target": "1982650024"}, {"source": "1205978012", "flow": 436, "target": "1982650024"}, {"source": "1205861929", "flow": 236, "target": "1982650024"}, {"source": "1205849502", "flow": 21, "target": "1982650024"}, {"source": "1194967380", "flow": 68, "target": "1982650024"}, {"source": "1194961623", "flow": 44, "target": "1982650024"}, {"source": "1194796391", "flow": 34, "target": "1982650024"}, {"source": "1962418038", "flow": 63, "target": "1982650024"}, {"source": "1194724864", "flow": 34, "target": "1982650024"}, {"source": "1184663494", "flow": 23, "target": "1982650024"}, {"source": "1184619124", "flow": 59, "target": "1982650024"}, {"source": "1962445726", "flow": 59, "target": "1982650024"}, {"source": "1962457069", "flow": 1388, "target": "1982650024"}, {"source": "1184612921", "flow": 167, "target": "1982650024"}, {"source": "1184612921", "flow": 88, "target": "1982662557"}, {"source": "1326149907", "flow": 34, "target": "1982662557"}, {"source": "1073610754", "flow": 32, "target": "1982662557"}, {"source": "1073610754", "flow": 22, "target": "1992103857"}, {"source": "1073610754", "flow": 200, "target": "1992701429"}, {"source": "1902903651", "flow": 62, "target": "1992701429"}, {"source": "1740353002", "flow": 44, "target": "1992701429"}, {"source": "1801885819", "flow": 77, "target": "1992776405"}, {"source": "1114956687", "flow": 51, "target": "1992776405"}, {"source": "1699752493", "flow": 95, "target": "1992776405"}, {"source": "1972506186", "flow": 304, "target": "1992776405"}, {"source": "1043219165", "flow": 50, "target": "1992776405"}, {"source": "1275515223", "flow": 18, "target": "1992776405"}, {"source": "1396932463", "flow": 342, "target": "1992776405"}, {"source": "1245215649", "flow": 372, "target": "1992776405"}, {"source": "1407833825", "flow": 104, "target": "1992776405"}, {"source": "1790730448", "flow": 205, "target": "1992776405"}, {"source": "1043218654", "flow": 80, "target": "1992776405"}, {"source": "1235299975", "flow": 49, "target": "1992776405"}, {"source": "1285611715", "flow": 81, "target": "1992776405"}, {"source": "1417091257", "flow": 390, "target": "1992776405"}, {"source": "1750410452", "flow": 102, "target": "1992776405"}, {"source": "1699760587", "flow": 120, "target": "1992776405"}, {"source": "1295708576", "flow": 21, "target": "1992776405"}, {"source": "1306993282", "flow": 142, "target": "1992776405"}, {"source": "1316921166", "flow": 246, "target": "1992776405"}, {"source": "1912982513", "flow": 90, "target": "1992776405"}, {"source": "1720286487", "flow": 155, "target": "1992776405"}, {"source": "1316977861", "flow": 200, "target": "1992776405"}, {"source": "1326023789", "flow": 178, "target": "1992776405"}, {"source": "1770563215", "flow": 17, "target": "1992776405"}, {"source": "1851478747", "flow": 175, "target": "1992776405"}, {"source": "1811971534", "flow": 289, "target": "1992776405"}, {"source": "1013991850", "flow": 224, "target": "1992776405"}, {"source": "1437136827", "flow": 332, "target": "1992776405"}, {"source": "1730113440", "flow": 28, "target": "1992776405"}, {"source": "1023094851", "flow": 29, "target": "1992776405"}, {"source": "1972540557", "flow": 68, "target": "1992776405"}, {"source": "1033199401", "flow": 30, "target": "1992776405"}, {"source": "1073610754", "flow": 430, "target": "1992776405"}, {"source": "1447234141", "flow": 287, "target": "1992776405"}, {"source": "1790762219", "flow": 18, "target": "1992776405"}, {"source": "1669563920", "flow": 21, "target": "1992776405"}, {"source": "1679534309", "flow": 79, "target": "1992776405"}, {"source": "1255318051", "flow": 250, "target": "1992776405"}, {"source": "1689616294", "flow": 429, "target": "1992776405"}, {"source": "1689617433", "flow": 168, "target": "1992776405"}, {"source": "1073557831", "flow": 336, "target": "1992776405"}, {"source": "1245325422", "flow": 486, "target": "1992776405"}, {"source": "1144283896", "flow": 130, "target": "1992776405"}, {"source": "1639113509", "flow": 159, "target": "1992776405"}, {"source": "1972549533", "flow": 364, "target": "1992776405"}, {"source": "1639226582", "flow": 49, "target": "1992776405"}, {"source": "1912984758", "flow": 337, "target": "1992776405"}, {"source": "1669470555", "flow": 51, "target": "1992776405"}, {"source": "1134103831", "flow": 72, "target": "1992776405"}, {"source": "1821060526", "flow": 259, "target": "1992776405"}, {"source": "1942284658", "flow": 232, "target": "1992776405"}, {"source": "1326149907", "flow": 29, "target": "1992776405"}, {"source": "1346239498", "flow": 155, "target": "1992776405"}, {"source": "1932183779", "flow": 63, "target": "1992776405"}, {"source": "1366429151", "flow": 175, "target": "1992776405"}, {"source": "1376756742", "flow": 52, "target": "1992776405"}, {"source": "1962418038", "flow": 20, "target": "1992776405"}, {"source": "1477517167", "flow": 112, "target": "1992776405"}, {"source": "1477537173", "flow": 82, "target": "1992776405"}, {"source": "1396707923", "flow": 204, "target": "1992776405"}, {"source": "1477542942", "flow": 137, "target": "1992776405"}, {"source": "1396721106", "flow": 160, "target": "1992776405"}, {"source": "1487638185", "flow": 28, "target": "1992776405"}, {"source": "1487840872", "flow": 35, "target": "1992776405"}, {"source": "1497741714", "flow": 90, "target": "1992776405"}, {"source": "1538105242", "flow": 693, "target": "1992776405"}, {"source": "1902099443", "flow": 105, "target": "1992776405"}, {"source": "1558345256", "flow": 27, "target": "1992776405"}, {"source": "1568415164", "flow": 37, "target": "1992776405"}, {"source": "1568493062", "flow": 59, "target": "1992776405"}, {"source": "1609014489", "flow": 25, "target": "1992776405"}, {"source": "1396729091", "flow": 159, "target": "1992776405"}, {"source": "1871548818", "flow": 214, "target": "1992776405"}, {"source": "1609917129", "flow": 33, "target": "1992776405"}, {"source": "1073610754", "flow": 26, "target": "1992776421"}, {"source": "1821083973", "flow": 13, "target": "1992776421"}, {"source": "1932128782", "flow": 52, "target": "1992776421"}, {"source": "1073610754", "flow": 60, "target": "1992813240"}, {"source": "1851507073", "flow": 42, "target": "1992893416"}, {"source": "1073610754", "flow": 18, "target": "1992893416"}, {"source": "1326149907", "flow": 34, "target": "1992893416"}, {"source": "1477542942", "flow": 135, "target": "1992893416"}, {"source": "1841239647", "flow": 131, "target": "1992893416"}]}
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
/* required styles */
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
max-width: none !important;
}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
max-width: 15000px !important;
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-tile-pane { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane { z-index: 5; }
.leaflet-marker-pane { z-index: 6; }
.leaflet-popup-pane { z-index: 7; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
}
/* control positioning */
.leaflet-control {
position: relative;
z-index: 7;
pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
position: absolute;
z-index: 1000;
pointer-events: none;
}
.leaflet-top {
top: 0;
}
.leaflet-right {
right: 0;
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
}
.leaflet-control {
float: left;
clear: both;
}
.leaflet-right .leaflet-control {
float: right;
}
.leaflet-top .leaflet-control {
margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
margin-left: 10px;
}
.leaflet-right .leaflet-control {
margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
}
/* cursors */
.leaflet-clickable {
cursor: pointer;
}
.leaflet-container {
cursor: -webkit-grab;
cursor: -moz-grab;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
}
/* visual tweaks */
.leaflet-container {
background: #ddd;
outline: 0;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-container a.leaflet-active {
outline: 2px solid orange;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
}
/* general typography */
.leaflet-container {
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
}
.leaflet-bar a:hover {
background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}
.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-control-zoom-out {
font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
font-size: 24px;
}
/* layers control */
.leaflet-control-layers {
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
background: #fff;
border-radius: 5px;
}
.leaflet-control-layers-toggle {
background-image: url(images/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(images/layers-2x.png);
background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}
.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
color: #333;
background: #fff;
}
.leaflet-control-layers-selector {
margin-top: 2px;
position: relative;
top: 1px;
}
.leaflet-control-layers label {
display: block;
}
.leaflet-control-layers-separator {
height: 0;
border-top: 1px solid #ddd;
margin: 5px -10px 5px -6px;
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
background: #fff;
background: rgba(255, 255, 255, 0.7);
margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
}
.leaflet-control-attribution a {
text-decoration: none;
}
.leaflet-control-attribution a:hover {
text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}
.leaflet-control-scale-line {
border: 2px solid #777;
border-top: none;
line-height: 1.1;
padding: 2px 5px 1px;
font-size: 11px;
white-space: nowrap;
overflow: hidden;
-moz-box-sizing: content-box;
box-sizing: content-box;
background: #fff;
background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
border-top: 2px solid #777;
border-bottom: none;
margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0,0,0,0.2);
background-clip: padding-box;
}
/* popup */
.leaflet-popup {
position: absolute;
text-align: center;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 19px;
line-height: 1.4;
}
.leaflet-popup-content p {
margin: 18px 0;
}
.leaflet-popup-tip-container {
margin: 0 auto;
width: 40px;
height: 20px;
position: relative;
overflow: hidden;
}
.leaflet-popup-tip {
width: 17px;
height: 17px;
padding: 1px;
margin: -10px auto 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
padding: 4px 4px 0 0;
text-align: center;
width: 18px;
height: 14px;
font: 16px/14px Tahoma, Verdana, sans-serif;
color: #c3c3c3;
text-decoration: none;
font-weight: bold;
background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
color: #999;
}
.leaflet-popup-scrolled {
overflow: auto;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}
/*
Leaflet, a JavaScript library for mobile-friendly interactive maps. http://leafletjs.com
(c) 2010-2013, Vladimir Agafonkin
(c) 2010-2011, CloudMade
*/
!function(t,e,i){var n=t.L,o={};o.version="0.7.7","object"==typeof module&&"object"==typeof module.exports?module.exports=o:"function"==typeof define&&define.amd&&define(o),o.noConflict=function(){return t.L=n,this},t.L=o,o.Util={extend:function(t){var e,i,n,o,s=Array.prototype.slice.call(arguments,1);for(i=0,n=s.length;n>i;i++){o=s[i]||{};for(e in o)o.hasOwnProperty(e)&&(t[e]=o[e])}return t},bind:function(t,e){var i=arguments.length>2?Array.prototype.slice.call(arguments,2):null;return function(){return t.apply(e,i||arguments)}},stamp:function(){var t=0,e="_leaflet_id";return function(i){return i[e]=i[e]||++t,i[e]}}(),invokeEach:function(t,e,i){var n,o;if("object"==typeof t){o=Array.prototype.slice.call(arguments,3);for(n in t)e.apply(i,[n,t[n]].concat(o));return!0}return!1},limitExecByInterval:function(t,e,i){var n,o;return function s(){var a=arguments;return n?void(o=!0):(n=!0,setTimeout(function(){n=!1,o&&(s.apply(i,a),o=!1)},e),void t.apply(i,a))}},falseFn:function(){return!1},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},splitWords:function(t){return o.Util.trim(t).split(/\s+/)},setOptions:function(t,e){return t.options=o.extend({},t.options,e),t.options},getParamString:function(t,e,i){var n=[];for(var o in t)n.push(encodeURIComponent(i?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(e&&-1!==e.indexOf("?")?"&":"?")+n.join("&")},template:function(t,e){return t.replace(/\{ *([\w_]+) *\}/g,function(t,n){var o=e[n];if(o===i)throw new Error("No value provided for variable "+t);return"function"==typeof o&&(o=o(e)),o})},isArray:Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},emptyImageUrl:"data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="},function(){function e(e){var i,n,o=["webkit","moz","o","ms"];for(i=0;i<o.length&&!n;i++)n=t[o[i]+e];return n}function i(e){var i=+new Date,o=Math.max(0,16-(i-n));return n=i+o,t.setTimeout(e,o)}var n=0,s=t.requestAnimationFrame||e("RequestAnimationFrame")||i,a=t.cancelAnimationFrame||e("CancelAnimationFrame")||e("CancelRequestAnimationFrame")||function(e){t.clearTimeout(e)};o.Util.requestAnimFrame=function(e,n,a,r){return e=o.bind(e,n),a&&s===i?void e():s.call(t,e,r)},o.Util.cancelAnimFrame=function(e){e&&a.call(t,e)}}(),o.extend=o.Util.extend,o.bind=o.Util.bind,o.stamp=o.Util.stamp,o.setOptions=o.Util.setOptions,o.Class=function(){},o.Class.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this._initHooks&&this.callInitHooks()},i=function(){};i.prototype=this.prototype;var n=new i;n.constructor=e,e.prototype=n;for(var s in this)this.hasOwnProperty(s)&&"prototype"!==s&&(e[s]=this[s]);t.statics&&(o.extend(e,t.statics),delete t.statics),t.includes&&(o.Util.extend.apply(null,[n].concat(t.includes)),delete t.includes),t.options&&n.options&&(t.options=o.extend({},n.options,t.options)),o.extend(n,t),n._initHooks=[];var a=this;return e.__super__=a.prototype,n.callInitHooks=function(){if(!this._initHooksCalled){a.prototype.callInitHooks&&a.prototype.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,e=n._initHooks.length;e>t;t++)n._initHooks[t].call(this)}},e},o.Class.include=function(t){o.extend(this.prototype,t)},o.Class.mergeOptions=function(t){o.extend(this.prototype.options,t)},o.Class.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i="function"==typeof t?t:function(){this[t].apply(this,e)};this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i)};var s="_leaflet_events";o.Mixin={},o.Mixin.Events={addEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d=this[s]=this[s]||{},p=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)r={action:e,context:i||this},h=t[n],p?(l=h+"_idx",u=l+"_len",c=d[l]=d[l]||{},c[p]||(c[p]=[],d[u]=(d[u]||0)+1),c[p].push(r)):(d[h]=d[h]||[],d[h].push(r));return this},hasEventListeners:function(t){var e=this[s];return!!e&&(t in e&&e[t].length>0||t+"_idx"in e&&e[t+"_idx_len"]>0)},removeEventListener:function(t,e,i){if(!this[s])return this;if(!t)return this.clearAllEventListeners();if(o.Util.invokeEach(t,this.removeEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d,p,_=this[s],m=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)if(r=t[n],u=r+"_idx",c=u+"_len",d=_[u],e){if(h=m&&d?d[m]:_[r]){for(l=h.length-1;l>=0;l--)h[l].action!==e||i&&h[l].context!==i||(p=h.splice(l,1),p[0].action=o.Util.falseFn);i&&d&&0===h.length&&(delete d[m],_[c]--)}}else delete _[r],delete _[u],delete _[c];return this},clearAllEventListeners:function(){return delete this[s],this},fireEvent:function(t,e){if(!this.hasEventListeners(t))return this;var i,n,a,r,h,l=o.Util.extend({},e,{type:t,target:this}),u=this[s];if(u[t])for(i=u[t].slice(),n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);r=u[t+"_idx"];for(h in r)if(i=r[h].slice())for(n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);return this},addOneTimeEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addOneTimeEventListener,this,e,i))return this;var n=o.bind(function(){this.removeEventListener(t,e,i).removeEventListener(t,n,i)},this);return this.addEventListener(t,e,i).addEventListener(t,n,i)}},o.Mixin.Events.on=o.Mixin.Events.addEventListener,o.Mixin.Events.off=o.Mixin.Events.removeEventListener,o.Mixin.Events.once=o.Mixin.Events.addOneTimeEventListener,o.Mixin.Events.fire=o.Mixin.Events.fireEvent,function(){var n="ActiveXObject"in t,s=n&&!e.addEventListener,a=navigator.userAgent.toLowerCase(),r=-1!==a.indexOf("webkit"),h=-1!==a.indexOf("chrome"),l=-1!==a.indexOf("phantom"),u=-1!==a.indexOf("android"),c=-1!==a.search("android [23]"),d=-1!==a.indexOf("gecko"),p=typeof orientation!=i+"",_=!t.PointerEvent&&t.MSPointerEvent,m=t.PointerEvent&&t.navigator.pointerEnabled||_,f="devicePixelRatio"in t&&t.devicePixelRatio>1||"matchMedia"in t&&t.matchMedia("(min-resolution:144dpi)")&&t.matchMedia("(min-resolution:144dpi)").matches,g=e.documentElement,v=n&&"transition"in g.style,y="WebKitCSSMatrix"in t&&"m11"in new t.WebKitCSSMatrix&&!c,P="MozPerspective"in g.style,L="OTransition"in g.style,x=!t.L_DISABLE_3D&&(v||y||P||L)&&!l,w=!t.L_NO_TOUCH&&!l&&(m||"ontouchstart"in t||t.DocumentTouch&&e instanceof t.DocumentTouch);o.Browser={ie:n,ielt9:s,webkit:r,gecko:d&&!r&&!t.opera&&!n,android:u,android23:c,chrome:h,ie3d:v,webkit3d:y,gecko3d:P,opera3d:L,any3d:x,mobile:p,mobileWebkit:p&&r,mobileWebkit3d:p&&y,mobileOpera:p&&t.opera,touch:w,msPointer:_,pointer:m,retina:f}}(),o.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},o.Point.prototype={clone:function(){return new o.Point(this.x,this.y)},add:function(t){return this.clone()._add(o.point(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(o.point(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},distanceTo:function(t){t=o.point(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=o.point(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=o.point(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+o.Util.formatNum(this.x)+", "+o.Util.formatNum(this.y)+")"}},o.point=function(t,e,n){return t instanceof o.Point?t:o.Util.isArray(t)?new o.Point(t[0],t[1]):t===i||null===t?t:new o.Point(t,e,n)},o.Bounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.Bounds.prototype={extend:function(t){return t=o.point(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new o.Point((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new o.Point(this.min.x,this.max.y)},getTopRight:function(){return new o.Point(this.max.x,this.min.y)},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return t="number"==typeof t[0]||t instanceof o.Point?o.point(t):o.bounds(t),t instanceof o.Bounds?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,a=s.x>=e.x&&n.x<=i.x,r=s.y>=e.y&&n.y<=i.y;return a&&r},isValid:function(){return!(!this.min||!this.max)}},o.bounds=function(t,e){return!t||t instanceof o.Bounds?t:new o.Bounds(t,e)},o.Transformation=function(t,e,i,n){this._a=t,this._b=e,this._c=i,this._d=n},o.Transformation.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return e=e||1,t.x=e*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return e=e||1,new o.Point((t.x/e-this._b)/this._a,(t.y/e-this._d)/this._c)}},o.DomUtil={get:function(t){return"string"==typeof t?e.getElementById(t):t},getStyle:function(t,i){var n=t.style[i];if(!n&&t.currentStyle&&(n=t.currentStyle[i]),(!n||"auto"===n)&&e.defaultView){var o=e.defaultView.getComputedStyle(t,null);n=o?o[i]:null}return"auto"===n?null:n},getViewportOffset:function(t){var i,n=0,s=0,a=t,r=e.body,h=e.documentElement;do{if(n+=a.offsetTop||0,s+=a.offsetLeft||0,n+=parseInt(o.DomUtil.getStyle(a,"borderTopWidth"),10)||0,s+=parseInt(o.DomUtil.getStyle(a,"borderLeftWidth"),10)||0,i=o.DomUtil.getStyle(a,"position"),a.offsetParent===r&&"absolute"===i)break;if("fixed"===i){n+=r.scrollTop||h.scrollTop||0,s+=r.scrollLeft||h.scrollLeft||0;break}if("relative"===i&&!a.offsetLeft){var l=o.DomUtil.getStyle(a,"width"),u=o.DomUtil.getStyle(a,"max-width"),c=a.getBoundingClientRect();("none"!==l||"none"!==u)&&(s+=c.left+a.clientLeft),n+=c.top+(r.scrollTop||h.scrollTop||0);break}a=a.offsetParent}while(a);a=t;do{if(a===r)break;n-=a.scrollTop||0,s-=a.scrollLeft||0,a=a.parentNode}while(a);return new o.Point(s,n)},documentIsLtr:function(){return o.DomUtil._docIsLtrCached||(o.DomUtil._docIsLtrCached=!0,o.DomUtil._docIsLtr="ltr"===o.DomUtil.getStyle(e.body,"direction")),o.DomUtil._docIsLtr},create:function(t,i,n){var o=e.createElement(t);return o.className=i,n&&n.appendChild(o),o},hasClass:function(t,e){if(t.classList!==i)return t.classList.contains(e);var n=o.DomUtil._getClass(t);return n.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(n)},addClass:function(t,e){if(t.classList!==i)for(var n=o.Util.splitWords(e),s=0,a=n.length;a>s;s++)t.classList.add(n[s]);else if(!o.DomUtil.hasClass(t,e)){var r=o.DomUtil._getClass(t);o.DomUtil._setClass(t,(r?r+" ":"")+e)}},removeClass:function(t,e){t.classList!==i?t.classList.remove(e):o.DomUtil._setClass(t,o.Util.trim((" "+o.DomUtil._getClass(t)+" ").replace(" "+e+" "," ")))},_setClass:function(t,e){t.className.baseVal===i?t.className=e:t.className.baseVal=e},_getClass:function(t){return t.className.baseVal===i?t.className:t.className.baseVal},setOpacity:function(t,e){if("opacity"in t.style)t.style.opacity=e;else if("filter"in t.style){var i=!1,n="DXImageTransform.Microsoft.Alpha";try{i=t.filters.item(n)}catch(o){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=" progid:"+n+"(opacity="+e+")"}},testProp:function(t){for(var i=e.documentElement.style,n=0;n<t.length;n++)if(t[n]in i)return t[n];return!1},getTranslateString:function(t){var e=o.Browser.webkit3d,i="translate"+(e?"3d":"")+"(",n=(e?",0":"")+")";return i+t.x+"px,"+t.y+"px"+n},getScaleString:function(t,e){var i=o.DomUtil.getTranslateString(e.add(e.multiplyBy(-1*t))),n=" scale("+t+") ";return i+n},setPosition:function(t,e,i){t._leaflet_pos=e,!i&&o.Browser.any3d?t.style[o.DomUtil.TRANSFORM]=o.DomUtil.getTranslateString(e):(t.style.left=e.x+"px",t.style.top=e.y+"px")},getPosition:function(t){return t._leaflet_pos}},o.DomUtil.TRANSFORM=o.DomUtil.testProp(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]),o.DomUtil.TRANSITION=o.DomUtil.testProp(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),o.DomUtil.TRANSITION_END="webkitTransition"===o.DomUtil.TRANSITION||"OTransition"===o.DomUtil.TRANSITION?o.DomUtil.TRANSITION+"End":"transitionend",function(){if("onselectstart"in e)o.extend(o.DomUtil,{disableTextSelection:function(){o.DomEvent.on(t,"selectstart",o.DomEvent.preventDefault)},enableTextSelection:function(){o.DomEvent.off(t,"selectstart",o.DomEvent.preventDefault)}});else{var i=o.DomUtil.testProp(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]);o.extend(o.DomUtil,{disableTextSelection:function(){if(i){var t=e.documentElement.style;this._userSelect=t[i],t[i]="none"}},enableTextSelection:function(){i&&(e.documentElement.style[i]=this._userSelect,delete this._userSelect)}})}o.extend(o.DomUtil,{disableImageDrag:function(){o.DomEvent.on(t,"dragstart",o.DomEvent.preventDefault)},enableImageDrag:function(){o.DomEvent.off(t,"dragstart",o.DomEvent.preventDefault)}})}(),o.LatLng=function(t,e,n){if(t=parseFloat(t),e=parseFloat(e),isNaN(t)||isNaN(e))throw new Error("Invalid LatLng object: ("+t+", "+e+")");this.lat=t,this.lng=e,n!==i&&(this.alt=parseFloat(n))},o.extend(o.LatLng,{DEG_TO_RAD:Math.PI/180,RAD_TO_DEG:180/Math.PI,MAX_MARGIN:1e-9}),o.LatLng.prototype={equals:function(t){if(!t)return!1;t=o.latLng(t);var e=Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng));return e<=o.LatLng.MAX_MARGIN},toString:function(t){return"LatLng("+o.Util.formatNum(this.lat,t)+", "+o.Util.formatNum(this.lng,t)+")"},distanceTo:function(t){t=o.latLng(t);var e=6378137,i=o.LatLng.DEG_TO_RAD,n=(t.lat-this.lat)*i,s=(t.lng-this.lng)*i,a=this.lat*i,r=t.lat*i,h=Math.sin(n/2),l=Math.sin(s/2),u=h*h+l*l*Math.cos(a)*Math.cos(r);return 2*e*Math.atan2(Math.sqrt(u),Math.sqrt(1-u))},wrap:function(t,e){var i=this.lng;return t=t||-180,e=e||180,i=(i+e)%(e-t)+(t>i||i===e?e:t),new o.LatLng(this.lat,i)}},o.latLng=function(t,e){return t instanceof o.LatLng?t:o.Util.isArray(t)?"number"==typeof t[0]||"string"==typeof t[0]?new o.LatLng(t[0],t[1],t[2]):null:t===i||null===t?t:"object"==typeof t&&"lat"in t?new o.LatLng(t.lat,"lng"in t?t.lng:t.lon):e===i?null:new o.LatLng(t,e)},o.LatLngBounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.LatLngBounds.prototype={extend:function(t){if(!t)return this;var e=o.latLng(t);return t=null!==e?e:o.latLngBounds(t),t instanceof o.LatLng?this._southWest||this._northEast?(this._southWest.lat=Math.min(t.lat,this._southWest.lat),this._southWest.lng=Math.min(t.lng,this._southWest.lng),this._northEast.lat=Math.max(t.lat,this._northEast.lat),this._northEast.lng=Math.max(t.lng,this._northEast.lng)):(this._southWest=new o.LatLng(t.lat,t.lng),this._northEast=new o.LatLng(t.lat,t.lng)):t instanceof o.LatLngBounds&&(this.extend(t._southWest),this.extend(t._northEast)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,s=Math.abs(e.lng-i.lng)*t;return new o.LatLngBounds(new o.LatLng(e.lat-n,e.lng-s),new o.LatLng(i.lat+n,i.lng+s))},getCenter:function(){return new o.LatLng((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new o.LatLng(this.getNorth(),this.getWest())},getSouthEast:function(){return new o.LatLng(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof o.LatLng?o.latLng(t):o.latLngBounds(t);var e,i,n=this._southWest,s=this._northEast;return t instanceof o.LatLngBounds?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=s.lat&&e.lng>=n.lng&&i.lng<=s.lng},intersects:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),a=s.lat>=e.lat&&n.lat<=i.lat,r=s.lng>=e.lng&&n.lng<=i.lng;return a&&r},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t){return t?(t=o.latLngBounds(t),this._southWest.equals(t.getSouthWest())&&this._northEast.equals(t.getNorthEast())):!1},isValid:function(){return!(!this._southWest||!this._northEast)}},o.latLngBounds=function(t,e){return!t||t instanceof o.LatLngBounds?t:new o.LatLngBounds(t,e)},o.Projection={},o.Projection.SphericalMercator={MAX_LATITUDE:85.0511287798,project:function(t){var e=o.LatLng.DEG_TO_RAD,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=t.lng*e,a=n*e;return a=Math.log(Math.tan(Math.PI/4+a/2)),new o.Point(s,a)},unproject:function(t){var e=o.LatLng.RAD_TO_DEG,i=t.x*e,n=(2*Math.atan(Math.exp(t.y))-Math.PI/2)*e;return new o.LatLng(n,i)}},o.Projection.LonLat={project:function(t){return new o.Point(t.lng,t.lat)},unproject:function(t){return new o.LatLng(t.y,t.x)}},o.CRS={latLngToPoint:function(t,e){var i=this.projection.project(t),n=this.scale(e);return this.transformation._transform(i,n)},pointToLatLng:function(t,e){var i=this.scale(e),n=this.transformation.untransform(t,i);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},scale:function(t){return 256*Math.pow(2,t)},getSize:function(t){var e=this.scale(t);return o.point(e,e)}},o.CRS.Simple=o.extend({},o.CRS,{projection:o.Projection.LonLat,transformation:new o.Transformation(1,0,-1,0),scale:function(t){return Math.pow(2,t)}}),o.CRS.EPSG3857=o.extend({},o.CRS,{code:"EPSG:3857",projection:o.Projection.SphericalMercator,transformation:new o.Transformation(.5/Math.PI,.5,-.5/Math.PI,.5),project:function(t){var e=this.projection.project(t),i=6378137;return e.multiplyBy(i)}}),o.CRS.EPSG900913=o.extend({},o.CRS.EPSG3857,{code:"EPSG:900913"}),o.CRS.EPSG4326=o.extend({},o.CRS,{code:"EPSG:4326",projection:o.Projection.LonLat,transformation:new o.Transformation(1/360,.5,-1/360,.5)}),o.Map=o.Class.extend({includes:o.Mixin.Events,options:{crs:o.CRS.EPSG3857,fadeAnimation:o.DomUtil.TRANSITION&&!o.Browser.android23,trackResize:!0,markerZoomAnimation:o.DomUtil.TRANSITION&&o.Browser.any3d},initialize:function(t,e){e=o.setOptions(this,e),this._initContainer(t),this._initLayout(),this._onResize=o.bind(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),e.center&&e.zoom!==i&&this.setView(o.latLng(e.center),e.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._tileLayersNum=0,this.callInitHooks(),this._addLayers(e.layers)},setView:function(t,e){return e=e===i?this.getZoom():e,this._resetView(o.latLng(t),this._limitZoom(e)),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=this._limitZoom(t),this)},zoomIn:function(t,e){return this.setZoom(this._zoom+(t||1),e)},zoomOut:function(t,e){return this.setZoom(this._zoom-(t||1),e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),s=this.getSize().divideBy(2),a=t instanceof o.Point?t:this.latLngToContainerPoint(t),r=a.subtract(s).multiplyBy(1-1/n),h=this.containerPointToLatLng(s.add(r));return this.setView(h,e,{zoom:i})},fitBounds:function(t,e){e=e||{},t=t.getBounds?t.getBounds():o.latLngBounds(t);var i=o.point(e.paddingTopLeft||e.padding||[0,0]),n=o.point(e.paddingBottomRight||e.padding||[0,0]),s=this.getBoundsZoom(t,!1,i.add(n));s=e.maxZoom?Math.min(e.maxZoom,s):s;var a=n.subtract(i).divideBy(2),r=this.project(t.getSouthWest(),s),h=this.project(t.getNorthEast(),s),l=this.unproject(r.add(h).divideBy(2).add(a),s);return this.setView(l,s,e)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t){return this.fire("movestart"),this._rawPanBy(o.point(t)),this.fire("move"),this.fire("moveend")},setMaxBounds:function(t){return t=o.latLngBounds(t),this.options.maxBounds=t,t?(this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds,this)):this.off("moveend",this._panInsideMaxBounds,this)},panInsideBounds:function(t,e){var i=this.getCenter(),n=this._limitCenter(i,this._zoom,t);return i.equals(n)?this:this.panTo(n,e)},addLayer:function(t){var e=o.stamp(t);return this._layers[e]?this:(this._layers[e]=t,!t.options||isNaN(t.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment