<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="//d3js.org/d3.v3.min.js"></script>
    <script src="//d3js.org/queue.v1.min.js"></script>
    <script src="//d3js.org/topojson.v1.min.js"></script>
  </head>

  <body>
    <script src="script.js"></script>
  </body>

</html>
// Code goes here

var width = 960,
    height = 500;

var path = d3.geo.path();

var svg = d3.select("body").append("svg")
    .attr("width", width)
    .attr("height", height);

d3.json("counties.json", function(error, topology) {
  
  console.clear();
  //var topology = JSON.stringify(data)
  console.log(topology);

  var featureCollection = topojson.feature(topology, topology.objects.counties);
  var bounds = d3.geo.bounds(featureCollection);
  
  var centerX = d3.sum(bounds, function(d) {return d[0];}) / 2,
      centerY = d3.sum(bounds, function(d) {return d[1];}) / 2;

  var projection = d3.geo.mercator()
    .scale(3000)
    .center([centerX, centerY]);
    
  path.projection(projection);
  
  svg.selectAll("path")
      .data(featureCollection.features)
      .enter().append("path")
      .attr("d", path);
});
/* Styles go here */

[
  {
    "PAG": "Global Banking Tech",
    "Projects": 1,
    "High Level Design": 2,
    "Low Level Design": 4,
    "Business Requirements": 6,
    "Change Impact Document": 7,
    "Deployment Document": 9,
    "MAC Architecture Decisions": 1
  },
  {
    "PAG": "WMT Tech PQM",
    "Projects": 1,
    "High Level Design": 0,
    "Low Level Design": 0,
    "Business Requirements": 0,
    "Change Impact Document": 0,
    "Deployment Document": 0,
    "MAC Architecture Decisions": 1
  }
]
<html>
<head>
    <title>jsonp test</title>
    <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>      
    <script src="//d3js.org/d3.v3.min.js"></script>
</head>
<body>
    <script>
        var graphdata = [{
	"PAG": "Global Banking Tech",
	"artifact": "Projects",
	"count" : 1
}, {
	"PAG": "Global Banking Tech",
	"artifact": "High Level Design",
	"count" : 0
}, {
	"PAG": "Global Banking Tech",
	"artifact": "Low Level Design",
	"count" : 0
}, {
	"PAG": "Global Banking Tech",
	"artifact": "Business Requirements",
	"count" : 10
}, {
	"PAG": "Global Banking Tech",
	"artifact": "Change Impact Document",
	"count" : 0
}, {
	"PAG": "Global Banking Tech",
	"artifact": "Deployment Document",
	"count" : 6
}, {
	"PAG": "Global Banking Tech",
	"artifact": "MAC Architecture Decisions",
	"count" : 3
}];
        
        var margin = {top: 20, right: 20, bottom: 30, left: 40},
            width = 960 - margin.left - margin.right,
            height = 500 - margin.top - margin.bottom;

        var  date_format = d3.time.format("%d %b");

        var x = d3.scale.ordinal()
            .rangeRoundBands([0, width], .1);

        var y = d3.scale.linear()
            .range([height, 0]);

        var xAxis = d3.svg.axis()
            .scale(x)
            .orient("bottom");

        //left hand side of bar scale
        var yAxis = d3.svg.axis()
            .scale(y)
            .orient("left")
            .ticks(10); //zero based

        var svg = d3.select("body").append("svg")
            .attr("width", width + margin.left + margin.right)
            .attr("height", height + margin.top + margin.bottom)
        .append("g")
            .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
            dashboard(graphdata)
        });  //ajax
        
                
function dashboard(PAGdetails) {
    var data = JSON.parse(PAGdetails);

    var margin = { top: 20, right: 20, bottom: 30, left: 40 },
        width = parseInt(d3.select("#chartdiv").style("width")) - margin.left - margin.right,
        height = parseInt(d3.select("#chartdiv").style("height")) - margin.top - margin.bottom,
        padding = 100;

    var barPadding = 1;

    //var ageNames = d3.keys(keysLen(data)).filter(function (d) {
    //    return d != "PAG"
    //});

    var ageNames = d3.keys(data[0]).filter(function (key) {
        return key !== "PAG";
    });


    var data = (data.sort(function (d) { return d.Count }).filter(function (d) {
        return d.PAG !== "NA"
    }));


    var x0 = d3.scale.ordinal().domain(data.map(function (d) { return d.PAG; }))
      .rangeRoundBands([0, width], .1);

    //var x0 = d3.scale.ordinal()
    //    .rangeRoundBands([0, width], .1);

    var x1 = d3.scale.ordinal();

    var y = d3.scale.linear().range([height, 0]).nice();

    var p = d3.scale.category20();
    var r = p.range(); // ["#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", 
    var color = d3.scale.ordinal().range(r);



    var xAxis = d3.svg.axis()
        .scale(x0)
         .tickSize(0)
        //.tickPadding(8)
        .orient("bottom");


    var yAxis = d3.svg.axis()
        .scale(y)
        .orient("left")
    .tickFormat(d3.format(".0d"));

    //var yAxis = d3.svg.axis()
    //    .scale(y)
    //    .orient("left")
    //.tickFormat(d3.format(".2"));

    ////add tooltip------------------------------------------------
    var tooltip = d3.select("#chartdiv")
        .append("div")
        .attr("class", "d3-tip")
        .style("position", "absolute")
        .style("opacity", 0);


    var svg = d3.select("#chartdiv").append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
        .append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")");


    data.forEach(function (d) {
        d.ages = ageNames.map(function (name) {
            return { name: name, value: +d[name] };
        });
    });


    x0.domain(data.map(function (d) { return d.PAG; }));
    //x0.domain(data.map(function (d) { return d.PAG; })).rangeRoundBands([0, width - padding], .1);
    x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]);

    y.domain([0, d3.max(data, function (d) { return d3.max(d.ages, function (d) { return d.value; }); }) + 5]).nice().range([height - padding, 0]);

    var gXAxis = svg.append("g")
        .attr("class", "x axis")
        .attr("transform", "translate(0," + (height - padding) + ")")
        .call(xAxis);

    gXAxis.selectAll("text")
        .style("text-anchor", "end")
        .attr("dx", "-.8em")
        .attr("dy", ".15em")
        .attr("transform", "translate(" + x1.rangeBand() + ")rotate(-30)");

    // xAxis label
    svg.append("text")
        .attr("transform", "translate(" + (width / 2) + " ," + (height + margin.bottom - 5) + ")")
        .style("text-anchor", "middle")
        .attr("class", "subtitle")
        .text("Process Area Group");

    svg.append("g")
        .attr("class", "y axis")
        .call(yAxis)
        .append("text")
        .attr("transform", "rotate(-90)")
        .attr("x", -(height - padding) / 2)
        .attr("y", 0 - margin.left)
        //.attr("y", -margin.bottom)
        .attr("dy", "1em")
        .style("text-anchor", "middle")
        .text("Artifacts")
        .attr("class", "subtitle");

    var PAG = svg.selectAll(".PAG")
        .data(data)
        .enter().append("g")
        .attr("class", "PAG")
        .attr("transform", function (d) { return "translate(" + x0(d.PAG) + ",0)"; });

    PAG.selectAll("rect")
            .data(function (d) {
                return d.ages;
            })
            .enter().append("rect")
            .attr("width", x1.rangeBand())
            .attr("x", function (d) { return x1(d.name); })
            .attr("y", function (d) { return y(d.value); })
            .attr("height", function (d) { return height - padding - y(d.value); })
            .style("fill", function (d) { return color(d.name); })
            .on("mouseover", function (d) {
                var pos = d3.mouse(this);
                tooltip
                    .transition()
                    .duration(500)
                    .style("opacity", 1);
                tooltip.html('<strong>' + d.name + ':' + '</strong>' + '<span style=color:#1F497D>' + d.value + '</span>')
                        .style("left", d3.event.x + "px")
                        .style("top", d3.event.y + "px")

            })
             .on("mouseout", function () {
                 tooltip.style("opacity", 0);
             });


    PAG.each(function (data) {
        d3.select(this).selectAll("rect")

        .on("click", function (drect) {
            var PAG = data.PAG;
            getpAGDetails(PAG, data);
        });

    });

    addBarLegend(svg, ageNames,width,color,margin);
}
function addBarLegend(svg, ageNames, width, color, margin) {
    //Adding Legend for the Grouped Bar Chart

    var legend = svg.selectAll(".legend")
        .data(ageNames.slice().reverse())
        .enter().append("g")
        .attr("class", "legend")
        .attr("transform", function (d, i) {
            return "translate(0," + i * 20 + ")";
        });

    legend.append("rect")
        .attr("x", width - 10)
        .attr("width", 15)
        .attr("height", 15)
        .style("fill", color);

    legend.append("text")
        .attr("x", width - 14)
        .attr("y", 9)
        .attr("dy", ".35em")
        .style("text-anchor", "end")
        .text(function (d) { return d; });

    svg.append("text")
   .text("Project Artifacts By PAG")
   .attr("x", width / 2)
   .attr("y", 0 - (margin.top / 2))
   .attr("text-anchor", "middle")
   .style("text-decoration", "underline")
   .attr("class", "title");
}

    </script>    
</body>
function dashboard() {
        var test = [{
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "Projects",
                  	"count" : 1
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "High Level Design",
                  	"count" : 0
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "Low Level Design",
                  	"count" : 0
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "Business Requirements",
                  	"count" : 10
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "Change Impact Document",
                  	"count" : 0
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "Deployment Document",
                  	"count" : 6
                  }, {
                  	"PAG": "Global Banking Tech",
                  	"DocumentName": "MAC Architecture Decisions",
                  	"count" : 3
                  }];

   var json = JSON.stringify(test); 

    var data = JSON.parse(json);
    console.log(data);

    var margin = { top: 20, right: 20, bottom: 30, left: 40 },
        width = parseInt(d3.select("#chartdiv").style("width")) - margin.left - margin.right,
        height = parseInt(d3.select("#chartdiv").style("height")) - margin.top - margin.bottom,
        padding = 100;

    var barPadding = 1;

    //var ageNames = d3.keys(keysLen(data)).filter(function (d) {
    //    return d != "PAG"
    //});

    var ageNames = d3.keys(data[0]).filter(function (key) {
        return key !== "PAG";
    });


    var data = (data.sort(function (d) { return d.Count }).filter(function (d) {
        return d.PAG !== "NA"
    }));


    var x0 = d3.scale.ordinal().domain(data.map(function (d) { return d.PAG; }))
      .rangeRoundBands([0, width], .1);

    //var x0 = d3.scale.ordinal()
    //    .rangeRoundBands([0, width], .1);

    var x1 = d3.scale.ordinal();

    var y = d3.scale.linear().range([height, 0]).nice();

    var p = d3.scale.category20();
    var r = p.range(); // ["#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd", 
    var color = d3.scale.ordinal().range(r);



    var xAxis = d3.svg.axis()
        .scale(x0)
         .tickSize(0)
        //.tickPadding(8)
        .orient("bottom");


    var yAxis = d3.svg.axis()
        .scale(y)
        .orient("left")
    .tickFormat(d3.format(".0d"));

    //var yAxis = d3.svg.axis()
    //    .scale(y)
    //    .orient("left")
    //.tickFormat(d3.format(".2"));

    ////add tooltip------------------------------------------------
    var tooltip = d3.select("#chartdiv")
        .append("div")
        .attr("class", "d3-tip")
        .style("position", "absolute")
        .style("opacity", 0);


    var svg = d3.select("#chartdiv").append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
        .append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")");


    data.forEach(function (d) {
        d.ages = ageNames.map(function (name) {
            return { name: name, value: +d[name] };
        });
    });


    x0.domain(data.map(function (d) { return d.PAG; }));
    //x0.domain(data.map(function (d) { return d.PAG; })).rangeRoundBands([0, width - padding], .1);
    x1.domain(ageNames).rangeRoundBands([0, x0.rangeBand()]);

    y.domain([0, d3.max(data, function (d) { return d3.max(d.ages, function (d) { return d.value; }); }) + 5]).nice().range([height - padding, 0]);

    var gXAxis = svg.append("g")
        .attr("class", "x axis")
        .attr("transform", "translate(0," + (height - padding) + ")")
        .call(xAxis);

    gXAxis.selectAll("text")
        .style("text-anchor", "end")
        .attr("dx", "-.8em")
        .attr("dy", ".15em")
        .attr("transform", "translate(" + x1.rangeBand() + ")rotate(-30)");

    // xAxis label
    svg.append("text")
        .attr("transform", "translate(" + (width / 2) + " ," + (height + margin.bottom - 5) + ")")
        .style("text-anchor", "middle")
        .attr("class", "subtitle")
        .text("Process Area Group");

    svg.append("g")
        .attr("class", "y axis")
        .call(yAxis)
        .append("text")
        .attr("transform", "rotate(-90)")
        .attr("x", -(height - padding) / 2)
        .attr("y", 0 - margin.left)
        //.attr("y", -margin.bottom)
        .attr("dy", "1em")
        .style("text-anchor", "middle")
        .text("Artifacts")
        .attr("class", "subtitle");

    var PAG = svg.selectAll(".PAG")
        .data(data)
        .enter().append("g")
        .attr("class", "PAG")
        .attr("transform", function (d) { return "translate(" + x0(d.PAG) + ",0)"; });

    PAG.selectAll("rect")
            .data(function (d) {
                return d.ages;
            })
            .enter().append("rect")
            .attr("width", x1.rangeBand())
            .attr("x", function (d) { return x1(d.name); })
            .attr("y", function (d) { return y(d.value); })
            .attr("height", function (d) { return height - padding - y(d.value); })
            .style("fill", function (d) { return color(d.name); })
            .on("mouseover", function (d) {
                var pos = d3.mouse(this);
                tooltip
                    .transition()
                    .duration(500)
                    .style("opacity", 1);
                tooltip.html('<strong>' + d.name + ':' + '</strong>' + '<span style=color:#1F497D>' + d.value + '</span>')
                        .style("left", d3.event.x + "px")
                        .style("top", d3.event.y + "px")

            })
             .on("mouseout", function () {
                 tooltip.style("opacity", 0);
             });


    PAG.each(function (data) {
        d3.select(this).selectAll("rect")

        .on("click", function (drect) {
            var PAG = data.PAG;
            getpAGDetails(PAG, data);
        });

    });

    addBarLegend(svg, ageNames,width,color,margin);
}
function addBarLegend(svg, ageNames, width, color, margin) {
    //Adding Legend for the Grouped Bar Chart

    var legend = svg.selectAll(".legend")
        .data(ageNames.slice().reverse())
        .enter().append("g")
        .attr("class", "legend")
        .attr("transform", function (d, i) {
            return "translate(0," + i * 20 + ")";
        });

    legend.append("rect")
        .attr("x", width - 10)
        .attr("width", 15)
        .attr("height", 15)
        .style("fill", color);

    legend.append("text")
        .attr("x", width - 14)
        .attr("y", 9)
        .attr("dy", ".35em")
        .style("text-anchor", "end")
        .text(function (d) { return d; });

    svg.append("text")
   .text("Project Artifacts By PAG")
   .attr("x", width / 2)
   .attr("y", 0 - (margin.top / 2))
   .attr("text-anchor", "middle")
   .style("text-decoration", "underline")
   .attr("class", "title");
}
PAG,Projects, High Level Design, Low Level Design, Business Requirements, Change Impact Document, Deployment Document, MAC Architecture Decisions
Global Banking Tech,1, 2, 4, 6, 7, 9, 1
WMT Tech PQM,1, 0, 0, 0, 0, 0, 1
{
	"type": "Topology",
	"objects": {
		"subunitsny": {
			"type": "GeometryCollection",
			"geometries": [{
				"type": "Polygon",
				"properties": {
					"name": "Clinton"
				},
				"id": "019",
				"arcs": [
					[0, 1, 2]
				]
			}, {
				"type": "Polygon",
				"properties": {
					"name": "Franklin"
				},
				"id": "033",
				"arcs": [
					[-3, 3, 4, 5, 6]
				]
			}, {
				"type": "Polygon",
				"properties": {
					"name": "Essex"
				},
				"id": "031",
				"arcs": [
					[7, 8, -4, -2, 9, 10]
				]
			}, {
				"type": "Polygon",
				"properties": {
					"name": "Hamilton"
				},
				"id": "041",
				"arcs": [
					[11, 12, 13, 14, -5, -9, 15]
				]
			}, {
				"type": "Polygon",
				"properties": {
					"name": "Herkimer"
				},
				"id": "043",
				"arcs": [
					[-14, 16, 17, 18, 19, 20, 21]
				]
			}]
		}
	}
}
{
	"type": "Topology",
	"transform": {
		"scale": [0.032229964456445645, 0.006392461796179619],
		"translate": [-176.6460306, 7.367222]
	},
	"objects": {
		"airports": {
			"type": "MultiPoint",
			"coordinates": [
				[2712, 3846],
				[2532, 3647],
				[2236, 4939],
				[3059, 5533],
				[2939, 3648],
				[2744, 4243],
				[2793, 3986],
				[2744, 5587],
				[2978, 5210],
				[2619, 5174],
				[2708, 4155],
				[2491, 6181],
				[2769, 5342],
				[2446, 3762],
				[1881, 5042],
				[2822, 3925],
				[2747, 5416],
				[2389, 6494],
				[2709, 4093],
				[3172, 5328],
				[1923, 5414],
				[2841, 5309],
				[2534, 3936],
				[2849, 5507],
				[2438, 5279],
				[2802, 3936],
				[2303, 6403],
				[2437, 5206],
				[2702, 3972],
				[2746, 3872],
				[2954, 3708],
				[2398, 5360],
				[2685, 4164],
				[3091, 4927],
				[2818, 4476],
				[2778, 3999],
				[2931, 4537],
				[426, 8536],
				[3283, 5797],
				[2463, 5512],
				[3230, 5510],
				[3221, 5748],
				[3245, 5300],
				[2730, 5480],
				[2479, 5435],
				[2804, 5472],
				[2379, 5885],
				[2191, 4320],
				[2123, 4434],
				[2447, 4103],
				[2409, 5306],
				[2514, 4383],
				[2497, 4506],
				[2481, 4196],
				[3038, 5590],
				[2496, 5167],
				[2858, 5334],
				[3098, 5555],
				[2381, 4949],
				[2865, 4849],
				[2836, 3790],
				[2802, 3703],
				[2833, 3754],
				[2556, 5532],
				[1843, 4747],
				[1902, 4442],
				[1929, 4527],
				[2640, 4148],
				[2746, 4422],
				[2746, 4480],
				[2758, 4497],
				[2691, 4223],
				[2651, 3982],
				[1737, 4814],
				[1690, 5096],
				[1702, 4875],
				[1631, 5109],
				[1701, 5186],
				[2694, 3743],
				[2767, 3699],
				[2623, 3536],
				[2641, 3785],
				[2605, 3847],
				[2585, 3851],
				[1775, 6506],
				[1670, 6364],
				[2190, 4876],
				[2410, 5185],
				[3029, 4657],
				[2358, 5622],
				[2060, 4590],
				[2738, 5480],
				[2562, 5879],
				[2938, 5188],
				[3180, 5359],
				[1875, 5410],
				[2828, 3835],
				[3015, 5296],
				[2748, 5425],
				[2846, 3759],
				[2490, 3574],
				[2716, 5401],
				[2617, 6327],
				[2779, 3704],
				[2438, 5112],
				[2566, 5799],
				[2835, 5644],
				[2493, 4768],
				[3160, 5256],
				[2809, 3761],
				[2662, 4038],
				[2537, 6027],
				[2386, 4039],
				[2891, 3718],
				[2745, 4287],
				[1046, 8458],
				[440, 8375],
				[2898, 5276],
				[2861, 3813],
				[1654, 5573],
				[2906, 5227],
				[2847, 3698],
				[2300, 4600],
				[2694, 3831],
				[3152, 5058],
				[545, 8075],
				[2901, 4219],
				[2862, 4588],
				[2888, 4193],
				[2687, 4029],
				[3155, 5070],
				[1335, 7659],
				[2863, 4325],
				[2892, 4357],
				[2882, 4574],
				[2823, 4541],
				[2796, 3922],
				[3332, 5888],
				[3193, 5463],
				[3207, 5670],
				[3271, 5417],
				[2746, 5370],
				[2484, 5923],
				[2891, 5472],
				[2414, 5637],
				[2542, 5844],
				[2455, 5932],
				[2423, 5865],
				[2467, 4189],
				[2467, 4178],
				[2477, 4188],
				[2445, 4037],
				[2886, 5322],
				[2954, 5285],
				[1949, 4477],
				[2943, 5281],
				[3118, 5602],
				[2672, 4905],
				[2733, 4959],
				[2632, 4865],
				[2750, 4995],
				[3182, 5474],
				[2791, 5189],
				[2824, 3672],
				[2452, 4299],
				[2456, 4346],
				[2413, 4567],
				[2347, 4706],
				[2670, 3554],
				[1930, 4758],
				[2019, 4752],
				[1980, 4770],
				[2618, 4296],
				[2672, 4032],
				[2762, 4210],
				[2797, 4571],
				[2722, 4561],
				[2616, 4654],
				[3223, 5234],
				[3160, 4982],
				[3153, 5256],
				[3138, 5194],
				[2471, 6144],
				[2417, 4203],
				[1667, 4946],
				[1718, 4823],
				[2417, 4437],
				[1687, 5302],
				[2621, 3801],
				[2675, 3791],
				[2756, 3676],
				[1686, 6216],
				[2172, 6085],
				[1758, 6094],
				[1853, 6386],
				[2026, 5456],
				[2140, 4605],
				[2323, 5419],
				[2215, 5111],
				[2219, 4859],
				[2127, 4914],
				[2800, 4161],
				[2733, 4030],
				[3185, 5415],
				[2254, 6187],
				[2180, 5113],
				[2599, 5886],
				[2435, 4045],
				[3215, 5382],
				[2922, 4999],
				[2718, 4209],
				[3130, 5231],
				[2942, 3583],
				[2727, 3866],
				[3214, 5223],
				[2410, 3405],
				[2899, 4372],
				[2904, 3587],
				[2164, 4608],
				[2848, 3806],
				[2718, 4279],
				[2436, 2983],
				[2818, 4054],
				[3165, 4989],
				[2484, 3384],
				[1828, 5418],
				[2911, 4181],
				[2494, 5844],
				[2947, 4214],
				[2861, 4828],
				[2946, 3487],
				[2993, 5284],
				[2959, 5294],
				[2044, 5894],
				[2845, 4398],
				[2845, 4533],
				[703, 7847],
				[406, 8707],
				[657, 8446],
				[3240, 5634],
				[3328, 5850],
				[3238, 5712],
				[2964, 5256],
				[2437, 6070],
				[2318, 3971],
				[2501, 4534],
				[2505, 4055],
				[2630, 3971],
				[2976, 5161],
				[3009, 5098],
				[3019, 5039],
				[3029, 5111],
				[2724, 5012],
				[2573, 4629],
				[2769, 4691],
				[2746, 5150],
				[2966, 3030],
				[2947, 3819],
				[2924, 4007],
				[2937, 3993],
				[2857, 3634],
				[2324, 4726],
				[2392, 4305],
				[725, 8764],
				[2754, 4653],
				[2773, 4359],
				[2539, 4391],
				[2704, 3908],
				[2690, 4366],
				[1728, 5096],
				[1681, 4882],
				[1749, 4653],
				[1813, 4606],
				[2429, 4401],
				[2783, 5947],
				[1699, 4882],
				[2730, 3798],
				[2781, 3640],
				[2741, 3619],
				[2444, 3356],
				[1680, 6271],
				[1665, 5933],
				[1699, 5508],
				[1796, 6317],
				[2296, 4195],
				[2159, 4678],
				[2217, 5130],
				[2308, 5120],
				[2293, 5121],
				[3089, 4885],
				[3105, 4841],
				[1145, 8165],
				[2545, 5478],
				[2295, 3959],
				[3266, 5437],
				[1942, 6125],
				[2816, 3705],
				[2698, 4192],
				[3135, 4982],
				[1807, 6219],
				[2938, 4245],
				[2817, 5500],
				[1736, 5979],
				[2339, 4787],
				[1652, 5385],
				[2023, 5180],
				[2621, 4505],
				[3037, 4381],
				[479, 8916],
				[1981, 6104],
				[2018, 4848],
				[3164, 5167],
				[2757, 3804],
				[2785, 4208],
				[2888, 4543],
				[2996, 4326],
				[2468, 4740],
				[3245, 5433],
				[3322, 5959],
				[3288, 5433],
				[3231, 5321],
				[2866, 5677],
				[2740, 5450],
				[2877, 5659],
				[2649, 6073],
				[2775, 5908],
				[2806, 5828],
				[2571, 3864],
				[2563, 3988],
				[2489, 4448],
				[2812, 5642],
				[2405, 5892],
				[2944, 5261],
				[2928, 5246],
				[3087, 5610],
				[2806, 5579],
				[2933, 4935],
				[2862, 5091],
				[2967, 3930],
				[2901, 4103],
				[2476, 4955],
				[2323, 4790],
				[2694, 4906],
				[2336, 4863],
				[2709, 5129],
				[2698, 4974],
				[2810, 4560],
				[2750, 4070],
				[2623, 4097],
				[2700, 5229],
				[3174, 5156],
				[2504, 6240],
				[2452, 6313],
				[1727, 4676],
				[2459, 4319],
				[2388, 4348],
				[2427, 4224],
				[1713, 4618],
				[2537, 4569],
				[2446, 3284],
				[2506, 3379],
				[2611, 3565],
				[2580, 3782],
				[2605, 3578],
				[1643, 5433],
				[1652, 5497],
				[1752, 5925],
				[2878, 5641],
				[2672, 4924],
				[2625, 5893],
				[2472, 3526],
				[2805, 5392],
				[1978, 6067],
				[1978, 6275],
				[2064, 6381],
				[2260, 5157],
				[2733, 5853],
				[2632, 5571],
				[2563, 5318],
				[1278, 8113],
				[2887, 3551],
				[3126, 5101],
				[2077, 5259],
				[2017, 4999],
				[2631, 4490],
				[2819, 5661],
				[2935, 3516],
				[2217, 6374],
				[3005, 4383],
				[3332, 5915],
				[3192, 5371],
				[3006, 4305],
				[2911, 5373],
				[2556, 3593],
				[2874, 4300],
				[2404, 6270],
				[3189, 5415],
				[2861, 4214],
				[2999, 4277],
				[3166, 5186],
				[2363, 5204],
				[2896, 3915],
				[2851, 5704],
				[2978, 4899],
				[2380, 4865],
				[2105, 6445],
				[2221, 5106],
				[2858, 4264],
				[2477, 3974],
				[1930, 4248],
				[2620, 5680],
				[445, 8369],
				[2838, 4169],
				[2605, 4463],
				[2812, 4274],
				[2864, 4070],
				[2821, 4240],
				[3189, 5505],
				[3180, 5536],
				[3203, 5711],
				[3192, 5709],
				[3220, 5369],
				[3222, 5404],
				[2602, 5260],
				[2851, 5538],
				[2398, 5122],
				[2554, 3880],
				[2534, 3962],
				[2986, 5331],
				[3032, 5527],
				[2964, 5070],
				[3070, 5477],
				[2993, 5018],
				[2928, 4743],
				[2920, 5156],
				[2787, 5047],
				[2910, 5186],
				[2939, 3730],
				[2898, 3730],
				[2887, 3666],
				[2950, 3658],
				[698, 8200],
				[749, 7908],
				[2613, 5219],
				[352, 8323],
				[2576, 4539],
				[2635, 4292],
				[2612, 4416],
				[2787, 4604],
				[2645, 4267],
				[2668, 4542],
				[3174, 5281],
				[2460, 4595],
				[2537, 4152],
				[2429, 4601],
				[2054, 4446],
				[2704, 3699],
				[2753, 3770],
				[2754, 3612],
				[2664, 6166],
				[2613, 3613],
				[2746, 3581],
				[1620, 5482],
				[1709, 5992],
				[1842, 5942],
				[1677, 5920],
				[1761, 5052],
				[2473, 3924],
				[2037, 6436],
				[2205, 6265],
				[2106, 5119],
				[2229, 4744],
				[2438, 5435],
				[3042, 4260],
				[523, 8575],
				[1447, 7592],
				[2768, 5223],
				[2997, 4038],
				[2496, 5123],
				[2450, 3517],
				[2417, 6098],
				[846, 9038],
				[2891, 4105],
				[2201, 3952],
				[2991, 4204],
				[2508, 4891],
				[2807, 3654],
				[2851, 5837],
				[2953, 3636],
				[1705, 6137],
				[2895, 5243],
				[2584, 4846],
				[1636, 6046],
				[3342, 5777],
				[2738, 5542],
				[3301, 5985],
				[2727, 4168],
				[2696, 4082],
				[559, 8121],
				[2853, 3999],
				[3189, 5582],
				[3249, 5389],
				[3197, 5525],
				[839, 9495],
				[2870, 5573],
				[2336, 4041],
				[2595, 3976],
				[3062, 5571],
				[2878, 5243],
				[3010, 5163],
				[2885, 5376],
				[838, 8375],
				[2805, 5132],
				[1789, 5793],
				[3033, 4180],
				[2323, 4863],
				[2783, 4230],
				[2647, 4207],
				[2614, 4142],
				[2746, 4688],
				[2464, 6177],
				[2469, 6256],
				[691, 8705],
				[608, 8035],
				[676, 8230],
				[2441, 3618],
				[2759, 3607],
				[2497, 3423],
				[2580, 3609],
				[450, 8779],
				[2468, 3866],
				[2170, 3834],
				[2362, 3361],
				[1058, 8723],
				[2016, 5929],
				[2059, 6293],
				[2108, 4588],
				[2331, 5704],
				[3013, 4432],
				[1310, 7967],
				[795, 8787],
				[2401, 4111],
				[3047, 4151],
				[2770, 3850],
				[1917, 4470],
				[2725, 5568],
				[1674, 5969],
				[1663, 5699],
				[2969, 5303],
				[2471, 3567],
				[1736, 5611],
				[1355, 7734],
				[2694, 5724],
				[1823, 6441],
				[2924, 4044],
				[1872, 6469],
				[2273, 5795],
				[1942, 4609],
				[1373, 7680],
				[1814, 6302],
				[2866, 3942],
				[2866, 4045],
				[2878, 4353],
				[2942, 4544],
				[745, 9258],
				[3212, 5728],
				[3148, 5577],
				[3261, 5489],
				[3246, 5819],
				[3109, 5560],
				[2835, 5596],
				[2439, 6190],
				[2530, 4276],
				[3006, 5356],
				[2961, 5105],
				[2835, 4734],
				[2959, 4134],
				[2982, 4040],
				[2942, 4154],
				[2443, 5491],
				[2425, 4524],
				[1045, 8754],
				[2939, 4769],
				[2634, 4513],
				[2636, 5125],
				[2663, 4288],
				[2675, 4406],
				[3185, 5221],
				[3185, 5219],
				[2360, 5411],
				[2532, 3596],
				[725, 7798],
				[2419, 3663],
				[2068, 6013],
				[1630, 5727],
				[2091, 5985],
				[1939, 6082],
				[2106, 5997],
				[2258, 5620],
				[2942, 4645],
				[2308, 5729],
				[2112, 4829],
				[2869, 3679],
				[2824, 3764],
				[1837, 6236],
				[2667, 5539],
				[2978, 3917],
				[2975, 5086],
				[1674, 6434],
				[2066, 5148],
				[2885, 3804],
				[2918, 5530],
				[2902, 5622],
				[1664, 5719],
				[2891, 5646],
				[2996, 4974],
				[2800, 3745],
				[2048, 6332],
				[2760, 3960],
				[2751, 3925],
				[2836, 3980],
				[2832, 4030],
				[2936, 4470],
				[3227, 5469],
				[2900, 5502],
				[2494, 4015],
				[2531, 4102],
				[2453, 3824],
				[2421, 3840],
				[3063, 5602],
				[2965, 5331],
				[2882, 5169],
				[2919, 4723],
				[1282, 8147],
				[2786, 4707],
				[2487, 5488],
				[929, 8369],
				[2646, 4106],
				[2578, 4249],
				[2688, 4430],
				[2569, 4402],
				[2683, 4538],
				[2685, 3533],
				[3088, 5445],
				[3141, 5063],
				[1940, 6289],
				[1996, 5970],
				[1658, 5866],
				[2039, 6122],
				[1997, 6403],
				[2188, 4919],
				[2423, 5118],
				[3124, 4410],
				[2513, 4196],
				[3293, 5755],
				[2684, 5705],
				[2249, 5285],
				[2851, 6026],
				[2339, 5884],
				[1377, 7567],
				[2466, 3545],
				[2083, 4432],
				[2422, 4341],
				[2673, 3991],
				[2713, 5590],
				[2731, 5555],
				[2959, 4009],
				[1910, 6507],
				[2915, 5355],
				[2804, 4202],
				[2804, 4228],
				[2833, 4543],
				[3288, 5885],
				[2746, 5721],
				[2471, 5991],
				[2822, 5594],
				[2449, 5870],
				[2454, 5735],
				[2453, 4049],
				[3009, 5403],
				[2967, 5142],
				[2993, 5230],
				[2367, 4765],
				[1393, 7512],
				[2730, 4258],
				[1937, 6308],
				[1742, 6280],
				[3005, 3993],
				[2213, 6165],
				[2021, 6095],
				[2407, 5505],
				[2569, 5911],
				[2695, 5620],
				[2513, 4346],
				[3349, 5758],
				[2679, 5618],
				[2387, 4417],
				[2467, 5297],
				[2567, 4588],
				[2487, 4523],
				[2443, 6503],
				[1350, 7626],
				[2237, 6024],
				[2374, 5840],
				[2964, 4057],
				[2423, 5348],
				[2879, 4108],
				[540, 8481],
				[2770, 4269],
				[2834, 4274],
				[2961, 4289],
				[597, 7846],
				[2834, 5714],
				[2395, 5815],
				[2396, 5608],
				[2268, 5977],
				[2401, 6432],
				[2832, 5521],
				[3038, 5552],
				[3004, 5199],
				[3045, 5577],
				[3043, 5602],
				[3036, 5177],
				[2687, 5139],
				[2897, 4778],
				[677, 8144],
				[2570, 4914],
				[2432, 4908],
				[2436, 4739],
				[2712, 4057],
				[2644, 3986],
				[2615, 4217],
				[2209, 6482],
				[1917, 6226],
				[2019, 6024],
				[2087, 6286],
				[1767, 5957],
				[2117, 6489],
				[1844, 5021],
				[2145, 5267],
				[2302, 5533],
				[2324, 5600],
				[2399, 5694],
				[3122, 4541],
				[2823, 4191],
				[587, 8062],
				[1281, 7772],
				[1668, 5348],
				[1696, 5400],
				[433, 8286],
				[508, 8088],
				[554, 7647],
				[418, 8214],
				[2842, 3497],
				[2464, 4752],
				[2833, 4691],
				[1740, 5336],
				[3140, 5206],
				[2387, 3917],
				[3412, 1733],
				[2173, 4329],
				[2427, 5957],
				[2868, 3780],
				[2837, 5885],
				[2868, 3870],
				[3307, 5300],
				[2578, 5742],
				[2464, 3792],
				[1630, 5257],
				[3166, 5020],
				[3060, 4278],
				[2526, 6113],
				[2872, 5397],
				[2481, 4292],
				[0, 6963],
				[2470, 4213],
				[749, 7881],
				[2476, 4004],
				[2345, 5079],
				[2535, 5371],
				[2167, 4345],
				[2583, 5680],
				[2609, 3748],
				[1326, 7758],
				[2989, 5126],
				[2506, 5199],
				[583, 9345],
				[3246, 5543],
				[2038, 5529],
				[2461, 4007],
				[3000, 5160],
				[1305, 7843],
				[2588, 4045],
				[2937, 4067],
				[2430, 5584],
				[2614, 5931],
				[2895, 4158],
				[1303, 7646],
				[2483, 5299],
				[2291, 5426],
				[2824, 5121],
				[2715, 5911],
				[2946, 4111],
				[2531, 5325],
				[2574, 6129],
				[2744, 4026],
				[3170, 5004],
				[2609, 4807],
				[566, 7656],
				[2758, 4886],
				[1831, 4150],
				[2888, 4244],
				[542, 7593],
				[75, 7016],
				[2962, 4354],
				[478, 8375],
				[696, 7754],
				[620, 8026],
				[2278, 5132],
				[772, 9506],
				[2953, 5267],
				[1351, 7542],
				[2769, 3933],
				[3190, 5534],
				[2439, 3187],
				[2192, 3984],
				[2686, 4931],
				[2613, 5504],
				[2196, 4703],
				[1810, 6058],
				[2813, 3996],
				[2325, 4357],
				[2920, 3780],
				[2853, 5624],
				[2887, 4925],
				[2575, 5416],
				[2816, 4101],
				[826, 8417],
				[2914, 4243],
				[2588, 5909],
				[530, 8480],
				[2840, 5361],
				[510, 8647],
				[2378, 5508],
				[2437, 4660],
				[1964, 5668],
				[2873, 5215],
				[3050, 5151],
				[2227, 5037],
				[1686, 4825],
				[2943, 2938],
				[2888, 5899],
				[2825, 4332],
				[1844, 4256],
				[1351, 7538],
				[458, 8195],
				[795, 9830],
				[3210, 5526],
				[853, 8384],
				[2629, 3546],
				[2882, 5452],
				[964, 9503],
				[2659, 4498],
				[2735, 5382],
				[3122, 5729],
				[2696, 6032],
				[2693, 3594],
				[2164, 4983],
				[2560, 4506],
				[3261, 5540],
				[3086, 4525],
				[2554, 3934],
				[2810, 4098],
				[1637, 6068],
				[2817, 5304],
				[2659, 6129],
				[2558, 4025],
				[596, 9871],
				[2861, 4110],
				[2239, 3986],
				[2734, 5770],
				[2466, 5873],
				[3315, 5780],
				[2440, 5244],
				[371, 8652],
				[2597, 5678],
				[1723, 4941],
				[2830, 3949],
				[2450, 3570],
				[2699, 5875],
				[3059, 4586],
				[2419, 4600],
				[2919, 4390],
				[2951, 3163],
				[3131, 5314],
				[2030, 3917],
				[1806, 4073],
				[2636, 5304],
				[516, 9897],
				[2681, 4343],
				[1690, 6381],
				[2555, 5586],
				[2520, 6022],
				[2398, 4275],
				[2865, 5182],
				[2213, 4545],
				[2924, 3735],
				[1974, 4629],
				[2916, 3835],
				[2826, 5454],
				[3207, 5640],
				[1780, 5011],
				[3106, 5586],
				[3294, 5646],
				[3302, 5900],
				[3224, 5442],
				[2815, 4989],
				[1854, 5198],
				[2906, 5696],
				[2438, 3494],
				[2513, 5938],
				[2399, 3724],
				[3006, 4263],
				[2389, 5329],
				[2985, 4668],
				[2001, 4746],
				[2661, 5769],
				[2995, 2974],
				[841, 8455],
				[2545, 6470],
				[2083, 4726],
				[3225, 5408],
				[2604, 4344],
				[3211, 5286],
				[2210, 5954],
				[3268, 5491],
				[2799, 5437],
				[459, 8355],
				[3040, 5386],
				[2266, 5398],
				[1686, 6282],
				[2389, 4614],
				[1786, 4390],
				[2748, 3638],
				[2798, 4923],
				[2644, 6238],
				[2334, 4432],
				[2854, 3692],
				[2810, 4350],
				[3123, 5450],
				[832, 8473],
				[3345, 5856],
				[3359, 5800],
				[2924, 3808],
				[2245, 6097],
				[2789, 4097],
				[3259, 5287],
				[2478, 5152],
				[959, 8858],
				[1808, 4693],
				[2113, 6013],
				[2354, 6164],
				[2809, 5534],
				[2219, 5090],
				[2535, 6279],
				[2940, 5241],
				[2412, 3965],
				[1825, 5861],
				[2946, 5342],
				[2922, 3301],
				[2963, 4758],
				[2476, 5778],
				[2961, 4681],
				[1921, 4106],
				[1678, 6480],
				[3180, 5134],
				[2693, 4877],
				[2003, 5347],
				[2793, 4971],
				[2722, 5179],
				[3272, 5820],
				[2432, 3656],
				[2557, 3551],
				[2791, 4498],
				[1297, 7778],
				[1855, 4154],
				[2955, 4050],
				[1789, 5666],
				[2568, 5425],
				[1874, 5662],
				[1624, 5429],
				[3277, 5474],
				[2943, 3218],
				[2064, 5509],
				[2611, 4536],
				[2563, 3532],
				[2953, 3737],
				[3397, 1740],
				[2560, 6105],
				[2653, 5227],
				[2457, 2900],
				[616, 9999],
				[2828, 4762],
				[3339, 5794],
				[1026, 9818],
				[2835, 5465],
				[1990, 6036],
				[2448, 6014],
				[3000, 5226],
				[779, 9315],
				[3211, 5804],
				[1857, 4613],
				[2404, 5382],
				[3037, 5564],
				[2553, 4837],
				[1808, 4197],
				[3014, 4486],
				[2986, 5225],
				[480, 9169],
				[2438, 5375],
				[2501, 4598],
				[1682, 6430],
				[2637, 4436],
				[3280, 5509],
				[1896, 4008],
				[2410, 3821],
				[2799, 4630],
				[3102, 4975],
				[2483, 6082],
				[2692, 3667],
				[2936, 4016],
				[1984, 4075],
				[1102, 8871],
				[2169, 5790],
				[1950, 5502],
				[2032, 6008],
				[2665, 5300],
				[889, 8245],
				[2737, 5327],
				[2698, 5181],
				[2640, 5422],
				[2755, 5336],
				[2610, 5533],
				[2702, 5592],
				[2742, 5180],
				[2688, 5656],
				[2704, 5661],
				[2740, 5525],
				[2760, 5320],
				[2835, 5335],
				[2803, 5318],
				[2668, 5250],
				[2655, 3743],
				[2705, 5391],
				[2707, 5264],
				[2724, 5468],
				[1748, 4504],
				[2748, 5468],
				[1707, 4765],
				[2808, 5416],
				[2830, 5773],
				[2963, 4156],
				[2144, 5182],
				[2953, 5248],
				[2280, 4548],
				[3370, 6179],
				[2571, 5533],
				[3037, 5044],
				[2509, 5301],
				[2587, 5974],
				[2345, 5015],
				[1829, 4183],
				[2850, 4058],
				[1693, 4790],
				[2607, 5585],
				[431, 7483],
				[1971, 4745],
				[2602, 4107],
				[2949, 5100],
				[2904, 3405],
				[2981, 4210],
				[2282, 5548],
				[967, 8310],
				[3176, 5241],
				[1626, 5383],
				[3230, 5448],
				[2473, 5201],
				[988, 9105],
				[2909, 4271],
				[2839, 5057],
				[2796, 3662],
				[2738, 4583],
				[2110, 4682],
				[2491, 3652],
				[2783, 5101],
				[383, 8256],
				[2092, 4002],
				[2515, 4650],
				[1349, 7526],
				[2918, 3363],
				[3121, 4876],
				[2952, 5349],
				[2701, 4670],
				[3094, 4945],
				[2762, 5395],
				[2013, 4002],
				[2837, 4328],
				[2011, 4051],
				[2441, 4337],
				[3046, 4813],
				[993, 9091],
				[2997, 3993],
				[2579, 5070],
				[2641, 5667],
				[1699, 5072],
				[2635, 5399],
				[2000, 6329],
				[1021, 9273],
				[2539, 5424],
				[2712, 4645],
				[2859, 6082],
				[3065, 4874],
				[574, 8525],
				[2991, 4994],
				[2676, 6331],
				[2881, 3851],
				[3003, 4122],
				[2672, 4213],
				[2482, 6331],
				[2515, 5532],
				[959, 8318],
				[2768, 4576],
				[1076, 8870],
				[1841, 4029],
				[2941, 5325],
				[2727, 5826],
				[2411, 4406],
				[2490, 3632],
				[1648, 6375],
				[561, 8052],
				[1665, 6149],
				[2969, 4356],
				[2913, 3224],
				[1785, 4199],
				[2908, 5104],
				[2741, 5111],
				[2735, 6226],
				[2665, 5724],
				[2584, 5264],
				[3235, 5632],
				[2450, 5034],
				[2245, 3906],
				[1830, 4162],
				[2301, 5273],
				[2518, 4740],
				[2468, 3796],
				[2075, 4910],
				[2098, 5811],
				[1856, 6321],
				[2977, 3281],
				[2396, 3828],
				[3262, 5605],
				[2610, 6153],
				[2232, 4918],
				[2402, 3299],
				[2619, 4919],
				[3038, 4208],
				[3112, 4583],
				[1812, 4149],
				[2177, 5559],
				[2683, 4881],
				[3454, 1712],
				[2857, 5180],
				[2476, 4435],
				[3309, 5369],
				[1010, 9145],
				[3038, 4136],
				[2951, 3593],
				[1770, 4495],
				[2455, 3191],
				[1841, 4029],
				[2489, 3857],
				[2630, 4037],
				[2949, 4850],
				[2731, 4309],
				[2373, 5152],
				[2845, 3934],
				[2402, 4375],
				[2552, 5264],
				[2840, 4471],
				[1994, 6451],
				[2838, 4108],
				[2686, 5193],
				[2902, 3483],
				[3049, 4318],
				[2967, 4161],
				[2478, 4471],
				[2746, 4806],
				[2265, 5688],
				[2853, 4955],
				[2639, 4520],
				[2282, 4232],
				[1655, 5808],
				[2834, 5934],
				[2698, 5852],
				[2590, 3573],
				[2678, 5391],
				[2940, 3883],
				[999, 8481],
				[3045, 4602],
				[820, 9367],
				[1896, 3958],
				[2520, 3595],
				[1765, 4978],
				[2867, 3730],
				[3096, 5138],
				[2906, 5029],
				[2228, 5285],
				[2466, 5009],
				[2377, 5240],
				[3119, 5430],
				[2845, 4237],
				[1073, 8557],
				[2383, 3309],
				[2271, 6072],
				[2333, 6302],
				[2315, 5892],
				[2365, 6486],
				[2495, 5671],
				[3029, 5521],
				[2692, 6062],
				[3081, 5559],
				[2533, 5766],
				[2275, 6501],
				[2427, 6474],
				[2320, 6170],
				[2288, 6415],
				[2884, 4132],
				[3041, 5562],
				[2846, 5953],
				[2897, 5584],
				[2906, 5542],
				[2965, 3412],
				[1857, 4299],
				[2475, 3985],
				[3019, 4568],
				[3280, 5618],
				[2867, 5089],
				[2906, 3941],
				[2666, 5480],
				[3090, 4925],
				[612, 9319],
				[2783, 4268],
				[2777, 4901],
				[2379, 4754],
				[3208, 5557],
				[2723, 5079],
				[2958, 3394],
				[430, 9182],
				[2634, 5617],
				[2233, 5082],
				[2551, 4173],
				[2905, 5481],
				[1837, 6351],
				[2861, 5314],
				[2470, 3993],
				[2210, 5542],
				[2829, 3747],
				[2299, 4482],
				[2291, 6168],
				[2728, 5407],
				[3021, 5494],
				[2878, 4473],
				[562, 8084],
				[2620, 6175],
				[2695, 5655],
				[1988, 5927],
				[1781, 4439],
				[1721, 5983],
				[2901, 5148],
				[238, 9134],
				[2138, 3894],
				[2589, 4902],
				[3091, 5043],
				[2935, 4082],
				[2847, 4279],
				[2521, 5415],
				[2762, 5136],
				[3139, 4968],
				[2742, 5403],
				[3061, 4322],
				[2909, 3771],
				[2584, 3670],
				[2137, 4659],
				[2349, 3442],
				[2574, 5345],
				[3069, 5507],
				[1989, 5008],
				[2505, 6172],
				[2572, 3937],
				[2465, 4041],
				[2797, 3603],
				[2894, 5450],
				[2489, 4157],
				[2441, 4239],
				[2080, 3770],
				[3032, 5289],
				[313, 7279],
				[2315, 4456],
				[427, 8227],
				[2850, 4725],
				[2411, 6374],
				[2670, 5356],
				[1678, 4814],
				[2003, 4117],
				[2516, 3550],
				[2913, 4878],
				[2690, 4600],
				[3200, 5319],
				[2496, 5884],
				[2989, 4019],
				[3149, 5156],
				[2706, 4478],
				[2624, 6156],
				[2287, 3788],
				[2277, 3924],
				[2154, 3956],
				[2272, 4002],
				[2276, 4050],
				[2299, 3905],
				[2422, 4027],
				[2333, 4515],
				[2068, 4136],
				[1980, 4161],
				[2280, 3873],
				[2187, 3777],
				[2263, 3600],
				[2341, 4513],
				[1969, 4259],
				[2303, 4359],
				[2018, 3979],
				[1984, 4003],
				[2166, 4267],
				[2248, 4380],
				[2081, 4496],
				[2102, 4065],
				[2056, 3853],
				[1101, 8980],
				[2225, 5426],
				[2408, 5218],
				[1751, 6262],
				[2642, 5865],
				[2568, 5486],
				[3117, 4519],
				[2244, 5712],
				[3105, 4483],
				[2815, 3743],
				[1924, 4286],
				[454, 8267],
				[3238, 5558],
				[2133, 5112],
				[2788, 4037],
				[2258, 5845],
				[2528, 3479],
				[3239, 5869],
				[2701, 5513],
				[2553, 5419],
				[2163, 5048],
				[2542, 5590],
				[2459, 4686],
				[2711, 6032],
				[2319, 4635],
				[2948, 4362],
				[2760, 4761],
				[597, 7950],
				[2700, 4562],
				[1629, 5230],
				[2812, 5373],
				[3003, 4931],
				[1888, 5233],
				[2847, 4612],
				[2814, 4743],
				[2783, 4058],
				[2492, 3478],
				[2601, 4044],
				[446, 8955],
				[2396, 4389],
				[3095, 5442],
				[1741, 6205],
				[2631, 6328],
				[2180, 3823],
				[1250, 7951],
				[1917, 4995],
				[3060, 5434],
				[2050, 5390],
				[2496, 4843],
				[1818, 4179],
				[3076, 4586],
				[788, 8323],
				[2716, 4872],
				[377, 8669],
				[855, 8945],
				[1942, 5217],
				[2752, 5510],
				[2644, 5176],
				[2552, 4605],
				[1772, 6248],
				[3401, 5872],
				[2476, 4756],
				[2979, 4325],
				[2993, 5430],
				[2406, 3536],
				[2829, 6092],
				[2778, 6000],
				[2617, 3758],
				[3120, 4917],
				[2541, 5637],
				[2746, 5640],
				[3074, 4469],
				[2485, 6009],
				[2415, 3918],
				[2839, 3845],
				[1657, 5749],
				[1861, 5674],
				[2969, 3392],
				[2610, 6266],
				[2535, 5160],
				[2764, 4797],
				[2035, 5304],
				[3131, 5029],
				[3279, 5367],
				[2462, 4800],
				[3090, 4334],
				[3179, 5213],
				[372, 8380],
				[1278, 7986],
				[2989, 4444],
				[2803, 5078],
				[2944, 2688],
				[2689, 5293],
				[2901, 3886],
				[2555, 5062],
				[2496, 4105],
				[2385, 4209],
				[2400, 4201],
				[2372, 4298],
				[2513, 4369],
				[2501, 4386],
				[2537, 3875],
				[2559, 3827],
				[2457, 3908],
				[2361, 4281],
				[2462, 4539],
				[2586, 3954],
				[2439, 4396],
				[2445, 4399],
				[2471, 4248],
				[2482, 4165],
				[2456, 4205],
				[2410, 4370],
				[2940, 3151],
				[2481, 4121],
				[2481, 3904],
				[2507, 3879],
				[2991, 3047],
				[2488, 3998],
				[2326, 4085],
				[2524, 4000],
				[2525, 4043],
				[2445, 3922],
				[2386, 3995],
				[1846, 4099],
				[2497, 4228],
				[2493, 4389],
				[2530, 4367],
				[2293, 4123],
				[2615, 3966],
				[2603, 3885],
				[2635, 3877],
				[2419, 4407],
				[2489, 4336],
				[893, 8986],
				[2675, 4754],
				[224, 1071],
				[2476, 6187],
				[1766, 4600],
				[3033, 4321],
				[2585, 5781],
				[2055, 5322],
				[2465, 5133],
				[1935, 6405],
				[1763, 4593],
				[3075, 4699],
				[2581, 5860],
				[2664, 4313],
				[3080, 5013],
				[2409, 4221],
				[2964, 4215],
				[2884, 5263],
				[2701, 5456],
				[2486, 5331],
				[3132, 4481],
				[2856, 4065],
				[2626, 5269],
				[2497, 6087],
				[2846, 4820],
				[2014, 4081],
				[2882, 4876],
				[1663, 6438],
				[2057, 3789],
				[3047, 5268],
				[3254, 5504],
				[3002, 5320],
				[3094, 4588],
				[2795, 5147],
				[2735, 5694],
				[2015, 4344],
				[2993, 2926],
				[3007, 4195],
				[2608, 4524],
				[578, 8617],
				[1796, 5026],
				[3099, 4961],
				[2122, 4595],
				[2940, 3006],
				[2453, 5196],
				[2514, 5117],
				[2222, 5175],
				[1295, 7960],
				[2882, 5568],
				[2736, 4896],
				[2558, 5504],
				[2512, 4940],
				[3227, 5236],
				[1629, 5191],
				[2987, 3148],
				[2938, 4389],
				[3203, 5218],
				[2792, 4871],
				[2551, 5674],
				[3052, 4935],
				[2479, 5665],
				[2509, 6292],
				[2540, 4760],
				[2552, 4375],
				[3212, 5877],
				[2287, 3683],
				[2247, 4241],
				[2647, 5208],
				[2237, 5071],
				[2626, 4923],
				[2459, 3981],
				[2858, 4131],
				[1820, 4146],
				[3361, 6244],
				[3047, 4691],
				[2837, 5257],
				[2737, 4851],
				[3165, 5292],
				[2461, 3941],
				[2993, 2945],
				[2575, 5610],
				[2707, 4354],
				[2794, 4331],
				[974, 9261],
				[2558, 4479],
				[2897, 3803],
				[2893, 5291],
				[3110, 5629],
				[1820, 4936],
				[2809, 4161],
				[2459, 6419],
				[2385, 4525],
				[3086, 4974],
				[611, 8974],
				[152, 8822],
				[2931, 4922],
				[2413, 4845],
				[2674, 5251],
				[842, 9559],
				[3203, 5446],
				[2206, 5785],
				[2355, 4780],
				[2518, 4525],
				[2001, 4471],
				[2550, 5368],
				[2911, 4509],
				[3246, 5503],
				[2228, 6221],
				[2859, 5726],
				[2932, 4671],
				[3142, 4899],
				[1834, 6296],
				[2878, 4929],
				[1996, 4092],
				[2127, 5811],
				[2818, 5039],
				[2465, 6348],
				[3196, 5627],
				[2550, 5312],
				[3019, 4058],
				[2324, 5240],
				[2542, 3913],
				[2603, 5372],
				[2800, 5216],
				[2172, 6389],
				[2767, 4453],
				[2523, 5987],
				[2944, 3237],
				[2113, 4967],
				[2991, 5359],
				[967, 8570],
				[2889, 4456],
				[2468, 3957],
				[2325, 5006],
				[2465, 4111],
				[2657, 4085],
				[2852, 5889],
				[2537, 3425],
				[2813, 4640],
				[2574, 4847],
				[2541, 4573],
				[2925, 4298],
				[2194, 5118],
				[2694, 4140],
				[1919, 5561],
				[2132, 4348],
				[467, 8095],
				[2928, 3492],
				[2458, 4455],
				[3245, 5312],
				[2554, 5000],
				[2469, 3962],
				[2717, 3604],
				[2579, 6232],
				[2914, 5222],
				[2746, 5806],
				[2931, 4205],
				[2707, 4922],
				[2430, 5256],
				[2445, 3707],
				[2310, 5543],
				[974, 1064],
				[2827, 5555],
				[2818, 5343],
				[959, 1212],
				[3000, 4494],
				[2929, 4306],
				[1270, 7987],
				[2025, 6275],
				[2732, 4080],
				[2450, 3646],
				[2162, 4875],
				[988, 956],
				[2105, 4402],
				[2331, 4586],
				[2879, 4208],
				[3055, 5579],
				[2500, 4020],
				[2685, 4087],
				[2451, 6077],
				[3061, 4394],
				[2234, 5173],
				[2924, 4284],
				[1994, 4075],
				[2768, 5357],
				[2780, 3762],
				[2779, 4346],
				[2528, 4578],
				[2520, 4310],
				[2650, 5006],
				[2604, 4788],
				[3136, 5549],
				[2582, 4396],
				[2631, 4973],
				[2481, 4365],
				[2513, 4591],
				[2522, 4514],
				[2608, 4848],
				[2679, 4730],
				[2490, 4546],
				[2721, 4793],
				[2477, 4539],
				[2750, 4184],
				[2643, 5061],
				[1679, 4715],
				[2825, 5411],
				[2858, 5005],
				[480, 9047],
				[2330, 6476],
				[2711, 3738],
				[2407, 4321],
				[2417, 3125],
				[2625, 4402],
				[2552, 5864],
				[2472, 6474],
				[2675, 3622],
				[2398, 5175],
				[572, 2223],
				[2848, 4357],
				[2154, 5180],
				[2403, 3440],
				[2667, 4256],
				[3075, 4904],
				[2295, 6045],
				[2307, 5193],
				[2648, 3792],
				[3226, 5376],
				[2809, 5046],
				[3069, 5059],
				[2365, 4462],
				[2829, 5238],
				[2976, 3888],
				[1809, 4154],
				[2516, 4171],
				[533, 2321],
				[2600, 6260],
				[3260, 5788],
				[2574, 4959],
				[1932, 4255],
				[1666, 5971],
				[2452, 5128],
				[1769, 4528],
				[2693, 4469],
				[2681, 3905],
				[2955, 4438],
				[2383, 5007],
				[2978, 5132],
				[2006, 6138],
				[2973, 4598],
				[1849, 4124],
				[3044, 5118],
				[2782, 4830],
				[1279, 7935],
				[580, 2182],
				[640, 2100],
				[2522, 5352],
				[1275, 8115],
				[3044, 4535],
				[2278, 3960],
				[2888, 4977],
				[2912, 3705],
				[780, 8178],
				[2433, 5790],
				[2592, 4241],
				[2524, 3485],
				[325, 8472],
				[3193, 5271],
				[2588, 5530],
				[2335, 4661],
				[1635, 6195],
				[2920, 4092],
				[2485, 3970],
				[1780, 6016],
				[2450, 2950],
				[2590, 4520],
				[858, 8838],
				[2477, 4898],
				[2305, 4300],
				[2705, 3598],
				[2733, 4762],
				[3134, 4359],
				[2426, 5199],
				[628, 9125],
				[3003, 4784],
				[2272, 5631],
				[2788, 4266],
				[1799, 4877],
				[2853, 5786],
				[3239, 5254],
				[2919, 4849],
				[2771, 5019],
				[3377, 6062],
				[2667, 3472],
				[694, 9178],
				[2444, 4802],
				[2767, 4613],
				[2045, 4857],
				[3219, 5302],
				[2075, 6441],
				[2994, 4229],
				[1691, 4738],
				[1299, 7940],
				[2991, 2915],
				[2072, 6114],
				[3220, 5232],
				[2976, 3888],
				[2738, 5628],
				[3300, 5366],
				[1359, 7483],
				[2444, 3523],
				[1365, 7526],
				[2643, 6047],
				[2400, 4924],
				[3025, 4139],
				[2736, 4493],
				[2329, 6245],
				[3122, 5259],
				[2642, 3652],
				[2977, 5383],
				[2751, 4720],
				[2869, 5142],
				[2950, 4729],
				[2942, 4937],
				[2874, 5056],
				[2845, 5131],
				[2892, 5037],
				[2951, 4700],
				[2888, 4812],
				[2827, 4999],
				[2894, 4613],
				[2864, 4734],
				[2941, 5153],
				[2798, 4883],
				[2918, 4945],
				[2879, 4768],
				[2907, 4974],
				[2663, 5102],
				[2878, 5027],
				[2850, 4988],
				[2866, 5020],
				[2868, 4960],
				[2882, 5125],
				[2573, 5269],
				[2807, 5227],
				[2894, 5140],
				[2808, 4886],
				[2930, 5056],
				[2731, 5249],
				[2798, 4758],
				[2885, 5200],
				[3077, 4939],
				[3031, 5590],
				[2522, 3537],
				[502, 9325],
				[2264, 5290],
				[2532, 5217],
				[2457, 4737],
				[2003, 5654],
				[3026, 5203],
				[2667, 4085],
				[2509, 4660],
				[866, 8355],
				[2300, 5577],
				[2592, 3812],
				[2586, 5491],
				[1926, 4347],
				[643, 8127],
				[1945, 4363],
				[2764, 5345],
				[371, 8307],
				[2627, 5488],
				[391, 8223],
				[2911, 4131],
				[3241, 5377],
				[2680, 5069],
				[2755, 5272],
				[2577, 5369],
				[2449, 3710],
				[3134, 5054],
				[674, 8195],
				[3063, 4208],
				[2327, 5184],
				[2955, 2982],
				[2829, 4910],
				[2746, 6015],
				[2807, 5068],
				[2803, 5060],
				[2278, 3818],
				[2582, 6444],
				[2991, 4500],
				[2045, 4326],
				[2875, 4801],
				[2640, 5361],
				[2962, 4398],
				[1894, 3983],
				[3094, 5299],
				[2609, 5119],
				[2829, 5388],
				[2954, 3273],
				[2265, 6384],
				[3072, 4374],
				[3212, 5229],
				[2807, 6039],
				[2693, 5786],
				[2862, 4987],
				[3108, 5494],
				[670, 1932],
				[2307, 4986],
				[2016, 4058],
				[2684, 6126],
				[2818, 5224],
				[3317, 5724],
				[265, 9113],
				[2512, 3512],
				[2536, 4921],
				[1824, 4425],
				[841, 8479],
				[1755, 4261],
				[3279, 5729],
				[2044, 5669],
				[2686, 3902],
				[2563, 3679],
				[2869, 4531],
				[2946, 3617],
				[2668, 4452],
				[2385, 3620],
				[2162, 6252],
				[2621, 4884],
				[1929, 5531],
				[2940, 3783],
				[3191, 5204],
				[2771, 4150],
				[619, 2126],
				[3021, 5441],
				[2760, 3585],
				[2481, 6174],
				[2895, 4728],
				[2548, 4659],
				[2586, 6025],
				[2419, 6188],
				[1305, 7976],
				[3048, 4407],
				[2744, 5342],
				[2976, 4382],
				[3184, 5222],
				[3184, 5214],
				[576, 2180],
				[2526, 3832],
				[3034, 5154],
				[2718, 5514],
				[2820, 4849],
				[2427, 4457],
				[2784, 4507],
				[2860, 5458],
				[2546, 5728],
				[2949, 3954],
				[2856, 5405],
				[3074, 4960],
				[2451, 5245],
				[2998, 3963],
				[2860, 4236],
				[601, 8190],
				[2508, 5165],
				[2692, 4771],
				[2675, 5100],
				[3168, 5645],
				[2605, 4809],
				[2897, 4696],
				[2916, 4753],
				[2840, 4636],
				[401, 8999],
				[2638, 4731],
				[2534, 4918],
				[2658, 4850],
				[2498, 5326],
				[319, 9053],
				[2521, 5174],
				[2527, 5037],
				[2436, 5022],
				[2862, 4902],
				[2531, 4660],
				[2526, 4835],
				[2463, 4933],
				[2535, 4876],
				[2415, 5067],
				[2509, 5089],
				[2521, 4771],
				[2611, 5062],
				[2740, 5070],
				[1324, 7760],
				[555, 8910],
				[1359, 7608],
				[561, 7656],
				[767, 8132],
				[594, 8132],
				[410, 7427],
				[514, 8686],
				[532, 7591],
				[1722, 4514],
				[480, 9005],
				[753, 7950],
				[505, 8473],
				[613, 8095],
				[1667, 6061],
				[1989, 4637],
				[599, 8147],
				[639, 1935],
				[1334, 7662],
				[432, 7366],
				[336, 7315],
				[414, 8555],
				[1368, 7559],
				[1394, 7507],
				[315, 9067],
				[446, 7469],
				[375, 9443],
				[471, 8359],
				[1372, 7535],
				[688, 7852],
				[587, 8996],
				[1904, 3984],
				[1806, 4436],
				[1854, 4551],
				[1871, 4050],
				[1846, 4179],
				[1908, 4475],
				[1774, 4344],
				[1842, 4065],
				[1777, 4419],
				[1840, 4225],
				[2688, 3610],
				[1855, 4207],
				[2659, 3567],
				[2584, 3723],
				[2604, 3657],
				[1788, 4373],
				[2680, 3453],
				[1738, 4338],
				[1838, 4186],
				[1809, 4245],
				[1819, 4346],
				[1840, 4449],
				[2583, 3561],
				[2662, 3501],
				[1767, 4420],
				[1906, 4692],
				[2294, 4802],
				[2783, 5169],
				[2936, 3225],
				[2183, 4460],
				[2856, 5539],
				[2202, 5310],
				[1907, 4491],
				[2427, 4255],
				[1806, 4157],
				[2321, 4113],
				[3017, 5148],
				[2356, 5281],
				[2348, 4642],
				[2606, 4736],
				[3027, 4261],
				[2518, 3401],
				[2471, 5455],
				[2588, 3560],
				[3264, 5663],
				[2907, 5075],
				[2918, 3569],
				[3177, 5201],
				[2799, 5724],
				[3237, 5672],
				[2942, 3356],
				[2312, 6030],
				[3300, 5738],
				[2855, 4797],
				[2540, 3733],
				[2626, 3572],
				[3188, 5226],
				[1814, 4137],
				[2841, 4011],
				[1819, 5932],
				[2010, 5384],
				[827, 8418],
				[1715, 4934],
				[2916, 5066],
				[3078, 5282],
				[2269, 4800],
				[3050, 4482],
				[2264, 4991],
				[536, 2285],
				[2619, 4280],
				[2548, 5902],
				[3185, 5771],
				[2972, 4279],
				[3061, 4793],
				[1745, 5442],
				[1936, 5812],
				[2634, 4109],
				[2554, 4712],
				[2717, 4032],
				[1703, 5442],
				[2996, 3007],
				[2479, 3944],
				[2107, 5545],
				[2478, 5238],
				[2712, 6067],
				[2955, 5368],
				[2920, 4633],
				[3113, 5123],
				[611, 2099],
				[1802, 5115],
				[2747, 5356],
				[2822, 4827],
				[2872, 4649],
				[1743, 4270],
				[2931, 5315],
				[2914, 4292],
				[2406, 4824],
				[2394, 3156],
				[3354, 5943],
				[2496, 5539],
				[2163, 3898],
				[2108, 3905],
				[2649, 5711],
				[2241, 5535],
				[1730, 4645],
				[2787, 4402],
				[2861, 4964],
				[2714, 3802],
				[610, 2165],
				[2525, 3465],
				[1701, 4744],
				[2053, 5996],
				[2588, 5828],
				[2218, 4425],
				[2986, 4769],
				[2526, 4950],
				[2567, 5203],
				[1915, 5279],
				[3274, 5529],
				[1850, 6102],
				[2084, 6207],
				[2762, 4911],
				[2553, 6035],
				[2385, 5228],
				[2552, 4942],
				[2182, 4982],
				[2486, 3797],
				[3023, 4686],
				[2433, 4845],
				[2875, 4162],
				[2686, 4354],
				[2768, 4499],
				[2613, 4335],
				[2701, 4413],
				[2698, 4506],
				[2718, 4356],
				[2666, 4655],
				[2676, 3838],
				[2703, 3663],
				[2754, 4415],
				[2675, 3900],
				[2584, 4728],
				[2574, 4122],
				[2651, 4422],
				[2776, 4670],
				[2759, 4236],
				[2715, 3902],
				[2714, 3672],
				[2732, 4599],
				[2560, 4303],
				[2751, 4382],
				[2727, 4664],
				[2647, 4063],
				[2799, 4538],
				[2741, 4637],
				[2651, 4303],
				[2672, 4131],
				[2557, 4251],
				[2735, 4146],
				[2703, 4292],
				[2691, 3790],
				[2718, 4149],
				[2169, 6020],
				[2627, 4687],
				[2738, 4424],
				[2723, 4448],
				[2802, 4508],
				[2563, 4620],
				[2721, 3746],
				[2648, 4365],
				[2664, 4358],
				[2658, 4517],
				[2718, 4251],
				[2642, 4230],
				[2132, 6413],
				[2699, 3616],
				[2569, 4165],
				[2602, 4218],
				[2633, 3929],
				[2795, 4300],
				[2729, 4101],
				[2593, 4181],
				[2783, 4563],
				[2756, 4121],
				[2677, 4274],
				[2607, 4253],
				[2888, 3982],
				[1754, 4633],
				[2309, 3844],
				[2837, 3671],
				[3174, 5864],
				[3019, 4194],
				[2688, 4573],
				[3397, 1703],
				[2365, 5972],
				[2804, 5773],
				[2685, 3922],
				[2872, 5657],
				[2800, 4459],
				[2613, 5021],
				[2673, 3724],
				[2854, 6022],
				[1741, 4680],
				[652, 8695],
				[2542, 4995],
				[2359, 5137],
				[2885, 3961],
				[2957, 3294],
				[2585, 5598],
				[2788, 5215],
				[3086, 4457],
				[2312, 3859],
				[2403, 4554],
				[2711, 4757],
				[680, 8719],
				[2468, 5733],
				[3099, 5135],
				[2758, 5384],
				[2678, 5902],
				[3018, 4290],
				[2727, 3905],
				[2367, 4679],
				[2689, 4329],
				[1739, 4695],
				[1765, 4948],
				[2508, 5445],
				[2920, 5233],
				[2432, 2942],
				[2682, 5830],
				[1668, 5476],
				[3130, 4736],
				[2786, 5371],
				[3176, 5341],
				[2800, 3900],
				[2880, 3710],
				[3001, 5049],
				[2867, 5040],
				[2438, 5695],
				[2481, 4970],
				[2588, 4963],
				[755, 8840],
				[2934, 3911],
				[1717, 4878],
				[3264, 5563],
				[1814, 4331],
				[2989, 2882],
				[2335, 6421],
				[2584, 5896],
				[2831, 5142],
				[2536, 4621],
				[1782, 4401],
				[3151, 5005],
				[2597, 5435],
				[2533, 5675],
				[3175, 5093],
				[2410, 5812],
				[2545, 4967],
				[2753, 5565],
				[2805, 5600],
				[2956, 4619],
				[606, 2156],
				[2722, 4416],
				[2522, 4425],
				[2566, 5765],
				[2624, 3711],
				[2946, 2914],
				[2978, 3243],
				[2508, 4304],
				[2498, 5291],
				[1974, 4858],
				[2672, 5331],
				[2898, 4033],
				[452, 8525],
				[2195, 6110],
				[3349, 5988],
				[2625, 3933],
				[806, 9015],
				[1793, 4733],
				[2857, 4384],
				[3221, 5340],
				[2507, 5801],
				[3171, 5229],
				[1660, 5917],
				[2635, 4634],
				[2992, 4101],
				[2761, 5906],
				[2903, 5201],
				[2862, 4408],
				[2435, 3801],
				[2657, 4884],
				[2553, 4887],
				[2742, 3648],
				[1727, 4733],
				[2851, 5671],
				[2893, 4507],
				[2338, 6396],
				[402, 8561],
				[2503, 5975],
				[2715, 3978],
				[2598, 4344],
				[3142, 5282],
				[2449, 4847],
				[3229, 5762],
				[2641, 5252],
				[2668, 5186],
				[3132, 4466],
				[2815, 5080],
				[2769, 6098],
				[2909, 3868],
				[2796, 4480],
				[3061, 5011],
				[2775, 4409],
				[2253, 3598],
				[3102, 4281],
				[831, 8423],
				[2681, 5556],
				[2948, 4451],
				[1700, 4570],
				[2533, 4030],
				[2762, 4282],
				[2708, 5596],
				[1940, 6186],
				[2588, 5868],
				[3158, 5877],
				[3160, 5371],
				[2680, 3539],
				[2966, 2715],
				[2133, 4871],
				[1398, 7471],
				[3109, 4999],
				[2741, 5023],
				[3249, 5273],
				[2998, 4577],
				[2760, 5750],
				[650, 1976],
				[2652, 5318],
				[2770, 3768],
				[2511, 5882],
				[2190, 4718],
				[3227, 5814],
				[3387, 5840],
				[2723, 4842],
				[3289, 5322],
				[2719, 4753],
				[2749, 5591],
				[1778, 6232],
				[2981, 4551],
				[2438, 3975],
				[2529, 5717],
				[2862, 5031],
				[2683, 4462],
				[2652, 5453],
				[1846, 3981],
				[1053, 8442],
				[1878, 5869],
				[3031, 4116],
				[321, 8291],
				[1708, 4963],
				[2482, 5082],
				[2026, 3933],
				[2822, 5181],
				[3172, 5460],
				[3116, 5510],
				[3229, 5303],
				[3175, 5253],
				[3140, 5136],
				[3179, 5115],
				[3109, 5260],
				[3159, 5094],
				[3140, 5465],
				[2204, 4604],
				[3108, 5377],
				[2151, 4181],
				[3145, 5341],
				[3031, 5256],
				[3163, 5358],
				[3079, 5375],
				[3154, 5193],
				[3132, 5145],
				[3161, 5196],
				[3148, 5266],
				[3129, 5078],
				[3151, 5499],
				[3145, 5126],
				[3071, 5100],
				[3193, 5351],
				[3175, 5306],
				[3161, 5089],
				[3105, 5235],
				[3161, 5052],
				[3170, 5354],
				[3153, 5196],
				[3166, 5138],
				[3173, 5375],
				[423, 8945],
				[3135, 5104],
				[3003, 4547],
				[2954, 4546],
				[2451, 6478],
				[2424, 6045],
				[2380, 6323],
				[2314, 6460],
				[2429, 6361],
				[2431, 6097],
				[2370, 6077],
				[2306, 6099],
				[2346, 6255],
				[2687, 3547],
				[3254, 5696],
				[3133, 5595],
				[2692, 4378],
				[2381, 5081],
				[576, 8973],
				[2554, 4768],
				[3174, 5573],
				[1746, 5076],
				[1719, 5149],
				[1695, 4976],
				[1656, 5072],
				[2544, 4441],
				[1735, 4711],
				[1639, 5118],
				[1726, 4983],
				[1635, 5217],
				[1643, 5268],
				[1744, 4796],
				[1785, 4785],
				[1817, 4571],
				[1732, 4753],
				[1652, 5019],
				[1667, 4894],
				[1774, 4583],
				[2380, 4277],
				[1690, 5061],
				[1699, 4897],
				[1785, 4541],
				[1783, 4949],
				[2340, 4613],
				[1681, 5335],
				[2479, 4398],
				[1641, 4989],
				[1707, 4968],
				[2447, 4602],
				[1666, 5221],
				[1781, 4833],
				[1752, 5347],
				[1664, 4913],
				[1726, 4899],
				[2430, 4496],
				[1756, 4715],
				[1676, 4832],
				[1732, 4850],
				[1715, 5400],
				[1682, 5194],
				[1673, 5258],
				[1704, 4822],
				[1713, 5264],
				[3072, 4295],
				[1688, 4748],
				[1702, 4585],
				[2972, 3112],
				[613, 9314],
				[2929, 3411],
				[2542, 3787],
				[2753, 5867],
				[3090, 4411],
				[2304, 3840],
				[2410, 5358],
				[2841, 5407],
				[2352, 4965],
				[2604, 5935],
				[2457, 5415],
				[3078, 4746],
				[2323, 5280],
				[2971, 4081],
				[2005, 5291],
				[627, 2116],
				[2708, 6175],
				[3139, 5837],
				[2872, 5319],
				[2919, 5299],
				[2910, 5360],
				[3137, 5506],
				[2361, 5078],
				[2541, 4924],
				[1839, 4043],
				[2452, 4384],
				[2810, 5187],
				[2503, 4427],
				[2305, 5324],
				[3056, 4970],
				[2910, 4004],
				[3350, 5879],
				[3049, 5455],
				[2205, 6371],
				[1667, 6195],
				[2041, 3762],
				[2460, 5331],
				[2694, 4319],
				[2744, 4904],
				[2627, 5524],
				[2505, 5308],
				[347, 8939],
				[3059, 4830],
				[1772, 6429],
				[2964, 3431],
				[2635, 5742],
				[2418, 5491],
				[2163, 4169],
				[1850, 5733],
				[1631, 5821],
				[1831, 4175],
				[2414, 4064],
				[2900, 5433],
				[2610, 5296],
				[1278, 7938],
				[357, 8317],
				[2990, 2900],
				[2623, 3627],
				[2866, 4002],
				[3265, 5354],
				[2665, 5425],
				[1763, 6014],
				[2599, 6358],
				[2500, 5572],
				[2753, 5414],
				[3237, 5506],
				[3116, 4619],
				[2570, 3551],
				[3250, 5459],
				[738, 7902],
				[2957, 3313],
				[1667, 6467],
				[1077, 8696],
				[484, 9301],
				[2893, 5801],
				[2733, 5728],
				[2903, 5117],
				[2702, 4023],
				[2515, 5676],
				[1625, 5639],
				[2612, 5277],
				[435, 9310],
				[2456, 4361],
				[1707, 5024],
				[2824, 4955],
				[2667, 5599],
				[2587, 5749],
				[2776, 4751],
				[3272, 5447],
				[2525, 4876],
				[3313, 5842],
				[2875, 5266],
				[3149, 4840],
				[3211, 5336],
				[2850, 5026],
				[2791, 5312],
				[1782, 4197],
				[2591, 5308],
				[3045, 5325],
				[2340, 3655],
				[2875, 5516],
				[1978, 3923],
				[2071, 3753],
				[2023, 3999],
				[2047, 4065],
				[2063, 4313],
				[1935, 4189],
				[1999, 4369],
				[2071, 3891],
				[3012, 5121],
				[2004, 4280],
				[3003, 5137],
				[1686, 6341],
				[2726, 4645],
				[528, 2272],
				[2026, 4206],
				[1691, 4707],
				[855, 8483],
				[2628, 4193],
				[2675, 5997],
				[2995, 3021],
				[216, 7698],
				[817, 9365],
				[2931, 3227],
				[2909, 5342],
				[2718, 5782],
				[2653, 5577],
				[2865, 4146],
				[1793, 5995],
				[1676, 5979],
				[2596, 5323],
				[1253, 7913],
				[3090, 5517],
				[2269, 3756],
				[2424, 3376],
				[2822, 3573],
				[2022, 4624],
				[2936, 3058],
				[769, 8131],
				[2672, 4489],
				[3079, 4422],
				[2954, 5178],
				[3107, 4656],
				[2399, 5063],
				[3013, 4080],
				[2977, 3037],
				[3146, 5084],
				[2920, 5560],
				[305, 9539],
				[2328, 5738],
				[2738, 4532],
				[2005, 4077],
				[2697, 5208],
				[2708, 3770],
				[2915, 3213],
				[1987, 5560],
				[2460, 2940],
				[2847, 3984],
				[2369, 5790],
				[2991, 5181],
				[423, 9756],
				[2708, 4788],
				[461, 8343],
				[2953, 5002],
				[2530, 6184],
				[2675, 6036],
				[3199, 5838],
				[2843, 5175],
				[2849, 5976],
				[2804, 4097],
				[2463, 6503],
				[1816, 4264],
				[2910, 4923],
				[2995, 2953],
				[2504, 5253],
				[3237, 5452],
				[3099, 4449],
				[2073, 5542],
				[2468, 4593],
				[3153, 5117],
				[2576, 5974],
				[3384, 5918],
				[591, 7855],
				[2775, 3614],
				[1826, 4180],
				[2678, 4600],
				[2544, 5533],
				[3188, 5359],
				[2105, 5866],
				[2347, 4418],
				[806, 9299],
				[2517, 4687],
				[184, 1089],
				[2789, 5350],
				[2664, 5048],
				[3369, 6151],
				[2734, 3612],
				[2492, 5728],
				[3444, 1716],
				[1738, 4427],
				[1992, 4268],
				[2760, 5057],
				[2793, 3829],
				[2559, 5390],
				[2519, 4109],
				[3057, 5243],
				[1784, 6084],
				[3415, 1664],
				[3206, 5484],
				[1355, 7733],
				[2977, 4657],
				[3283, 5586],
				[2511, 3818],
				[1865, 4139],
				[2494, 3341],
				[3075, 4664],
				[3155, 5836],
				[558, 7757],
				[2892, 5521],
				[2646, 3495],
				[2541, 4705],
				[2417, 4745],
				[460, 8078],
				[1786, 4483],
				[3136, 5142],
				[2238, 4837],
				[2044, 5044],
				[2674, 5525],
				[3302, 5429],
				[3264, 5374],
				[1734, 4905],
				[3108, 4601],
				[2464, 4277],
				[2014, 5139],
				[2324, 4192],
				[2451, 4406],
				[2552, 6156],
				[2237, 6479],
				[2461, 3772],
				[2753, 5435],
				[3299, 5675],
				[1671, 6277],
				[2881, 3933],
				[2987, 4282],
				[3286, 5403],
				[2354, 4543],
				[2880, 5950],
				[2304, 4154],
				[2322, 4254],
				[2190, 4483],
				[2103, 4119],
				[1652, 4950],
				[1717, 5019],
				[2304, 4095],
				[1645, 5181],
				[2310, 4037],
				[1778, 4549],
				[2272, 4189],
				[2089, 4186],
				[2195, 4111],
				[2336, 4166],
				[2234, 4530],
				[2361, 4604],
				[1743, 4613],
				[1713, 4839],
				[2306, 4254],
				[2234, 4312],
				[1730, 4936],
				[1752, 4770],
				[1658, 5190],
				[1746, 4597],
				[1707, 5059],
				[1712, 4897],
				[1655, 5137],
				[1708, 4648],
				[2756, 5536],
				[1836, 4158],
				[2283, 5737],
				[2475, 3959],
				[2391, 5506],
				[1653, 5611],
				[1687, 5128],
				[2978, 3997],
				[657, 8973],
				[2281, 5753],
				[2806, 5271],
				[2657, 5965],
				[1686, 5184],
				[2525, 5262],
				[1721, 5770],
				[2458, 6350],
				[3036, 4460],
				[598, 8513],
				[2090, 5916],
				[2716, 5448],
				[2461, 3273],
				[2611, 5822],
				[2704, 5985],
				[1701, 4687],
				[3081, 4714],
				[2848, 5066],
				[2002, 4907],
				[2138, 5030],
				[1723, 4868],
				[1842, 4147],
				[2115, 5584],
				[3336, 5740],
				[2469, 3241],
				[2544, 4326],
				[2096, 5354],
				[2853, 4466],
				[1779, 6091],
				[3141, 5610],
				[2838, 4221],
				[822, 9095],
				[2844, 5457],
				[2817, 4432],
				[2609, 5910],
				[1853, 4015],
				[1764, 5026],
				[1688, 6277],
				[2664, 4128],
				[2999, 4686],
				[3070, 5592],
				[2560, 4537],
				[8626, 1049],
				[9655, 0],
				[2596, 5996],
				[2237, 4057],
				[2511, 6490],
				[2450, 5076],
				[2633, 5952],
				[2112, 6117],
				[2827, 5687],
				[2096, 4424],
				[2697, 5918],
				[2522, 6503],
				[475, 8511],
				[2414, 4928],
				[2608, 3933],
				[2610, 5716],
				[2761, 4950],
				[2944, 2998],
				[2238, 4595],
				[2592, 4363],
				[2377, 6417],
				[2982, 4423],
				[3217, 5657],
				[2931, 3862],
				[3072, 5210],
				[2909, 4550],
				[2530, 5816],
				[3064, 4456],
				[2154, 5387],
				[2793, 5275],
				[2011, 5704],
				[2031, 3875],
				[2727, 5600],
				[2855, 4168],
				[2775, 5253],
				[2614, 6015],
				[2904, 5017],
				[3069, 4547],
				[2006, 6382],
				[1675, 5447],
				[1620, 5587],
				[1720, 5745],
				[1759, 6335],
				[1662, 5830],
				[1621, 6347],
				[1712, 5711],
				[1837, 6467],
				[2904, 5307],
				[2277, 6324],
				[1934, 6384],
				[2376, 6512],
				[1666, 5813],
				[1666, 6431],
				[2436, 6266],
				[1721, 5834],
				[1915, 6273],
				[1729, 5775],
				[1763, 6076],
				[1692, 6341],
				[1632, 5867],
				[1639, 5952],
				[1688, 6251],
				[1752, 6422],
				[1897, 6400],
				[1687, 6318],
				[2060, 6222],
				[1853, 5670],
				[1865, 5665],
				[1873, 6120],
				[1985, 6196],
				[1786, 6167],
				[2091, 6448],
				[1863, 6251],
				[1881, 6077],
				[1877, 6034],
				[1875, 6285],
				[2238, 6380],
				[1851, 5762],
				[1866, 6082],
				[1730, 6228],
				[1837, 6177],
				[1766, 6372],
				[2166, 5330],
				[1711, 4872],
				[2079, 3986],
				[2189, 4419],
				[1844, 3968],
				[2697, 4815],
				[2425, 3467],
				[2961, 3873],
				[2769, 6098],
				[2539, 6103],
				[1762, 4232],
				[1843, 4181],
				[2755, 5694],
				[2802, 5372],
				[2925, 3948],
				[1737, 4359],
				[2165, 5185],
				[2561, 5667],
				[2009, 6441],
				[3137, 4845],
				[2482, 5356],
				[874, 9828],
				[2802, 4036],
				[3065, 5238],
				[3187, 5551],
				[1719, 4775],
				[343, 8522],
				[2856, 4550],
				[2301, 5968],
				[2484, 5622],
				[2453, 5798],
				[2389, 6012],
				[2483, 5731],
				[2384, 5927],
				[2353, 6011],
				[2356, 5707],
				[2441, 5633],
				[2376, 5715],
				[2520, 5222],
				[2820, 4819],
				[2008, 4107],
				[1851, 3942],
				[500, 7500],
				[2248, 6310],
				[1685, 6270],
				[1851, 3982],
				[2956, 3142],
				[3095, 5233],
				[2781, 3907],
				[2434, 3887],
				[2815, 4936],
				[2675, 4937],
				[2012, 4299],
				[2960, 3349],
				[2382, 5635],
				[1840, 6306],
				[3286, 5635],
				[1683, 4732],
				[3104, 4585],
				[2685, 5424],
				[3262, 5405],
				[2583, 4673],
				[2879, 5079],
				[2957, 3534],
				[2512, 3481],
				[2594, 5864],
				[2639, 4260],
				[1956, 4649],
				[1282, 8149],
				[3032, 4833],
				[604, 9311],
				[327, 9211],
				[2507, 5606],
				[1659, 6236],
				[2161, 5850],
				[2569, 3923],
				[529, 8655],
				[3429, 1734],
				[2701, 4619],
				[1280, 7771],
				[2767, 4966],
				[1680, 5383],
				[1697, 4692],
				[2087, 4247],
				[2362, 3752],
				[3432, 1732],
				[2825, 5995],
				[1830, 6296],
				[2533, 5477],
				[789, 8541],
				[2202, 4550],
				[2525, 5511],
				[2006, 5228],
				[1664, 5872],
				[2549, 4508],
				[3178, 5790],
				[2450, 4915],
				[2720, 4892],
				[604, 8500],
				[2513, 4034],
				[2838, 5283],
				[2855, 4644],
				[1708, 4900],
				[1947, 5905],
				[1805, 4168],
				[3164, 5202],
				[2987, 4165],
				[1743, 4306],
				[1823, 4115],
				[2743, 4349],
				[2348, 3961],
				[2472, 4378],
				[199, 7790],
				[1707, 4582],
				[2285, 5277],
				[3017, 4359],
				[773, 8146],
				[2067, 4207],
				[2937, 4309],
				[1668, 6007],
				[2260, 5805],
				[2917, 3190],
				[2582, 4007],
				[2698, 5080],
				[9999, 1193],
				[2424, 4164],
				[2526, 5600],
				[2531, 3463],
				[2698, 5377],
				[1687, 4715],
				[2827, 4487],
				[2634, 4355],
				[2919, 3133],
				[2206, 4082],
				[622, 8513],
				[2425, 3436],
				[2955, 3720],
				[2628, 6001],
				[2562, 5972],
				[2702, 5815],
				[2724, 4077],
				[2536, 5069],
				[2276, 5201],
				[2677, 4908],
				[2593, 5876],
				[1670, 4871],
				[3464, 1716],
				[3470, 1616],
				[2991, 3099],
				[2481, 4445],
				[2768, 5862],
				[1934, 5653],
				[2668, 4895],
				[3058, 4155],
				[2623, 6151],
				[2490, 5480],
				[190, 8810],
				[2125, 3952],
				[1739, 5163],
				[2968, 4442],
				[854, 9173],
				[844, 8253],
				[3181, 5340],
				[2468, 4504],
				[2467, 5240],
				[2363, 3926],
				[2971, 4828],
				[366, 8627],
				[794, 8308],
				[2322, 5067],
				[2798, 4410],
				[3119, 5591],
				[2877, 3784],
				[1786, 4220],
				[1864, 6403],
				[2734, 4354],
				[2543, 3504],
				[2024, 4493],
				[2694, 5960],
				[2436, 3103],
				[2434, 3713],
				[2472, 3678],
				[2683, 3719],
				[2531, 3488],
				[752, 7886],
				[2424, 4144],
				[2330, 3886],
				[2449, 3193],
				[2520, 3744],
				[2480, 3992],
				[2371, 4036],
				[2440, 2942],
				[2454, 3233],
				[2462, 3397],
				[2482, 3676],
				[2457, 3630],
				[2542, 3552],
				[2439, 3157],
				[2411, 3578],
				[2413, 3437],
				[2550, 3509],
				[2481, 3329],
				[2243, 4676],
				[761, 9043],
				[3277, 5398],
				[2709, 5032],
				[2621, 4751],
				[2944, 3928],
				[2266, 4351],
				[2762, 4044],
				[2152, 4046],
				[638, 8701],
				[1712, 4743],
				[3030, 4523],
				[1670, 6118],
				[2890, 5349],
				[3182, 5237],
				[2791, 4794],
				[2861, 5506],
				[2132, 4784],
				[2724, 4468],
				[3122, 4764],
				[2804, 4382],
				[1903, 6289],
				[2123, 5677],
				[3095, 5091],
				[1677, 6241],
				[2973, 3308],
				[823, 8596],
				[1285, 7886],
				[2483, 4037],
				[2687, 4515],
				[2863, 3602],
				[1778, 4503],
				[486, 8405],
				[2890, 3764],
				[2985, 2859],
				[962, 1193],
				[1883, 4186],
				[2970, 2893],
				[2594, 5366],
				[1809, 4135],
				[2600, 5733],
				[504, 8085],
				[2812, 3831],
				[2880, 5353],
				[2513, 4959],
				[2249, 5427],
				[2920, 3223],
				[2922, 3214],
				[1847, 4801],
				[2458, 3720],
				[692, 8265],
				[2496, 5380],
				[2533, 4468],
				[2350, 4866],
				[2923, 4553],
				[1753, 4998],
				[2493, 3964],
				[1876, 4108],
				[2576, 5117],
				[2965, 5192],
				[1805, 4343],
				[958, 1682],
				[3026, 4413],
				[1683, 5972],
				[2892, 5408],
				[3159, 5148],
				[2505, 4510],
				[2726, 4208],
				[2038, 3871],
				[2623, 4656],
				[2825, 5846],
				[2496, 6366],
				[2878, 3681],
				[2598, 5211],
				[1757, 4931],
				[2656, 3908],
				[1994, 5200],
				[1928, 5493],
				[2634, 6207],
				[2564, 4080],
				[2064, 4237],
				[2804, 5109],
				[2520, 3908],
				[2874, 4449],
				[2901, 5089],
				[2617, 5398],
				[2823, 4593],
				[1994, 5606],
				[1919, 5510],
				[1965, 6093],
				[1929, 4568],
				[2008, 5434],
				[2009, 5064],
				[2077, 5659],
				[1933, 4482],
				[2060, 4942],
				[1978, 5561],
				[2005, 5201],
				[2088, 4782],
				[1984, 4828],
				[1993, 4767],
				[2033, 5690],
				[2116, 5873],
				[2056, 5134],
				[1881, 5807],
				[1890, 5594],
				[2016, 5127],
				[1867, 5847],
				[2050, 4704],
				[1671, 5925],
				[2626, 5966],
				[2738, 4082],
				[2644, 4802],
				[3141, 5596],
				[2985, 5265],
				[2719, 4538],
				[1873, 4126],
				[3002, 4236],
				[2743, 5580],
				[2754, 5483],
				[1616, 6346],
				[2651, 5095],
				[2906, 5521],
				[2964, 4514],
				[1658, 4968],
				[2510, 4839],
				[3141, 5172],
				[2548, 5780],
				[2335, 4730],
				[2811, 5094],
				[2929, 4981],
				[491, 8841],
				[2629, 4616],
				[2728, 5640],
				[3065, 5237],
				[2815, 4354],
				[2702, 4226],
				[644, 2017],
				[2870, 5356],
				[2515, 3657],
				[825, 8508],
				[3269, 5344],
				[2652, 4828],
				[2386, 3417],
				[2833, 5085],
				[2891, 5094],
				[2965, 4320],
				[343, 8473],
				[3158, 5095],
				[2557, 4533],
				[1696, 4850],
				[2473, 3361],
				[1838, 4259],
				[2925, 3883],
				[943, 8410],
				[938, 9332],
				[2083, 5173],
				[2605, 4939],
				[2858, 5136],
				[1906, 4512],
				[2229, 3706],
				[2633, 4811],
				[2672, 5817],
				[1776, 4528],
				[2935, 4586],
				[2714, 4947],
				[2896, 3662],
				[2473, 5537],
				[2922, 3082],
				[2855, 5240],
				[1804, 4199],
				[2848, 4185],
				[2796, 3616],
				[2781, 5332],
				[2940, 3574],
				[3448, 1684],
				[2985, 3173],
				[3230, 5627],
				[2922, 5108],
				[2625, 5451],
				[2361, 5551],
				[2993, 4387],
				[1675, 5984],
				[2489, 5934],
				[2714, 5316],
				[1628, 6200],
				[3083, 5080],
				[2630, 5870],
				[2990, 4948],
				[3112, 4944],
				[3054, 4629],
				[1664, 6440],
				[3059, 4357],
				[3128, 4794],
				[3001, 4425],
				[3045, 4896],
				[3069, 4883],
				[3034, 4590],
				[3123, 4338],
				[3087, 4714],
				[3099, 4717],
				[3025, 4947],
				[1682, 5985],
				[1786, 6344],
				[1681, 6359],
				[1798, 6255],
				[2994, 5089],
				[445, 8783],
				[907, 9228],
				[3127, 5307],
				[873, 9407],
				[2446, 4538],
				[2884, 4163],
				[1806, 4206],
				[1812, 4282],
				[2470, 4661],
				[516, 9266],
				[1688, 5029],
				[1825, 5245],
				[410, 8967],
				[455, 8341],
				[1373, 7683],
				[2131, 5725],
				[822, 9391],
				[609, 8030],
				[3252, 5316],
				[424, 9416],
				[1702, 4625],
				[3318, 5814],
				[3156, 4949],
				[2392, 4547],
				[2033, 5838],
				[2955, 2891],
				[2941, 3101],
				[2948, 3211],
				[2978, 3024],
				[2954, 3031],
				[2925, 3229],
				[2972, 3325],
				[2947, 3372],
				[2983, 3198],
				[2924, 3393],
				[2926, 3354],
				[2993, 2880],
				[2985, 2906],
				[2961, 3457],
				[2981, 2836],
				[2981, 3221],
				[2921, 3439],
				[3439, 1684],
				[3465, 1716],
				[3473, 1623],
				[3443, 1711],
				[3470, 1716],
				[2554, 4523],
				[2557, 6198],
				[2443, 5555],
				[2477, 5645],
				[2858, 5989],
				[2350, 6163],
				[2358, 6053],
				[2868, 5768],
				[2446, 6418],
				[2886, 5496],
				[2709, 5737],
				[2660, 5664],
				[2721, 5967],
				[2502, 6041],
				[2882, 6044],
				[2514, 5769],
				[2841, 5564],
				[2311, 6346],
				[2910, 5645],
				[2870, 5887],
				[1147, 8155],
				[9765, 336],
				[2889, 5454],
				[1740, 6132],
				[2459, 5561],
				[2977, 5302],
				[1924, 3956],
				[216, 1066],
				[438, 8369],
				[472, 8375],
				[624, 8725],
				[831, 8451],
				[932, 8592],
				[480, 7609],
				[854, 8906],
				[956, 9215],
				[2054, 4166],
				[2974, 4522],
				[3111, 5215],
				[2931, 3263],
				[2105, 4335],
				[2939, 5096]
			]
		}
	},
	"arcs": []
}