Merge branch 'master' of mojotrollz.eu:college

This commit is contained in:
Denis 2012-12-06 15:42:21 +01:00
commit 25e4c08027
76 changed files with 18325 additions and 668 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
<classpathentry kind="output" path="bin"/>
</classpath>

View File

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>DEVS2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@ -1,12 +0,0 @@
#Thu Oct 11 22:30:59 CEST 2012
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.5

View File

@ -1,117 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
import java.util.Iterator;
import java.util.PriorityQueue;
/* This class implements a time dependent discrete event simulation */
abstract public class DEVS {
// GENERAL
protected PriorityQueue<DiscreteEvent> queue;
private double time;
private double maxTime;
// CONSTRUCTOR
public DEVS(){
queue = new PriorityQueue<DiscreteEvent>(2);
time = 0.0;
}
protected class StopEvent extends DiscreteEvent{
StopEvent(double t) {
super(t,'X');
}
}
// USER-DEFINED FUNCTIONS
/** This routine may be implemented */
public void initialize() {
queue.add(new StopEvent(maxTime));
}
/** This routine must be implemented */
abstract public void eventRoutine(DiscreteEvent ev);
/** This routine may be implemented */
public void statistics() {}
// GENERAL FUNCTIONS
/** getter time */
public double getTime() {
return time;
}
/** setter time */
public void setTime(double time) {
this.time = time;
}
/** getter max time */
public double getMaxTime() {
return maxTime;
}
/** setter max time */
public void setMaxTime(double time) {
this.maxTime = time;
}
/** Simulation stops if time limit has been reached*/
public boolean stopCondition() {
return getTime() > getMaxTime();
}
/** Perform simulation run (event loop) */
public void simulate(){
while (true){
// get event
DiscreteEvent ev = queue.poll();
// abort, if queue is empty
if (ev==null) {
System.out.println("Queue is empty!");
break;
}
// update time and treat event
time = ev.getTime();
eventRoutine(ev);
// print queue status
System.out.print("{");
for (Iterator<DiscreteEvent> it = queue.iterator(); it.hasNext();)
{
System.out.print(it.next()+", ");
}
System.out.println("}");
// check for stop condition
if (ev instanceof StopEvent)
{
System.out.println("Terminating");
break;
}
}
}
}

View File

@ -1,50 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
import java.util.Random;
public class DEVSMain {
/** execute program */
public static void main(String args[]){
// create random number generator
RandomNumberGenerator randA;
RandomNumberGenerator randD;
double maxtime;
// ALTERNATIVE 1: results from exercise 1
// TODO: VAlidierung in Aufgabenteil b)
randA = new MyExponential();
randD = new MyNormalDist();
maxtime = 100.0;
// ALTERNATIVE 2: 'real' random numbers
// TODO: Experimente in Aufgabenteil d)
/* Random r = new Random(47);
randA = new ExponentialDistributionWrapper(r, 5.0);
randD = new ExponentialDistributionWrapper(r, 6.0);
//randD= new NormalDistributionWrapper(r, 6.0, 2.0);
maxtime = 20000;
*/
DEVS sim = new QueueDEVS(randA, randD);
sim.setMaxTime(maxtime);
sim.initialize();
sim.simulate();
sim.statistics();
}
}

View File

@ -1,43 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
import java.lang.Double;
public class DiscreteEvent implements Comparable<DiscreteEvent>{
private double time;
private char type;
DiscreteEvent(double t, char c) {time=t; type=c;}
public double getTime() {
return time;
}
public void setTime(double time) {
this.time = time;
}
public char getType() {
return type;
}
public void setType(char type) {
this.type = type;
}
public String toString(){
return "Event<"+type+", "+time+">";
}
public int compareTo(DiscreteEvent e) {
return new Double(time).compareTo(e.getTime());
}
}

View File

@ -1,32 +0,0 @@
package edu.eice2012;
import java.util.Random;
/** Generiert Werte einer Exponentialverteilung */
public class ExponentialDistributionWrapper implements RandomNumberGenerator {
private static final long serialVersionUID = 1L;
private double lambda;
private Random r;
private boolean doInteger;
public ExponentialDistributionWrapper(Random r){
this (r, 1.0);
}
public ExponentialDistributionWrapper(Random r, double lambda){
this.doInteger=false;
this.r = r;
this.lambda=lambda;
}
public double nextDoubleValue(){
double x = r.nextDouble();
if (doInteger) return (double) Math.round(-Math.log(1.0-x)/lambda);
return -Math.log(1.0-x)/lambda;
}
}

View File

@ -1,30 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
public class MyExponential implements RandomNumberGenerator
{
MyExponential() {i=0;}
public double nextDoubleValue(){
double val=data[i];
i=(i+1)%data.length;
return val;
};
private int i;
private static final long serialVersionUID = 1L;
private static double data[] =
//{0.57, 2.73, 1.36, 0.72, 0.23, 0.08, 1.21, 0.35, 2.81, 0.19, 0.88};
{8.76, 16.82, 15.40, 26.72,3.46,27.06,23.52,8.06,0.71,42.03,56.27};
}

View File

@ -1,25 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
public class MyNormalDist implements RandomNumberGenerator
{
MyNormalDist() {i=0;}
public double nextDoubleValue(){
double val=data[i];
i=(i+1)%data.length;
return val;
};
private int i;
private static final long serialVersionUID = 1L;
private static double data[] =
//{1.89, 2.02, 2.56, 3.84, 2.00, 2.28, 3.32, 3.56, 2.97, 2.67, 2.70};
{25.30, 20.11, 13.25, 10.68, 16.85, 19.22, 23.96, 28.30, 24.55, 22.70, 17.14};
}

View File

@ -1,35 +0,0 @@
package edu.eice2012;
import java.util.Random;
/** Generiert Werte einer Normalverteilung */
public class NormalDistributionWrapper implements RandomNumberGenerator{
private static final long serialVersionUID = 1L;
private double mu;
private double sigma;
private Random r;
private boolean doInteger; // returning integers or doubles?
public NormalDistributionWrapper(Random r){
this(r, 0.0, 1.0);
}
public NormalDistributionWrapper(Random r, double mu, double sigma){
this.r = r;
this.mu=mu;
this.sigma=sigma;
this.doInteger=false;
}
public double nextDoubleValue(){
double x = r.nextGaussian();
if (doInteger) return (double) Math.round( mu +x*sigma);
return mu +x*sigma;
}
}

View File

@ -1,277 +0,0 @@
/**
Vorlesung: Einfuehrung in Computational Engineering
@author Arne Naegel
@date Oktober 2012
*/
package edu.eice2012;
import java.util.AbstractList;
import java.util.Vector;
public class QueueDEVS extends DEVS {
// problem specific variables
private int server; // current machine state (0=idle)
private int buffer; // current buffer length
private int maxServers;
// random number generators
private RandomNumberGenerator randA;
private RandomNumberGenerator randD;
// statistics (per event)
private Vector<Double> eventTimes; // time stamp when event is triggered
private Vector<Character> eventTypes; // type of event
private Vector<Double> serverList; // #items processed by server(s)
private Vector<Double> bufferList; // #items in buffer
private Vector<Double> loadList; // #items in system
/** Constructor */
public QueueDEVS(RandomNumberGenerator randA, RandomNumberGenerator randD)
{
// attributes
buffer = 0;
server = 0;
maxServers = 1;
// random numbers
this.randA = randA;
this.randD = randD;
// statistics (per event)
eventTimes = new Vector<Double>();
eventTypes = new Vector<Character>();
bufferList = new Vector<Double>();
serverList = new Vector<Double>();
loadList = new Vector<Double>();
// first entries
eventTimes.add(0.0);
eventTypes.add('I');
bufferList.add(0.0);
serverList.add(0.0);
loadList.add(0.0);
}
public void setRandomArrival(RandomNumberGenerator rand)
{
this.randA = rand;
}
public void setRandomDeparture(RandomNumberGenerator rand)
{
this.randD = rand;
}
/** status for server */
public boolean allBusy()
{
return (server == maxServers);
}
/** status for server */
public boolean isIdle()
{
return (server==0);
}
public int getServerState() {
return this.server;
}
public void initialize()
{
super.initialize();
server = 0;
buffer = 0;
queue.add(new DiscreteEvent(0.5, 'A'));
/*
* ALTERNATIVE: first arrival is random
double offset = randA.nextDoubleValue();
queue.add(new DiscreteEvent((offset), 'A'));
*/
}
/** called for every event */
public void eventRoutine(DiscreteEvent e)
{
char type = e.getType();
switch (type)
{
case 'A': arrivalRoutine(e); break;
case 'D': departureRoutine(e); break;
default: System.out.println("Unknown event type -> Aborting!!!");
};
// print stats
System.out.println("Event: "+e.getTime() + "|"+type+ "|"+ buffer+ "|"+ getServerState());
// record event statistics (example!)
eventTimes.add(e.getTime()); // time stamp
eventTypes.add(e.getType()); // type (A/D/X)
int serverState = getServerState();
serverList.add((double) serverState); // server state
bufferList.add((double) buffer); // buffer state
int nItems = buffer + serverState;
loadList.add((double) nItems); // system load
};
/** TODO: called upon arrival */
protected void arrivalRoutine (DiscreteEvent e)
{
//System.out.println("arrivalRoutine muss implementiert werden!");
double offset1 = randA.nextDoubleValue();
queue.add(new DiscreteEvent((getTime()+offset1), 'A'));
if(allBusy()){
buffer++;
}else{
server++;
double offset2 = randD.nextDoubleValue();
queue.add(new DiscreteEvent(getTime()+offset2, 'D'));
}
}
/** TODO: called upon departure */
protected void departureRoutine (DiscreteEvent e)
{
//System.out.println("departureRoutine muss implementiert werden!");
if(buffer == 0){
server = 0;
}else{
buffer--;
double offset=randD.nextDoubleValue();
queue.add(new DiscreteEvent(getTime()+offset, 'D'));
}
}
/** aux: compute \sum v_i */
static protected double firstMoments(AbstractList<Double> values){
double val=0.0;
int numEvents = values.size()-1;
for (int i=0; i<numEvents; ++i)
{
val+=values.get(i);
}
return val;
}
/** aux: compute \sum v_i * (t_{i+1}- t_{i})*/
static protected double firstMoments(AbstractList<Double> values, AbstractList<Double> weights){
double val=0.0;
int numEvents = values.size()-1; // skip final STOP event!
for (int i=0; i<numEvents; ++i)
{
double dt = weights.get(i+1)-weights.get(i);
val+=values.get(i)*dt;
}
return val;
}
/** aux: compute \sum v_i*v_i */
static protected double secondMoments(AbstractList<Double> values){
double val=0.0;
int numEvents = values.size()-1; // skip final STOP event!
for (int i=0; i<numEvents; ++i)
{
val+=values.get(i)*values.get(i);
}
return val;
}
/** aux: compute \sum v_i * v_i * (t_{i+1}- t_{i})*/
static protected double secondMoments(AbstractList<Double> values, AbstractList<Double> weights){
double val=0.0;
int numEvents = values.size()-1; // skip final STOP event!
for (int i=0; i<numEvents; ++i)
{
double dt = weights.get(i+1)-weights.get(i);
val+=values.get(i)*values.get(i)*dt;
}
return val;
}
/** TODO:
* aux: computes aggregated times T_k per load k
* Hint: should be implemented analogously to firstMoments(AbstractList<Double>, AbstractList<Double>)
* */
static protected double[] aggregateTimesPerLoad(AbstractList<Double> times, AbstractList<Double> loads)
{
int numEvents = loads.size()-1; // skip final STOP event!
// a) find maximum load
int maxLoad = 0;
for (int i=0; i<numEvents; ++i)
{
int load = (int) Math.round(loads.get(i));
if (load > maxLoad) maxLoad = load;
}
// b) compute sum of values and assign
double val[] = new double[maxLoad+1];
for (int i=0; i<numEvents; ++i)
{
int load = (int) Math.round(loads.get(i));
double dt = times.get(i+1)-times.get(i);
val[load] += dt;
}
return val;
}
@Override
public void statistics()
{
double time = getMaxTime();
// example: statistics for system load
double loadMoment1 = firstMoments(loadList, eventTimes);
double loadMoment2 = secondMoments(loadList, eventTimes);
double meanLoad= loadMoment1/time;
double loadVar = (loadMoment2/time - (meanLoad)*(meanLoad));
System.out.println("Mean system load: "+ meanLoad+" +/- "+Math.sqrt(loadVar));
// TODO: implement server usage
System.out.println("Mean server usage: ??? +/- ???");
// times per system load
double timeDist[] = aggregateTimesPerLoad(eventTimes, loadList);
for (int k=0; k<timeDist.length; k++)
{
System.out.println("p["+k+"]="+timeDist[k]/time);
}
}
}

View File

@ -1,7 +0,0 @@
package edu.eice2012;
/** Objects implementing this class generate a stream of numbers */
public interface RandomNumberGenerator {
public double nextDoubleValue();
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,27 @@
function [ p ] = approxpi(n, type)
%APPROXPI Approximates PI based on edge lengths e
%vektor p:
p = zeros(1, n);
%vektor edges:
edge = zeros(1, n);
edge(1) = 1;
for i=1:1:n
switch type
case 1
%Behandlung für ersten Fall
edge(i+1) = sqrt(2 - sqrt(4-edge(i)^2));
case 2
%Behandlung für zweiten Fall
edge(i+1) = edge(i) / sqrt(2 + sqrt(4-edge(i)^2));
otherwise
disp('Wrong type!');
end
p(i) = 3*2^(i-1)*edge(i);
end
end

View File

@ -0,0 +1,19 @@
function [eps] = findeps()
%FINDEPS Findet die kleinste Zahl eps>0, so dass 1+eps!= 1
eps = 1;
n = 1;
while (1.0 + eps) > 1.0
n = n + 1; %n erhöhen
eps = 2^(-n); %eps neu zuweisen
end
%einen Schritt der while-Schleife ""rückgängig"" machen, um das letzte eps zu
%berechnen, so dass gerade noch gilt (1.0 + eps) > 1.0
n = n - 1;
eps = 2^(-n);
end

View File

@ -0,0 +1,121 @@
Gruppe:
- Michael Scholz (Matr.# 1576630)
- David Kaufmann (Matr.# 1481864)
- Dennis Werner (Matr.# 1513509)
Ausgabe der main-Funktion in Matlab:
1. Aufruf von main(1) liefert:
==============================
>> main(1)
e =
2.2204e-16
p =
Columns 1 through 4
3.0000e+00 3.1058e+00 3.1326e+00 3.1394e+00
Columns 5 through 8
3.1410e+00 3.1415e+00 3.1416e+00 3.1416e+00
Columns 9 through 12
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 13 through 16
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 17 through 20
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 21 through 24
3.1417e+00 3.1417e+00 3.1431e+00 3.1598e+00
Columns 25 through 28
3.1820e+00 3.3541e+00 4.2426e+00 6.0000e+00
Columns 29 through 32
0 0 0 0
Columns 33 through 35
0 0 0
======================================================================================================
======================================================================================================
2. Aufruf von main(2) liefert:
==============================
>> main(2)
e =
2.2204e-16
p =
Columns 1 through 4
3.0000e+00 3.1058e+00 3.1326e+00 3.1394e+00
Columns 5 through 8
3.1410e+00 3.1415e+00 3.1416e+00 3.1416e+00
Columns 9 through 12
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 13 through 16
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 17 through 20
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 21 through 24
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 25 through 28
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 29 through 32
3.1416e+00 3.1416e+00 3.1416e+00 3.1416e+00
Columns 33 through 35
3.1416e+00 3.1416e+00 3.1416e+00
=> Bei den beiden Aufrufen wird sichtbar, dass bei Verfahren 1 die Rundungsfehler in Maschinenarithmetik ab Iteration 21 die Annäherung an PI stark verfälschen. Ab Iteration 29 erhalten wir hier sogar 0. Verfahren 2 hingegen liefert in Maschinenarithmetik eine gute Annäherung an PI. Selbst bei Iteration 100 (hier nicht aufgeführt) erhalten wir den Wert 3.1416e+00 als Näherung für PI. Die Plots in Matlab veranschaulichen die Ergebnisse zudem graphisch.
Somit sollte also Verfahren 2 für eine Annäherung an PI in Maschinenarithmetik verwendet werden.

View File

@ -0,0 +1,18 @@
function [ output_args ] = main(type)
%MAIN Spezifiziert einen Unit-Test fuer die 2. Programmieraufgabe
%Setzt das Format fuer Ausgabe (wissenschaftliche Darstellung)
format shortE
%Aufruf der Benutzer-definierten Funktionen
%Teilaufgabe a): Finde die kleinste Zahl, so dass (1.0+eps>1.0)
e = findeps()
%Teilaufgabe b): Berechne eine Approximation an PI
%fuer type =1 oder type=2
p = approxpi(35, type)
%Grafische Darstellung
plot(p, '--rs','MarkerEdgeColor','k','MarkerFaceColor','g','MarkerSize',10)
end

View File

@ -0,0 +1,27 @@
function [ p ] = approxpi(n, type)
//APPROXPI Approximates PI based on edge lengths e
//vektor p:
p = zeros(1, n);
//vektor edges:
edge = zeros(1, n);
edge(1) = 1;
for i=1:1:n
select type
case 1
//Behandlung für ersten Fall
edge(i+1) = sqrt(2 - sqrt(4-edge(i)^2));
case 2
//Behandlung für zweiten Fall
edge(i+1) = edge(i) / sqrt(2 + sqrt(4-edge(i)^2));
else
disp('Wrong type!');
end
p(i) = 3*2^(i-1)*edge(i);
end
endfunction

View File

@ -0,0 +1,19 @@
function [eps] = findeps()
//FINDEPS Findet die kleinste Zahl eps>0, so dass 1+eps!= 1
eps = 1;
n = 1;
while (1.0 + eps) > 1.0
n = n + 1; //n erhöhen
eps = 2^(-n); //eps neu zuweisen
end
//einen Schritt der while-Schleife ""rückgängig"" machen, um das letzte eps zu
//berechnen, so dass gerade noch gilt (1.0 + eps) > 1.0
n = n - 1;
eps = 2^(-n);
endfunction

View File

@ -0,0 +1,18 @@
function [ output_args ] = main(type)
//MAIN Spezifiziert einen Unit-Test fuer die 2. Programmieraufgabe
//Setzt das Format fuer Ausgabe (wissenschaftliche Darstellung)
format("e",8)
//Aufruf der Benutzer-definierten Funktionen
//Teilaufgabe a): Finde die kleinste Zahl, so dass (1.0+eps>1.0)
e = findeps()
//Teilaufgabe b): Berechne eine Approximation an PI
//fuer type =1 oder type=2
p = approxpi(35, type)
//Grafische Darstellung
//plot(p, '--rs','MarkerEdgeColor','k','MarkerFaceColor','g','MarkerSize',10)
endfunction

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,610 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg contentScriptType="text/ecmascript" width="948px"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify"
contentStyleType="text/css" viewBox="-1240 -1090 2611 2316" height="841px"
preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<g id="edges">
<path fill="none" stroke-width="1.0"
d="M -572.679138,-690.823486 C -538.670532,-683.429016 -498.749451,-621.324402 -506.143921,-587.315796"
class="54569 58613" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -506.143921,-587.315796 C -461.024658,-574.225098 -412.981720,-486.910309 -426.072357,-441.791046"
class="58613 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 49.301472,388.031097 C 19.080795,351.363220 28.751568,251.030441 65.419426,220.809769"
class="42860 37599" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 49.301472,388.031097 C 77.902840,408.390900 90.265198,481.832611 69.905411,510.433990"
class="42860 40047" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 49.301472,388.031097 C 64.051651,420.455841 37.539795,491.218262 5.115040,505.968445"
class="42860 37451" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 65.419426,220.809769 C -31.784668,194.522156 -138.159393,9.284584 -111.871780,-87.919510"
class="37599 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 830.480530,259.469940 C 830.642273,209.132156 906.391663,133.868195 956.729431,134.029984"
class="37658 58704" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 956.729431,134.029984 C 926.447144,88.568893 949.215332,-25.046169 994.676453,-55.328449"
class="58704 43206" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 956.729431,134.029984 C 989.865662,144.523315 1023.829956,209.967651 1013.336670,243.103867"
class="58704 53486" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 257.331757,462.465454 C 170.618164,452.516785 55.470757,307.523376 65.419426,220.809769"
class="54663 37599" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 257.331757,462.465454 C 290.157837,477.378021 317.028168,548.985962 302.115601,581.812073"
class="54663 41061" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 257.331757,462.465454 C 305.296082,417.928314 444.048309,423.069122 488.585449,471.033447"
class="54663 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 257.331757,462.465454 C 307.320587,517.834167 299.250763,675.870422 243.882065,725.859253"
class="54663 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 111.750191,-1080.974121 C 138.944855,-1055.997192 142.271530,-977.739929 117.294662,-950.545288"
class="36278 55578" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 117.294662,-950.545288 C 156.231964,-898.409302 136.433914,-761.799316 84.297913,-722.862061"
class="55578 60232" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 117.294662,-950.545288 C 103.778137,-984.524597 134.472321,-1055.768433 168.451645,-1069.284912"
class="55578 35677" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 994.676453,-55.328449 C 925.292480,-38.376259 795.788330,-117.023903 778.836121,-186.407852"
class="43206 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 994.676453,-55.328449 C 1020.765564,-98.670090 1124.911499,-124.548996 1168.253174,-98.459961"
class="43206 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 994.676453,-55.328449 C 1021.147827,-70.536369 1083.666748,-53.641151 1098.874756,-27.169752"
class="43206 56447" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 994.676453,-55.328449 C 1002.404175,-82.811417 1055.220337,-112.444229 1082.703247,-104.716484"
class="43206 56147" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -691.731079,-158.736893 C -672.463867,-183.744720 -606.051208,-192.355591 -581.043396,-173.088333"
class="33987 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 406.806549,283.056580 C 385.951752,306.614380 319.332825,310.668884 295.775024,289.814087"
class="44552 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -125.878845,287.936066 C -129.388245,262.120209 -95.928558,218.132355 -70.112709,214.622955"
class="33275 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -70.112709,214.622955 C -55.926971,290.083771 -147.839645,424.553680 -223.300491,438.739410"
class="49538 47050" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -70.112709,214.622955 C -138.973022,162.466278 -164.028458,-19.059200 -111.871780,-87.919510"
class="49538 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 298.433105,-387.267181 C 226.362488,-333.090088 36.990952,-359.930359 -17.186146,-432.000977"
class="46293 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 298.433105,-387.267181 C 369.252502,-418.811005 522.797363,-359.897583 554.341187,-289.078186"
class="46293 49556" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 298.433105,-387.267181 C 316.775482,-411.512451 380.656921,-420.366760 404.902191,-402.024384"
class="46293 34871" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 298.433105,-387.267181 C 302.899933,-420.239868 359.059265,-462.998718 392.031952,-458.531891"
class="46293 38398" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -17.186146,-432.000977 C 32.693024,-344.247559 -24.118355,-137.798676 -111.871780,-87.919510"
class="49524 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 554.341187,-289.078186 C 619.774231,-313.443115 754.471191,-251.840912 778.836121,-186.407852"
class="49556 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -506.756042,-330.706726 C -473.599945,-337.538177 -413.618622,-298.051239 -406.787170,-264.895142"
class="34825 50531" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -406.787170,-264.895142 C -454.997742,-239.467957 -565.454346,-273.642975 -590.881531,-321.853546"
class="50531 51618" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -406.787170,-264.895142 C -485.334686,-255.770767 -616.842590,-359.905579 -625.966919,-438.453094"
class="50531 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -406.787170,-264.895142 C -312.408936,-288.483093 -135.459732,-182.297714 -111.871780,-87.919510"
class="50531 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -715.676208,-352.410126 C -684.605957,-371.257721 -609.729126,-352.923798 -590.881531,-321.853546"
class="52758 51618" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -13.420588,190.318192 C -19.898060,206.517563 -53.913330,221.100433 -70.112709,214.622955"
class="33274 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 198.226151,922.216309 C 168.085922,873.813721 195.479477,755.999512 243.882065,725.859253"
class="47001 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 198.226151,922.216309 C 234.158264,954.819092 239.152252,1057.621338 206.549484,1093.553467"
class="47001 33853" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 198.226151,922.216309 C 181.695953,949.530823 115.928780,965.707397 88.614220,949.177185"
class="47001 33671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.549484,1093.553467 C 233.071930,1115.664063 239.689621,1188.613770 217.578949,1215.136230"
class="33853 51497" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 665.391052,388.997742 C 646.437073,440.765991 540.353760,489.987427 488.585449,471.033447"
class="54446 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 665.391052,388.997742 C 672.761353,361.511383 725.046387,331.337311 752.532776,338.707642"
class="54446 36175" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 665.391052,388.997742 C 659.821716,363.437195 689.808533,316.742340 715.369080,311.173004"
class="54446 58196" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 665.391052,388.997742 C 686.468445,362.321808 758.098511,353.924011 784.774414,375.001434"
class="54446 35807" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 84.297913,-722.862061 C 122.173317,-644.393005 61.282883,-469.876373 -17.186146,-432.000977"
class="60232 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 84.297913,-722.862061 C 75.216934,-775.791870 140.990173,-868.808105 193.919998,-877.889038"
class="60232 37227" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -368.740448,659.437256 C -383.792053,586.209656 -296.528076,453.790985 -223.300491,438.739410"
class="54655 47050" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -368.740448,659.437256 C -385.504395,705.013977 -479.015472,748.233215 -524.592224,731.469238"
class="54655 39636" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -368.740448,659.437256 C -343.187775,708.758667 -378.840851,821.069763 -428.162262,846.622498"
class="54655 41307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -524.592224,731.469238 C -545.705261,765.044434 -627.737671,783.737793 -661.312866,762.624756"
class="39636 48116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 148.569580,286.644135 C 178.644653,257.837036 266.967926,259.738983 295.775024,289.814087"
class="37161 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 148.569580,286.644135 C 90.428886,315.976349 -40.780487,272.763641 -70.112709,214.622955"
class="37161 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 148.569580,286.644135 C 195.131348,279.396545 275.845367,338.367828 283.092957,384.929565"
class="37161 53648" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -489.133331,961.496643 C -499.913940,926.327576 -463.331299,857.403137 -428.162262,846.622498"
class="47289 41307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -214.778641,-311.118225 C -229.224014,-282.051880 -294.491608,-260.120422 -323.557953,-274.565796"
class="33562 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -214.778641,-311.118225 C -197.689560,-337.471741 -132.525681,-351.368378 -106.172173,-334.279327"
class="33562 54627" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -323.557953,-274.565796 C -354.759552,-202.773209 -509.250824,-141.886734 -581.043396,-173.088333"
class="42938 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -323.557953,-274.565796 C -293.770630,-367.327179 -109.947548,-461.788300 -17.186146,-432.000977"
class="42938 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -323.557953,-274.565796 C -314.570374,-251.994827 -334.945496,-204.656982 -357.516449,-195.669403"
class="42938 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -323.557953,-274.565796 C -377.505859,-287.507965 -439.014526,-387.843140 -426.072357,-441.791046"
class="42938 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -106.172173,-334.279327 C -91.151459,-353.658112 -39.552235,-360.195190 -20.173458,-345.174500"
class="54627 41384" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -837.820007,-683.697632 C -796.280884,-681.148865 -737.795471,-615.017090 -740.344238,-573.477966"
class="41248 58580" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -740.344238,-573.477966 C -690.463745,-569.348511 -621.837402,-488.333527 -625.966919,-438.453094"
class="58580 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 100.970802,-847.900269 C 122.643867,-819.558044 112.640137,-744.535095 84.297913,-722.862061"
class="45616 60232" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -59.219997,-657.330750 C -5.747272,-620.671570 19.473036,-485.473694 -17.186146,-432.000977"
class="55812 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -59.219997,-657.330750 C -114.430084,-685.237366 -155.385300,-809.912354 -127.478706,-865.122437"
class="55812 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -127.478706,-865.122437 C -153.085205,-889.366150 -155.129395,-964.141357 -130.885727,-989.747864"
class="50879 38246" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -387.193695,-253.631897 C -378.653320,-270.545807 -340.471863,-283.106171 -323.557953,-274.565796"
class="35012 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -54.393417,-561.510559 C -21.050049,-543.050110 1.274317,-465.344360 -17.186146,-432.000977"
class="47966 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -54.393417,-561.510559 C -90.085464,-569.867004 -131.088852,-635.939758 -122.732399,-671.631775"
class="47966 59540" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -477.665070,-55.210289 C -490.714752,-129.902817 -398.250458,-261.516113 -323.557953,-274.565796"
class="41979 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -477.665070,-55.210289 C -481.816284,-7.617182 -559.432800,57.545609 -607.025940,53.394363"
class="41979 36376" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -477.665070,-55.210289 C -461.071320,-10.240922 -503.634705,82.103790 -548.604065,98.697563"
class="41979 35183" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -607.025940,53.394363 C -611.348267,89.356819 -671.775330,136.817078 -707.737793,132.494797"
class="36376 43653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -613.659546,209.879410 C -622.884827,174.631943 -583.851563,107.922836 -548.604065,98.697563"
class="37680 35183" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1298.853271,-136.619583 C 1280.365234,-102.867638 1202.005127,-79.971870 1168.253174,-98.459961"
class="53211 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1298.853271,-136.619583 C 1300.499268,-159.845474 1337.807251,-192.215286 1361.033081,-190.569275"
class="53211 36255" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -431.166107,970.970642 C -455.434967,945.500244 -453.632660,870.891357 -428.162262,846.622498"
class="45268 41307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 585.100891,561.410767 C 547.722351,562.638428 489.813080,508.412018 488.585449,471.033447"
class="50621 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -770.984497,708.565613 C -738.238342,697.443115 -672.435364,729.878601 -661.312866,762.624756"
class="58717 48116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -770.984497,708.565613 C -795.930481,686.480347 -800.221680,615.933411 -778.136414,590.987427"
class="58717 48485" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 250.241547,-615.836975 C 236.257889,-588.546204 174.346298,-568.585632 147.055573,-582.569275"
class="59420 37914" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 147.055573,-582.569275 C 144.320892,-519.607300 45.775856,-429.266296 -17.186146,-432.000977"
class="37914 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 147.055573,-582.569275 C 135.934174,-610.347900 160.919983,-668.697937 188.698608,-679.819336"
class="37914 42217" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -187.402954,-976.804871 C -153.081619,-966.453247 -117.127075,-899.443787 -127.478706,-865.122437"
class="60652 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 242.619247,-669.131653 C 240.818985,-632.706421 183.480774,-580.769043 147.055573,-582.569275"
class="56222 37914" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 270.426727,-981.357300 C 275.819031,-945.362305 229.914993,-883.281372 193.919998,-877.889038"
class="39027 37227" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1230.180542,71.306274 C -1220.038086,39.664139 -1157.361206,7.414656 -1125.718994,17.557138"
class="48815 36619" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1125.718994,17.557138 C -1106.407715,-22.090313 -1017.969727,-52.594635 -978.322266,-33.283398"
class="36619 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -784.647827,-512.922607 C -738.017700,-529.764893 -642.809204,-485.083160 -625.966919,-438.453094"
class="42297 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -784.647827,-512.922607 C -823.437988,-500.329498 -900.512817,-539.624878 -913.105957,-578.415039"
class="42297 39941" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -30.651371,-74.632683 C -49.552818,-61.045963 -98.285065,-69.018066 -111.871780,-87.919510"
class="56719 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -195.603134,-20.704212 C -192.299911,-50.893547 -142.061111,-91.222717 -111.871780,-87.919510"
class="56863 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -195.603134,-20.704212 C -203.474014,1.288207 -248.268951,22.470512 -270.261383,14.599630"
class="56863 56315" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 291.472198,831.572510 C 260.811523,819.947876 232.257431,756.519897 243.882065,725.859253"
class="40153 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -790.346069,-100.463043 C -763.010620,-156.848633 -637.429016,-200.423813 -581.043396,-173.088333"
class="41901 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -790.346069,-100.463043 C -814.505371,-49.431873 -927.291138,-9.124084 -978.322266,-33.283398"
class="41901 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 382.712097,459.462433 C 347.881683,464.479675 288.110199,419.759979 283.092957,384.929565"
class="47829 53648" stroke-opacity="1.0" stroke="#999999"/>
</g>
<g id="nodes">
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-572.67914"
class="54569" cy="-690.8235" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-506.14392"
class="58613" cy="-587.3158" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="49.30147"
class="42860" cy="388.0311" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="65.419426"
class="37599" cy="220.80977" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="69.90541"
class="40047" cy="510.434" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="5.1150403"
class="37451" cy="505.96844" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="830.4805"
class="37658" cy="259.46994" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="956.72943"
class="58704" cy="134.02998" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="257.33176"
class="54663" cy="462.46545" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="302.1156"
class="41061" cy="581.8121" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="488.58545"
class="49259" cy="471.03345" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="243.88206"
class="32809" cy="725.85925" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="111.75019"
class="36278" cy="-1080.9741" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="117.29466"
class="55578" cy="-950.5453" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="994.67645"
class="43206" cy="-55.32845" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1013.3367"
class="53486" cy="243.10387" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-691.7311"
class="33987" cy="-158.7369" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-581.0434"
class="49965" cy="-173.08833" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="406.80655"
class="44552" cy="283.05658" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="295.77502"
class="46502" cy="289.8141" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-125.878845"
class="33275" cy="287.93607" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-70.11271"
class="49538" cy="214.62296" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="298.4331"
class="46293" cy="-387.26718" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-17.186146"
class="49524" cy="-432.00098" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="554.3412"
class="49556" cy="-289.0782" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="404.9022"
class="34871" cy="-402.02438" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="392.03195"
class="38398" cy="-458.5319" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-506.75604"
class="34825" cy="-330.70673" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-406.78717"
class="50531" cy="-264.89514" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-715.6762"
class="52758" cy="-352.41013" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-590.88153"
class="51618" cy="-321.85355" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-13.4205885"
class="33274" cy="190.31819" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="198.22615"
class="47001" cy="922.2163" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="206.54948"
class="33853" cy="1093.5535" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="88.61422"
class="33671" cy="949.1772" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="665.39105"
class="54446" cy="388.99774" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="752.5328"
class="36175" cy="338.70764" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="715.3691"
class="58196" cy="311.173" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="784.7744"
class="35807" cy="375.00143" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="84.29791"
class="60232" cy="-722.86206" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="168.45164"
class="35677" cy="-1069.2849" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-368.74045"
class="54655" cy="659.43726" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-223.30049"
class="47050" cy="438.7394" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-524.5922"
class="39636" cy="731.46924" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-428.16226"
class="41307" cy="846.6225" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="148.56958"
class="37161" cy="286.64413" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="283.09296"
class="53648" cy="384.92957" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-489.13333"
class="47289" cy="961.49664" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-214.77864"
class="33562" cy="-311.11823" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-323.55795"
class="42938" cy="-274.5658" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-106.17217"
class="54627" cy="-334.27933" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-837.82"
class="41248" cy="-683.69763" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-740.34424"
class="58580" cy="-573.47797" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="100.9708"
class="45616" cy="-847.90027" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="217.57895"
class="51497" cy="1215.1362" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-59.219997"
class="55812" cy="-657.33075" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-127.47871"
class="50879" cy="-865.12244" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-387.1937"
class="35012" cy="-253.6319" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="193.92"
class="37227" cy="-877.88904" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-661.31287"
class="48116" cy="762.62476" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-625.9669"
class="50259" cy="-438.4531" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-54.393417"
class="47966" cy="-561.51056" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-122.7324"
class="59540" cy="-671.6318" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-477.66507"
class="41979" cy="-55.21029" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-607.02594"
class="36376" cy="53.394363" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-548.60406"
class="35183" cy="98.69756" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="778.8361"
class="35305" cy="-186.40785" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1168.2532"
class="49546" cy="-98.45996" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1098.8748"
class="56447" cy="-27.169752" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1082.7032"
class="56147" cy="-104.716484" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-613.65955"
class="37680" cy="209.87941" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1298.8533"
class="53211" cy="-136.61958" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1361.0331"
class="36255" cy="-190.56927" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-431.1661"
class="45268" cy="970.97064" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-357.51645"
class="40923" cy="-195.6694" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-426.07236"
class="58167" cy="-441.79105" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="585.1009"
class="50621" cy="561.41077" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-770.9845"
class="58717" cy="708.5656" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-778.1364"
class="48485" cy="590.9874" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="250.24155"
class="59420" cy="-615.837" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="147.05557"
class="37914" cy="-582.5693" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-187.40295"
class="60652" cy="-976.8049" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="242.61925"
class="56222" cy="-669.13165" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="270.42673"
class="39027" cy="-981.3573" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="188.69861"
class="42217" cy="-679.81934" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1230.1805"
class="48815" cy="71.306274" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1125.719"
class="36619" cy="17.557138" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-130.88573"
class="38246" cy="-989.74786" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-111.87178"
class="47732" cy="-87.91951" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-784.6478"
class="42297" cy="-512.9226" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-913.10596"
class="39941" cy="-578.41504" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-30.651371"
class="56719" cy="-74.63268" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-707.7378"
class="43653" cy="132.4948" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-195.60313"
class="56863" cy="-20.704212" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-270.26138"
class="56315" cy="14.59963" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="291.4722"
class="40153" cy="831.5725" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-20.173458"
class="41384" cy="-345.1745" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-790.34607"
class="41901" cy="-100.46304" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-978.32227"
class="41724" cy="-33.283398" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="382.7121"
class="47829" cy="459.46243" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,101 @@
graph g{
54569 -- 58613;
42860 -- 37599;
42860 -- 40047;
42860 -- 37451;
37658 -- 58704;
54663 -- 37599;
54663 -- 41061;
54663 -- 49259;
54663 -- 32809;
36278 -- 55578;
58704 -- 43206;
58704 -- 53486;
33987 -- 49965;
44552 -- 46502;
33275 -- 49538;
46293 -- 49524;
46293 -- 49556;
46293 -- 34871;
46293 -- 38398;
34825 -- 50531;
52758 -- 51618;
33274 -- 49538;
47001 -- 33853;
47001 -- 32809;
47001 -- 33671;
54446 -- 36175;
54446 -- 49259;
54446 -- 58196;
54446 -- 35807;
55578 -- 60232;
55578 -- 35677;
54655 -- 47050;
54655 -- 39636;
54655 -- 41307;
37161 -- 49538;
37161 -- 46502;
37161 -- 53648;
47289 -- 41307;
33562 -- 42938;
33562 -- 54627;
41248 -- 58580;
45616 -- 60232;
33853 -- 51497;
55812 -- 49524;
55812 -- 50879;
35012 -- 42938;
60232 -- 49524;
60232 -- 37227;
39636 -- 48116;
58580 -- 50259;
47966 -- 59540;
47966 -- 49524;
41979 -- 42938;
41979 -- 36376;
41979 -- 35183;
43206 -- 35305;
43206 -- 49546;
43206 -- 56447;
43206 -- 56147;
37680 -- 35183;
53211 -- 49546;
53211 -- 36255;
45268 -- 41307;
42938 -- 49524;
42938 -- 49965;
42938 -- 40923;
42938 -- 58167;
49556 -- 35305;
50621 -- 49259;
58717 -- 48116;
58717 -- 48485;
58613 -- 58167;
59420 -- 37914;
60652 -- 50879;
56222 -- 37914;
39027 -- 37227;
37914 -- 49524;
37914 -- 42217;
48815 -- 36619;
50879 -- 38246;
50531 -- 50259;
50531 -- 47732;
50531 -- 51618;
37599 -- 47732;
42297 -- 50259;
42297 -- 39941;
56719 -- 47732;
49538 -- 47732;
49538 -- 47050;
36376 -- 43653;
56863 -- 47732;
56863 -- 56315;
40153 -- 32809;
54627 -- 41384;
49524 -- 47732;
41901 -- 41724;
41901 -- 49965;
36619 -- 41724;
47829 -- 53648;
}

View File

@ -0,0 +1,201 @@
graph g{
54569 -- 58613;
57318 -- 40153;
42860 -- 37599;
42860 -- 40047;
42860 -- 37451;
42860 -- 58425;
38482 -- 60633;
54663 -- 37599;
54663 -- 41061;
54663 -- 49259;
54663 -- 32809;
54663 -- 45172;
50173 -- 50879;
58704 -- 43206;
58704 -- 53486;
58704 -- 37658;
58704 -- 58080;
58072 -- 60652;
58072 -- 52683;
44552 -- 46502;
50822 -- 40923;
50822 -- 40913;
50822 -- 53308;
33987 -- 49965;
33987 -- 54099;
51800 -- 53138;
51800 -- 40148;
33275 -- 49538;
46293 -- 49524;
46293 -- 49556;
46293 -- 34871;
46293 -- 38398;
46293 -- 34510;
46293 -- 50510;
46293 -- 51486;
51809 -- 32881;
34825 -- 50531;
60517 -- 34016;
60517 -- 50338;
33274 -- 49538;
33274 -- 33360;
49575 -- 54627;
54446 -- 36175;
54446 -- 49259;
54446 -- 58196;
54446 -- 35807;
54446 -- 38732;
47001 -- 33853;
47001 -- 32809;
47001 -- 33671;
47001 -- 39830;
44132 -- 60652;
54655 -- 47050;
54655 -- 39636;
54655 -- 41307;
54655 -- 56290;
54655 -- 45644;
33562 -- 42938;
33562 -- 54627;
33562 -- 46998;
38584 -- 43215;
41248 -- 58580;
41248 -- 56124;
33853 -- 51497;
42858 -- 32809;
55812 -- 49524;
55812 -- 50879;
56191 -- 37227;
57981 -- 49636;
60232 -- 49524;
60232 -- 37227;
60232 -- 55578;
60232 -- 45616;
60232 -- 47245;
45513 -- 39636;
42744 -- 37599;
58580 -- 50259;
45268 -- 41307;
42938 -- 49524;
42938 -- 49965;
42938 -- 41979;
42938 -- 40923;
42938 -- 58167;
42938 -- 35012;
42938 -- 46897;
42938 -- 43760;
42938 -- 37659;
49556 -- 35305;
59151 -- 37914;
59151 -- 59735;
38300 -- 38533;
48685 -- 35305;
45676 -- 60652;
58717 -- 48116;
58717 -- 48485;
50417 -- 41724;
59420 -- 37914;
58425 -- 39563;
36228 -- 37680;
39027 -- 37227;
39027 -- 51331;
39027 -- 45958;
49546 -- 43206;
49546 -- 53211;
49546 -- 60178;
35305 -- 43206;
35305 -- 47978;
42629 -- 41724;
42297 -- 50259;
42297 -- 39941;
49636 -- 50259;
37408 -- 33006;
37408 -- 33094;
56719 -- 47732;
39695 -- 40047;
40923 -- 55756;
40923 -- 60314;
36376 -- 41979;
36376 -- 43653;
36376 -- 59113;
49538 -- 47732;
49538 -- 47050;
49538 -- 37161;
42892 -- 34179;
56863 -- 47732;
56863 -- 56315;
56863 -- 34016;
56863 -- 38695;
42419 -- 59113;
42016 -- 37227;
47956 -- 36278;
57200 -- 45616;
49524 -- 47732;
49524 -- 37914;
49524 -- 47966;
36175 -- 32881;
59540 -- 47966;
59540 -- 38331;
41384 -- 54627;
41384 -- 53138;
52723 -- 49965;
56315 -- 56815;
60633 -- 50621;
56837 -- 37161;
37227 -- 43639;
59188 -- 49965;
59188 -- 36557;
55828 -- 53648;
47732 -- 37599;
47732 -- 50531;
36255 -- 53211;
36255 -- 34179;
56447 -- 43206;
48116 -- 39636;
32874 -- 51331;
47829 -- 53648;
49259 -- 50621;
60744 -- 37599;
34871 -- 43628;
35348 -- 40153;
36278 -- 55578;
58123 -- 46502;
52758 -- 51618;
48847 -- 47289;
48847 -- 53476;
55578 -- 35677;
55578 -- 37671;
37161 -- 46502;
37161 -- 53648;
37161 -- 36824;
47289 -- 41307;
40817 -- 43215;
50510 -- 56901;
41979 -- 35183;
43206 -- 56147;
37680 -- 35183;
58613 -- 58167;
56222 -- 37914;
60652 -- 50879;
43215 -- 40066;
37914 -- 42217;
48815 -- 36619;
50879 -- 38246;
50879 -- 59809;
38533 -- 50259;
50531 -- 50259;
50531 -- 51618;
50531 -- 44084;
38732 -- 40066;
48486 -- 59809;
41307 -- 40532;
47050 -- 33006;
40153 -- 32809;
56147 -- 52196;
41901 -- 41724;
41901 -- 49965;
36619 -- 41724;
33006 -- 40283;
36690 -- 49965;
}

View File

@ -0,0 +1,161 @@
graph g{
54569 -- 58613;
57318 -- 40153;
37659 -- 42938;
42860 -- 40047;
42860 -- 37451;
42860 -- 58425;
42860 -- 42744;
42860 -- 47732;
38482 -- 50621;
50173 -- 50879;
58704 -- 53486;
58704 -- 58080;
58704 -- 35305;
58704 -- 49546;
58123 -- 46502;
58072 -- 44132;
58072 -- 50879;
33987 -- 49965;
33987 -- 54099;
50822 -- 40923;
50822 -- 40913;
50822 -- 53308;
44552 -- 46502;
51800 -- 53138;
51800 -- 40148;
33275 -- 49538;
43628 -- 34871;
46293 -- 49524;
46293 -- 49556;
46293 -- 34871;
46293 -- 38398;
46293 -- 34510;
46293 -- 51486;
46293 -- 56901;
34825 -- 50531;
33274 -- 49538;
41061 -- 49259;
41061 -- 45172;
41061 -- 42744;
48847 -- 47289;
47001 -- 33853;
47001 -- 32809;
47001 -- 33671;
55578 -- 35677;
55578 -- 37671;
55578 -- 57200;
55578 -- 47245;
55578 -- 47956;
55578 -- 49524;
55578 -- 43639;
44132 -- 50879;
54655 -- 47050;
54655 -- 39636;
54655 -- 41307;
54655 -- 56290;
34179 -- 42892;
34179 -- 53211;
37161 -- 49538;
37161 -- 46502;
37161 -- 53648;
37161 -- 56837;
47289 -- 41307;
33562 -- 42938;
33562 -- 54627;
38584 -- 43215;
56815 -- 56315;
43639 -- 56191;
41248 -- 58580;
41248 -- 56124;
55812 -- 49524;
55812 -- 50879;
35012 -- 42938;
56191 -- 42016;
40817 -- 43215;
57981 -- 49636;
39636 -- 48116;
58580 -- 50259;
45172 -- 32809;
45172 -- 47732;
47966 -- 59540;
47966 -- 49524;
41979 -- 42938;
41979 -- 36376;
41979 -- 35183;
53211 -- 49546;
60178 -- 49546;
42938 -- 49524;
42938 -- 49965;
42938 -- 40923;
42938 -- 58167;
42938 -- 46897;
42938 -- 43760;
58196 -- 35807;
58196 -- 49259;
49556 -- 35305;
59151 -- 37914;
59151 -- 59735;
38300 -- 38533;
48685 -- 35305;
50621 -- 49259;
58613 -- 58167;
59420 -- 37914;
56222 -- 37914;
58425 -- 39563;
43215 -- 40066;
47978 -- 35305;
35183 -- 36228;
39027 -- 51331;
39027 -- 42016;
39027 -- 49524;
55756 -- 40923;
37914 -- 49524;
37914 -- 42217;
49546 -- 35305;
48815 -- 36619;
50879 -- 59809;
38533 -- 50259;
50531 -- 50259;
50531 -- 47732;
50531 -- 51618;
50531 -- 44084;
42629 -- 41724;
42297 -- 50259;
42297 -- 39941;
49636 -- 50259;
38732 -- 40066;
38732 -- 35807;
38732 -- 32881;
38732 -- 49259;
37408 -- 33094;
37408 -- 47050;
48486 -- 59809;
56719 -- 47732;
40923 -- 60314;
49538 -- 47732;
49538 -- 47050;
36376 -- 43653;
36376 -- 59113;
42419 -- 59113;
40153 -- 32809;
40153 -- 35348;
57200 -- 47245;
54627 -- 41384;
49524 -- 47732;
49524 -- 47245;
41384 -- 53138;
52723 -- 49965;
50338 -- 34016;
41901 -- 41724;
41901 -- 49965;
56315 -- 34016;
56315 -- 47732;
36619 -- 41724;
38695 -- 47732;
38695 -- 34016;
55828 -- 53648;
32809 -- 49259;
47829 -- 53648;
49259 -- 32881;
}

View File

@ -0,0 +1,261 @@
graph g{
54569 -- 58613;
54569 -- 38183;
57318 -- 40153;
57318 -- 35483;
43911 -- 47050;
33470 -- 35807;
42860 -- 40047;
42860 -- 37451;
42860 -- 58425;
42860 -- 42744;
42860 -- 47732;
42860 -- 48822;
38482 -- 50621;
33641 -- 59711;
50173 -- 50879;
58704 -- 53486;
58704 -- 58080;
58704 -- 35305;
58704 -- 49546;
58704 -- 58883;
42728 -- 49546;
58072 -- 44132;
58072 -- 50879;
58072 -- 48504;
44552 -- 46502;
50822 -- 40923;
50822 -- 40913;
50822 -- 53308;
50822 -- 38390;
50822 -- 58829;
33987 -- 49965;
33987 -- 54099;
33987 -- 36227;
51800 -- 53138;
51800 -- 40148;
33275 -- 49538;
46293 -- 49524;
46293 -- 49556;
46293 -- 34871;
46293 -- 38398;
46293 -- 34510;
46293 -- 51486;
46293 -- 56901;
46293 -- 37565;
34825 -- 50531;
33274 -- 49538;
47001 -- 33853;
47001 -- 32809;
47001 -- 33671;
44279 -- 49347;
44132 -- 50879;
44132 -- 54869;
42920 -- 53486;
54655 -- 47050;
54655 -- 39636;
54655 -- 41307;
54655 -- 56290;
49768 -- 53308;
33562 -- 42938;
33562 -- 54627;
54656 -- 50621;
60091 -- 37437;
38584 -- 43215;
41248 -- 58580;
41248 -- 56124;
51422 -- 47362;
51422 -- 49546;
51422 -- 41909;
55812 -- 49524;
55812 -- 50879;
47917 -- 60146;
56191 -- 43639;
56191 -- 42016;
57981 -- 49636;
57981 -- 42647;
57981 -- 47284;
42744 -- 41061;
42744 -- 60146;
59434 -- 59151;
58580 -- 50259;
45172 -- 32809;
45172 -- 47732;
45172 -- 41061;
46124 -- 39941;
59088 -- 58167;
51450 -- 57200;
49347 -- 35807;
54119 -- 49190;
56385 -- 52723;
42938 -- 49524;
42938 -- 49965;
42938 -- 41979;
42938 -- 40923;
42938 -- 58167;
42938 -- 35012;
42938 -- 46897;
42938 -- 43760;
42938 -- 37659;
58196 -- 35807;
58196 -- 49259;
49556 -- 35305;
59151 -- 37914;
59151 -- 59735;
38301 -- 36619;
38300 -- 38533;
59155 -- 42239;
57995 -- 53308;
52802 -- 42016;
33671 -- 50671;
48685 -- 35305;
59420 -- 37914;
58425 -- 39563;
57714 -- 34871;
36228 -- 35183;
36228 -- 35627;
53949 -- 41724;
39027 -- 51331;
39027 -- 42016;
39027 -- 49524;
49546 -- 53211;
49546 -- 60178;
49546 -- 35305;
35305 -- 47978;
44547 -- 41901;
42629 -- 41724;
42629 -- 43510;
41165 -- 35348;
42297 -- 50259;
42297 -- 39941;
42297 -- 59711;
49636 -- 50259;
37408 -- 33094;
37408 -- 47050;
37408 -- 46714;
37408 -- 47749;
57720 -- 47305;
56719 -- 47732;
40923 -- 55756;
40923 -- 60314;
49538 -- 47732;
49538 -- 47050;
49538 -- 37161;
36376 -- 41979;
36376 -- 43653;
36376 -- 59113;
50928 -- 32908;
50928 -- 34016;
42892 -- 34179;
35880 -- 50912;
42419 -- 59113;
33094 -- 48158;
33094 -- 35535;
47956 -- 55578;
42019 -- 56222;
57200 -- 47245;
57200 -- 55578;
57200 -- 57169;
49524 -- 47732;
49524 -- 37914;
49524 -- 47966;
49524 -- 47245;
49524 -- 55578;
49524 -- 48023;
54099 -- 55682;
54099 -- 35009;
59540 -- 47966;
50912 -- 47245;
47245 -- 55578;
41384 -- 54627;
41384 -- 53138;
41384 -- 51632;
52723 -- 49965;
56315 -- 56815;
56315 -- 34016;
56315 -- 47732;
56315 -- 35871;
56837 -- 37161;
38695 -- 47732;
38695 -- 34016;
47732 -- 50531;
55828 -- 53648;
55828 -- 37437;
57536 -- 38533;
57536 -- 35651;
34883 -- 35651;
48116 -- 39636;
44637 -- 56901;
50986 -- 35183;
54069 -- 37659;
47829 -- 53648;
36864 -- 47865;
59463 -- 53486;
44447 -- 60178;
49259 -- 50621;
49259 -- 32809;
49259 -- 41061;
49259 -- 38732;
49259 -- 32881;
60202 -- 53441;
59369 -- 41901;
32881 -- 38732;
32881 -- 33551;
34871 -- 43628;
34871 -- 48709;
57428 -- 53138;
35348 -- 40153;
40839 -- 47170;
58123 -- 46502;
54373 -- 47978;
44098 -- 35627;
40429 -- 41979;
48847 -- 47289;
55578 -- 35677;
55578 -- 37671;
55578 -- 43639;
55570 -- 47966;
34179 -- 53211;
37161 -- 46502;
37161 -- 53648;
47289 -- 41307;
39258 -- 51108;
56815 -- 33127;
56813 -- 56124;
38264 -- 35012;
35012 -- 51108;
40817 -- 43215;
35568 -- 53648;
41979 -- 35183;
42239 -- 57169;
47865 -- 54627;
50621 -- 47307;
58613 -- 58167;
58613 -- 49190;
56222 -- 37914;
43215 -- 40066;
47978 -- 47170;
37914 -- 42217;
48815 -- 36619;
50879 -- 59809;
50879 -- 48595;
38533 -- 50259;
38533 -- 59401;
51008 -- 55682;
50531 -- 50259;
50531 -- 51618;
50531 -- 44084;
50531 -- 41800;
38732 -- 40066;
38732 -- 35807;
48486 -- 59809;
48486 -- 53441;
47050 -- 47305;
47050 -- 34400;
40153 -- 32809;
50338 -- 34016;
41901 -- 41724;
41901 -- 49965;
36619 -- 41724;
56642 -- 32809;
}

View File

@ -0,0 +1,220 @@
graph g{
54569 -- 58613;
54569 -- 38183;
57318 -- 40153;
43911 -- 47305;
43911 -- 37408;
33470 -- 35807;
38482 -- 47307;
38482 -- 49259;
50173 -- 59809;
50173 -- 55812;
58704 -- 35305;
58704 -- 49546;
58704 -- 58883;
58704 -- 59463;
58072 -- 44132;
58072 -- 48504;
58072 -- 48595;
42728 -- 49546;
44552 -- 46502;
50822 -- 40923;
50822 -- 40913;
50822 -- 53308;
50822 -- 58829;
33987 -- 49965;
33987 -- 54099;
51800 -- 53138;
51800 -- 40148;
33275 -- 33274;
33275 -- 37161;
46293 -- 49524;
46293 -- 34871;
46293 -- 38398;
46293 -- 34510;
46293 -- 51486;
46293 -- 56901;
46293 -- 37565;
46293 -- 35305;
34825 -- 50531;
33274 -- 54655;
47001 -- 32809;
47001 -- 33671;
44132 -- 54869;
44132 -- 59809;
44279 -- 49347;
54655 -- 39636;
54655 -- 56290;
54655 -- 47289;
54655 -- 37408;
54655 -- 47305;
49768 -- 53308;
33562 -- 42938;
33562 -- 54627;
38584 -- 40066;
38584 -- 40817;
37451 -- 58425;
37451 -- 40047;
41248 -- 58580;
41248 -- 56124;
55812 -- 49524;
55812 -- 48595;
56191 -- 43639;
56191 -- 42016;
58580 -- 50259;
59434 -- 59151;
42744 -- 41061;
42744 -- 60146;
42744 -- 47732;
42744 -- 58425;
45172 -- 32809;
45172 -- 47732;
45172 -- 41061;
46124 -- 39941;
59088 -- 58167;
49347 -- 35807;
51450 -- 57200;
54119 -- 58613;
56385 -- 52723;
58196 -- 35807;
58196 -- 49259;
42938 -- 49524;
42938 -- 49965;
42938 -- 41979;
42938 -- 40923;
42938 -- 58167;
42938 -- 35012;
42938 -- 46897;
42938 -- 37659;
42647 -- 47284;
42647 -- 49636;
59151 -- 59735;
59151 -- 49524;
59151 -- 56222;
38300 -- 38533;
59155 -- 57169;
52802 -- 42016;
33671 -- 50671;
48685 -- 35305;
59420 -- 49524;
59420 -- 56222;
57714 -- 34871;
36228 -- 35183;
36228 -- 35627;
53949 -- 41724;
39027 -- 51331;
39027 -- 42016;
39027 -- 49524;
49546 -- 53211;
49546 -- 35305;
49546 -- 41909;
49546 -- 47362;
49546 -- 44447;
35305 -- 47978;
44547 -- 41724;
44547 -- 59369;
42629 -- 41724;
42629 -- 43510;
41165 -- 35348;
49636 -- 50259;
49636 -- 47284;
37408 -- 33094;
37408 -- 46714;
37408 -- 47749;
57720 -- 47305;
56719 -- 47732;
40923 -- 55756;
40923 -- 60314;
50928 -- 32908;
50928 -- 34016;
42892 -- 34179;
35880 -- 50912;
42419 -- 59113;
33094 -- 48158;
33094 -- 35535;
47956 -- 55578;
42019 -- 56222;
57200 -- 55578;
57200 -- 57169;
57200 -- 50912;
49524 -- 47732;
49524 -- 47966;
49524 -- 55578;
49524 -- 50912;
54099 -- 55682;
54099 -- 35009;
59540 -- 47966;
41384 -- 54627;
41384 -- 53138;
41384 -- 51632;
52723 -- 49965;
56315 -- 56815;
56315 -- 34016;
56315 -- 47732;
39941 -- 50259;
56837 -- 37161;
38695 -- 47732;
38695 -- 34016;
47732 -- 50531;
47732 -- 48822;
47732 -- 37161;
47732 -- 47305;
57536 -- 38533;
57536 -- 35651;
48116 -- 39636;
43653 -- 59113;
43653 -- 41979;
44637 -- 56901;
50986 -- 35183;
54069 -- 37659;
47829 -- 53648;
36864 -- 47865;
49259 -- 32809;
49259 -- 41061;
49259 -- 38732;
49259 -- 32881;
49259 -- 47307;
60202 -- 53441;
59369 -- 49965;
37437 -- 53648;
32881 -- 38732;
32881 -- 33551;
34871 -- 43628;
34871 -- 48709;
57428 -- 53138;
35348 -- 40153;
40839 -- 47170;
54373 -- 47978;
48847 -- 47289;
55578 -- 37671;
55578 -- 43639;
55570 -- 47966;
34179 -- 53211;
37161 -- 46502;
37161 -- 53648;
56815 -- 33127;
38264 -- 35012;
35012 -- 51108;
40817 -- 40066;
35568 -- 53648;
41979 -- 35183;
41979 -- 59113;
48822 -- 40047;
47865 -- 54627;
58613 -- 58167;
47978 -- 47170;
38533 -- 50259;
38533 -- 59401;
50531 -- 50259;
50531 -- 41800;
47362 -- 41909;
38732 -- 40066;
38732 -- 35807;
48486 -- 59809;
48486 -- 53441;
40153 -- 32809;
50338 -- 34016;
36619 -- 41724;
56642 -- 32809;
49965 -- 41724;
}

View File

@ -0,0 +1,177 @@
graph g{
43911 -- 47305;
43911 -- 37408;
37659 -- 49524;
37659 -- 46897;
40839 -- 47170;
33470 -- 49347;
33470 -- 38732;
38482 -- 47307;
38482 -- 49259;
48709 -- 46293;
48709 -- 57714;
50173 -- 55812;
50173 -- 44132;
50173 -- 53441;
58704 -- 35305;
58704 -- 49546;
58704 -- 58883;
42728 -- 49546;
50822 -- 40923;
50822 -- 40913;
50822 -- 58829;
54373 -- 47978;
33987 -- 49965;
33987 -- 54099;
35009 -- 54099;
51800 -- 40148;
51800 -- 57428;
51800 -- 41384;
33275 -- 33274;
33275 -- 37161;
43628 -- 57714;
43628 -- 46293;
46293 -- 49524;
46293 -- 38398;
46293 -- 34510;
46293 -- 51486;
46293 -- 56901;
46293 -- 37565;
46293 -- 35305;
34825 -- 47732;
34825 -- 50259;
33274 -- 54655;
48847 -- 47289;
47001 -- 32809;
47001 -- 33671;
55578 -- 47956;
55578 -- 49524;
55578 -- 43639;
55578 -- 57169;
55578 -- 50912;
44132 -- 54869;
44132 -- 55812;
44132 -- 53441;
44279 -- 49347;
54655 -- 39636;
54655 -- 56290;
54655 -- 47289;
54655 -- 37408;
54655 -- 47305;
55570 -- 47966;
34179 -- 42892;
34179 -- 53211;
37161 -- 46502;
37161 -- 47732;
37161 -- 37437;
37161 -- 35568;
46714 -- 37408;
33562 -- 54627;
33562 -- 49965;
33562 -- 35183;
33562 -- 40923;
43639 -- 56191;
56815 -- 56315;
56815 -- 33127;
41248 -- 58580;
38264 -- 35012;
35012 -- 46897;
35012 -- 58167;
55812 -- 49524;
48158 -- 33094;
56191 -- 42016;
39636 -- 48116;
56901 -- 44637;
42744 -- 60146;
42744 -- 47732;
42744 -- 58425;
42744 -- 49259;
42744 -- 45172;
59434 -- 59151;
58580 -- 50259;
45172 -- 32809;
45172 -- 47732;
45172 -- 49259;
35568 -- 37437;
47966 -- 59540;
47966 -- 49524;
51450 -- 50912;
51450 -- 57169;
49347 -- 49259;
54119 -- 58613;
53211 -- 49546;
48822 -- 40047;
48822 -- 47732;
38183 -- 58613;
56385 -- 52723;
42647 -- 47284;
42647 -- 50259;
59151 -- 49524;
59151 -- 56222;
40047 -- 58425;
35627 -- 36228;
38300 -- 38533;
59155 -- 57169;
52802 -- 42016;
33671 -- 50671;
48685 -- 35305;
58613 -- 58167;
59420 -- 49524;
59420 -- 56222;
56222 -- 42019;
47978 -- 35305;
47978 -- 47170;
35183 -- 36228;
35183 -- 50986;
35183 -- 43653;
39027 -- 51331;
39027 -- 42016;
39027 -- 49524;
55756 -- 40923;
49546 -- 35305;
49546 -- 41909;
49546 -- 47362;
49546 -- 44447;
44547 -- 41724;
44547 -- 59369;
38533 -- 50259;
38533 -- 59401;
38533 -- 57536;
42629 -- 41724;
41165 -- 35348;
47362 -- 41909;
38732 -- 40066;
38732 -- 32881;
38732 -- 49259;
37408 -- 33094;
57720 -- 47305;
56719 -- 47732;
58167 -- 40923;
40923 -- 59113;
35880 -- 50912;
33094 -- 35535;
54627 -- 41384;
54627 -- 36864;
49524 -- 47732;
49524 -- 50912;
49524 -- 49965;
54099 -- 55682;
41384 -- 57428;
52723 -- 49965;
56315 -- 34016;
56315 -- 47732;
50338 -- 34016;
39941 -- 50259;
47305 -- 47732;
47284 -- 50259;
47307 -- 49259;
47732 -- 50259;
47732 -- 34016;
33551 -- 32881;
32809 -- 49259;
32809 -- 35348;
49965 -- 59369;
49965 -- 41724;
43653 -- 59113;
49259 -- 32881;
}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 84 KiB

View File

@ -0,0 +1,940 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg contentScriptType="text/ecmascript" width="595px"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify"
contentStyleType="text/css" viewBox="-1574 -1730 2877 3698" height="764px"
preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<g id="edges">
<path fill="none" stroke-width="1.0"
d="M -62.559429,-77.848183 C -97.913467,-99.461273 -118.524872,-184.911957 -96.911781,-220.265991"
class="54569 58613" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -96.911781,-220.265991 C -126.828804,-251.749069 -124.479713,-343.849213 -92.996635,-373.766235"
class="58613 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -408.531525,695.570679 C -398.793243,730.687927 -436.861755,797.971252 -471.979004,807.709473"
class="57318 40153" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -471.979004,807.709473 C -442.754242,824.462280 -424.046326,893.428528 -440.799103,922.653259"
class="40153 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -471.979004,807.709473 C -492.501373,788.833191 -494.970490,729.735107 -476.094177,709.212708"
class="40153 35348" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -137.037582,-494.257385 C -123.699295,-518.078735 -67.959831,-533.803345 -44.138485,-520.465027"
class="37659 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C -134.836334,-572.034607 -193.528687,-785.435730 -141.959091,-876.133606"
class="42938 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C -119.199760,-489.077240 -278.873322,-554.587524 -310.261078,-629.648804"
class="42938 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C 76.100250,-525.467651 263.962311,-352.613464 268.964935,-232.374741"
class="42938 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C -24.570356,-481.353638 -53.885246,-393.334351 -92.996635,-373.766235"
class="42938 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C -73.137466,-516.097473 -123.187294,-553.044556 -127.554855,-582.043579"
class="42938 46897" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -44.138485,-520.465027 C -69.505066,-537.027893 -82.710594,-599.922119 -66.147705,-625.288696"
class="42938 43760" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.808044,509.304565 C -344.602570,527.947388 -406.758575,521.719849 -425.401428,498.925323"
class="42860 40047" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.808044,509.304565 C -328.437866,536.967712 -379.877380,568.517822 -407.540588,561.888000"
class="42860 37451" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.808044,509.304565 C -343.942444,557.080811 -448.808441,595.543701 -496.584747,573.409302"
class="42860 58425" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.808044,509.304565 C -284.865723,553.485779 -295.724121,675.171143 -339.905334,712.113464"
class="42860 42744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.808044,509.304565 C -322.886261,428.508148 -203.308929,305.696259 -122.512527,304.618042"
class="42860 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -496.584747,573.409302 C -512.519470,608.581726 -589.180115,637.438171 -624.352539,621.503418"
class="58425 39563" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -126.760941,1075.904541 C -141.558990,1120.161377 -230.141312,1164.349609 -274.398163,1149.551514"
class="38482 50621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -274.398163,1149.551514 C -304.091736,1179.226685 -393.144867,1179.198975 -422.820007,1149.505493"
class="50621 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1061.107422,-412.058624 C 1051.674316,-373.524963 979.724304,-329.874054 941.190674,-339.307068"
class="50173 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 941.190674,-339.307068 C 976.272766,-387.920563 1101.816040,-408.217682 1150.429565,-373.135620"
class="50879 59809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 868.123230,-1421.596313 C 881.281860,-1452.667480 947.626648,-1479.536621 978.697876,-1466.377930"
class="58704 53486" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 868.123230,-1421.596313 C 864.840820,-1448.679321 900.541748,-1494.227417 927.624817,-1497.509888"
class="58704 58080" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 868.123230,-1421.596313 C 881.699707,-1369.664673 824.166931,-1271.402344 772.235229,-1257.825928"
class="58704 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 868.123230,-1421.596313 C 840.124268,-1409.506592 779.991272,-1433.370605 767.901611,-1461.369507"
class="58704 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 767.901611,-1461.369507 C 809.477051,-1421.527466 812.077271,-1299.401367 772.235229,-1257.825928"
class="49546 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 595.860901,1149.888062 C 560.088562,1145.879272 512.443359,1086.207520 516.452148,1050.435303"
class="58123 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1076.294678,-307.571838 C 1042.926880,-286.898071 961.864441,-305.939209 941.190674,-339.307068"
class="58072 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1076.294678,-307.571838 C 1067.554321,-316.143494 1067.301147,-342.111542 1075.872803,-350.851959"
class="58072 44132" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1075.872803,-350.851959 C 1051.245361,-321.606537 970.436035,-314.679626 941.190674,-339.307068"
class="44132 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -216.689728,-1037.053101 C -169.559692,-1019.815308 -124.721313,-923.263611 -141.959091,-876.133606"
class="33987 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -216.689728,-1037.053101 C -252.962677,-1047.932983 -291.052307,-1118.662109 -280.172485,-1154.935059"
class="33987 54099" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -513.920105,-709.648804 C -457.188293,-734.380615 -334.992889,-686.380615 -310.261078,-629.648804"
class="50822 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -513.920105,-709.648804 C -543.829224,-687.700012 -621.616028,-699.640442 -643.564819,-729.549561"
class="50822 40913" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -513.920105,-709.648804 C -551.276001,-703.529114 -616.489380,-750.383423 -622.609070,-787.739319"
class="50822 53308" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -310.261078,-629.648804 C -343.264679,-629.234070 -393.392242,-678.117371 -393.806976,-711.120972"
class="40923 60314" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 631.737549,1100.153931 C 598.736755,1113.267334 529.565491,1083.436157 516.452148,1050.435303"
class="44552 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -915.507141,-1373.417358 C -864.850830,-1373.592163 -788.604126,-1297.869751 -788.429382,-1247.213501"
class="51800 53138" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -915.507141,-1373.417358 C -951.995117,-1373.999390 -1005.854004,-1429.604492 -1005.271912,-1466.092529"
class="51800 40148" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 183.145325,785.092773 C 153.225830,789.833923 101.234947,752.066284 96.493843,722.146790"
class="33275 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 96.493843,722.146790 C -30.813175,682.442322 -162.217010,431.925049 -122.512527,304.618042"
class="49538 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 96.493843,722.146790 C 166.003265,790.364685 167.940491,996.955688 99.722588,1066.465088"
class="49538 47050" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 546.146484,-960.770386 C 566.515930,-931.058289 552.501892,-855.935913 522.789795,-835.566467"
class="43628 34871" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 453.478912,-696.243469 477.817810,-806.820435 522.789795,-835.566467"
class="46293 34871" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 523.352295,-524.840149 395.396301,-273.502075 268.964935,-232.374741"
class="46293 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 450.595428,-745.018005 543.770996,-933.082092 637.517517,-964.711548"
class="46293 49556" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 456.369263,-673.437012 450.834015,-745.468811 472.999573,-771.324524"
class="46293 38398" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 471.203003,-683.441040 502.924438,-748.228271 535.093994,-759.250244"
class="46293 34510" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 496.590546,-685.199829 569.031372,-714.543823 602.959717,-700.178223"
class="46293 51486" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.224945,-651.271484 C 483.993896,-692.281433 548.162231,-751.142883 589.172180,-749.373901"
class="46293 56901" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 268.964935,-232.374741 C 298.067993,-46.680702 63.181511,275.514954 -122.512527,304.618042"
class="49524 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 268.964935,-232.374741 C 268.381439,-269.819458 323.673309,-326.861755 361.118011,-327.445251"
class="49524 47245" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 637.517517,-964.711548 C 605.838196,-1050.277954 686.668823,-1226.146484 772.235229,-1257.825928"
class="49556 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -693.781311,173.261292 C -662.704407,161.129440 -597.891296,189.547028 -585.759460,220.623917"
class="34825 50531" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -585.759460,220.623917 C -476.311249,144.773346 -198.363098,195.169830 -122.512527,304.618042"
class="50531 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -585.759460,220.623917 C -684.343018,282.142639 -924.496460,226.545425 -986.015198,127.961868"
class="50531 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -585.759460,220.623917 C -611.615723,247.690018 -690.999268,249.504807 -718.065369,223.648544"
class="50531 51618" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -585.759460,220.623917 C -597.591614,253.755402 -665.037109,285.704346 -698.168579,273.872192"
class="50531 44084" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 130.085907,823.415100 C 103.113831,809.879822 82.958595,749.118835 96.493843,722.146790"
class="33274 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -355.859467,884.433533 C -387.132660,846.778687 -377.560181,743.386597 -339.905334,712.113464"
class="41061 42744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -355.859467,884.433533 C -316.237183,950.840027 -356.413483,1109.883179 -422.820007,1149.505493"
class="41061 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -355.859467,884.433533 C -385.803101,825.248535 -341.941040,691.555603 -282.756012,661.611938"
class="41061 45172" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -422.820007,1149.505493 C -407.214569,1191.881226 -447.369995,1278.853027 -489.745758,1294.458496"
class="49259 32881" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -282.756012,661.611938 C -322.106079,558.164429 -225.959991,343.968109 -122.512527,304.618042"
class="45172 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -282.756012,661.611938 C -262.156372,745.428833 -356.982239,902.053650 -440.799103,922.653259"
class="45172 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 294.719269,1880.784546 C 261.825500,1862.614502 239.740036,1786.018677 257.910095,1753.125000"
class="48847 47289" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 257.910095,1753.125000 C 211.869110,1729.068359 178.892639,1623.921997 202.949265,1577.880981"
class="47289 41307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -623.964905,1057.523315 C -638.277527,1092.647949 -712.433411,1123.865967 -747.558044,1109.553345"
class="47001 33853" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -623.964905,1057.523315 C -614.305725,993.916138 -504.406250,912.994080 -440.799103,922.653259"
class="47001 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -623.964905,1057.523315 C -622.393494,1096.973633 -679.211792,1158.506348 -718.662109,1160.077759"
class="47001 33671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -440.799103,922.653259 C -391.832825,964.427856 -381.045380,1100.539185 -422.820007,1149.505493"
class="32809 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 447.167450,-311.137665 335.276794,-224.092819 268.964935,-232.374741"
class="55578 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 437.448181,-404.252380 450.650574,-471.458466 477.453430,-489.459686"
class="55578 35677" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 451.372620,-414.955383 501.516174,-477.329315 539.022034,-481.406097"
class="55578 37671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 438.149017,-370.583771 401.899811,-386.235718 395.034058,-403.536102"
class="55578 57200" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 446.583984,-348.582397 389.985138,-318.579834 361.118011,-327.445251"
class="55578 47245" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 464.233521,-408.329834 523.730103,-441.474121 554.610413,-432.690002"
class="55578 47956" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 455.449402,-377.449524 C 485.078979,-412.237854 581.705872,-419.975922 616.494202,-390.346344"
class="55578 43639" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 395.034058,-403.536102 C 403.469025,-381.534729 383.119385,-335.880219 361.118011,-327.445251"
class="57200 47245" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 616.494202,-390.346344 C 645.907410,-400.275482 704.920959,-371.049347 714.850037,-341.636139"
class="43639 56191" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 127.619026,1366.057983 C 62.121162,1311.718750 45.383293,1131.963013 99.722588,1066.465088"
class="54655 47050" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 127.619026,1366.057983 C 154.130325,1406.653809 133.003448,1507.314575 92.407570,1533.825928"
class="54655 39636" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 127.619026,1366.057983 C 185.049667,1393.356567 230.247818,1520.450317 202.949265,1577.880981"
class="54655 41307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 127.619026,1366.057983 C 113.057953,1389.479492 56.084122,1402.770142 32.662651,1388.208984"
class="54655 56290" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 92.407570,1533.825928 C 102.384415,1567.794922 66.396179,1633.713745 32.427170,1643.690552"
class="39636 48116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 607.637329,-1720.845703 C 588.943604,-1687.924072 511.520660,-1666.582275 478.599060,-1685.275879"
class="34179 42892" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 607.637329,-1720.845703 C 646.560913,-1722.984375 708.154236,-1667.806763 710.292786,-1628.883179"
class="34179 53211" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 710.292786,-1628.883179 C 755.317322,-1606.902222 789.882568,-1506.393921 767.901611,-1461.369507"
class="53211 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 362.918060,906.090759 C 422.493774,904.252808 514.614258,990.859558 516.452148,1050.435303"
class="37161 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 362.918060,906.090759 C 272.844421,922.586792 112.989891,812.220459 96.493843,722.146790"
class="37161 49538" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 362.918060,906.090759 C 415.171204,879.308228 533.724731,917.514099 560.507263,969.767212"
class="37161 53648" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 362.918060,906.090759 C 392.816162,910.489563 431.065094,961.934998 426.666260,991.833069"
class="37161 56837" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -250.854065,-735.832458 C -166.437469,-734.102112 -42.408112,-604.881653 -44.138485,-520.465027"
class="33562 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -250.854065,-735.832458 C -329.340881,-734.805847 -448.611023,-850.996094 -449.637634,-929.482910"
class="33562 54627" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -449.637634,-929.482910 C -519.994568,-926.794189 -629.563049,-1028.296387 -632.251770,-1098.653320"
class="54627 41384" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -534.978333,1954.974365 C -554.827026,1927.989746 -544.123047,1857.739624 -517.138367,1837.890991"
class="38584 43215" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -517.138367,1837.890991 C -556.689392,1796.056396 -553.263916,1673.977905 -511.429291,1634.427002"
class="43215 40066" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -331.078583,341.061676 C -322.788513,317.385681 -274.839417,294.306763 -251.163406,302.596832"
class="56815 56315" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -251.163406,302.596832 C -225.028992,277.270905 -147.838470,278.483643 -122.512527,304.618042"
class="56315 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -251.163406,302.596832 C -279.623413,303.980988 -324.389648,263.367157 -325.773804,234.907135"
class="56315 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 714.850037,-341.636139 C 714.952881,-308.279602 665.072327,-258.090515 631.715820,-257.987640"
class="56191 42016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1425.000000,49.231197 C -1377.044067,17.767467 -1257.914551,42.505791 -1226.450806,90.461739"
class="41248 58580" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1425.000000,49.231197 C -1458.783569,71.302353 -1542.565552,53.733803 -1564.636719,19.950272"
class="41248 56124" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1226.450806,90.461739 C -1170.863647,49.874641 -1026.602295,72.374725 -986.015198,127.961868"
class="58580 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 614.072815,-290.135498 C 669.662109,-365.393402 865.932800,-394.896332 941.190674,-339.307068"
class="55812 50879" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 614.072815,-290.135498 C 556.603333,-209.561768 349.538666,-174.905304 268.964935,-232.374741"
class="55812 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 9.567778,-549.834167 C 4.700354,-533.219055 -27.523403,-515.597595 -44.138485,-520.465027"
class="35012 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -479.349060,1957.511353 C -510.830994,1941.145142 -533.504578,1869.372925 -517.138367,1837.890991"
class="40817 43215" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1219.206299,-129.144257 C -1175.121948,-124.075531 -1116.598267,-50.345760 -1121.666992,-6.261306"
class="57981 49636" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1121.666992,-6.261306 C -1067.692017,-6.547029 -986.300903,73.986870 -986.015198,127.961868"
class="49636 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 235.576385,-348.648865 C 265.508911,-332.071747 285.542053,-262.307281 268.964935,-232.374741"
class="47966 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 235.576385,-348.648865 C 211.540970,-364.917450 199.890732,-425.373474 216.159332,-449.408905"
class="47966 59540" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 143.277725,-232.952713 C 48.292011,-252.971924 -64.157715,-425.479309 -44.138485,-520.465027"
class="41979 42938" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 143.277725,-232.952713 C 227.464981,-224.461685 341.009308,-85.444267 332.518280,-1.257017"
class="41979 36376" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 143.277725,-232.952713 C 189.781067,-214.765656 232.255463,-117.730064 214.068405,-71.226738"
class="41979 35183" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 332.518280,-1.257017 C 378.027161,10.134432 429.203339,95.484940 417.811890,140.993835"
class="36376 43653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 332.518280,-1.257017 C 398.777008,1.086386 494.649963,103.989578 492.306580,170.248291"
class="36376 59113" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 214.068405,-71.226738 C 258.517975,-57.108070 304.014343,30.744316 289.895691,75.193901"
class="35183 36228" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 687.211243,-1464.841431 C 704.043701,-1480.285156 752.457947,-1478.201904 767.901611,-1461.369507"
class="60178 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -437.303009,1312.787964 C -467.062897,1277.234863 -458.373108,1179.265381 -422.820007,1149.505493"
class="58196 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -437.303009,1312.787964 C -414.549133,1335.646851 -414.706604,1404.065918 -437.565460,1426.819824"
class="58196 35807" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 731.310974,-17.416748 C 678.334412,5.775707 564.080933,-38.900455 540.888428,-91.877014"
class="59151 37914" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 731.310974,-17.416748 C 769.160156,-34.600418 851.709534,-3.602104 868.893188,34.247112"
class="59151 59735" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 540.888428,-91.877014 C 458.404175,-65.591866 295.250092,-149.890503 268.964935,-232.374741"
class="37914 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 540.888428,-91.877014 C 574.884338,-100.939476 639.471924,-63.539291 648.534363,-29.543373"
class="37914 42217" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1298.939819,18.509874 C -1260.760132,2.066481 -1178.825562,34.670876 -1162.382202,72.850533"
class="38300 38533" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1162.382202,72.850533 C -1116.086548,48.599400 -1010.266296,81.666199 -986.015198,127.961868"
class="38533 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 831.954834,-1351.537720 C 838.753296,-1320.851440 802.921509,-1264.624268 772.235229,-1257.825928"
class="48685 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 609.466614,6.845878 C 576.006409,0.816938 534.859497,-58.416801 540.888428,-91.877014"
class="59420 37914" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 662.606628,-83.107048 C 636.509033,-60.517395 563.478088,-65.779381 540.888428,-91.877014"
class="56222 37914" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 885.310242,-1311.928711 C 873.515808,-1278.493164 805.670776,-1246.031494 772.235229,-1257.825928"
class="47978 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 469.976013,-226.944702 C 428.687805,-187.828491 308.081146,-191.086517 268.964935,-232.374741"
class="39027 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 469.976013,-226.944702 C 496.115387,-265.501251 593.159302,-284.127014 631.715820,-257.987640"
class="39027 42016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 469.976013,-226.944702 C 495.075714,-239.163605 551.053650,-219.842392 563.272522,-194.742691"
class="39027 51331" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -420.748444,-639.259277 C -396.728882,-659.434631 -330.436462,-653.668396 -310.261078,-629.648804"
class="55756 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -385.075775,-1706.225952 C -351.280090,-1688.492188 -327.187256,-1611.197998 -344.921051,-1577.402222"
class="48815 36619" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -344.921051,-1577.402222 C -297.042480,-1552.722046 -262.244934,-1443.883911 -286.925140,-1396.005249"
class="36619 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -316.295837,-1512.502075 C -287.122314,-1495.076904 -269.499908,-1425.178711 -286.925140,-1396.005249"
class="42629 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1165.661255,173.010406 C -1138.741821,128.071487 -1030.954102,101.042358 -986.015198,127.961868"
class="42297 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1165.661255,173.010406 C -1188.012207,206.103302 -1271.177856,222.216278 -1304.270752,199.865356"
class="42297 39941" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -482.922821,1398.809692 C -520.763062,1336.928345 -484.701416,1187.345825 -422.820007,1149.505493"
class="38732 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -482.922821,1398.809692 C -468.249329,1395.340332 -441.034912,1412.146240 -437.565460,1426.819824"
class="38732 35807" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -482.922821,1398.809692 C -441.500641,1451.634399 -458.604523,1593.004883 -511.429291,1634.427002"
class="38732 40066" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -482.922821,1398.809692 C -505.157654,1379.304077 -509.251404,1316.693359 -489.745758,1294.458496"
class="38732 32881" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 21.468994,1188.861938 C 12.640343,1148.731812 59.592499,1075.293701 99.722588,1066.465088"
class="37408 47050" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 21.468994,1188.861938 C 7.339990,1221.972412 -63.519119,1250.444458 -96.629524,1236.315430"
class="37408 33094" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1293.262451,-394.266968 C 1268.922241,-361.474121 1183.222412,-348.795288 1150.429565,-373.135620"
class="48486 59809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -109.370552,379.376282 C -126.950592,367.053009 -134.835785,322.198090 -122.512527,304.618042"
class="56719 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 616.221191,297.982666 C 565.891418,297.218719 491.542603,220.578094 492.306580,170.248291"
class="42419 59113" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -632.251770,-1098.653320 C -693.199341,-1097.129883 -786.905884,-1186.265991 -788.429382,-1247.213501"
class="41384 53138" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -139.812027,-991.880798 C -117.092003,-968.302002 -118.380241,-898.853638 -141.959091,-876.133606"
class="52723 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -421.914612,193.222656 C -394.349579,182.331390 -336.665070,207.342072 -325.773804,234.907135"
class="50338 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -211.213409,-1151.624023 C -142.264465,-1110.376709 -100.711868,-945.082581 -141.959091,-876.133606"
class="41901 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -211.213409,-1151.624023 C -275.231995,-1185.357910 -320.659058,-1331.986694 -286.925140,-1396.005249"
class="41901 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -221.653259,249.391846 C -190.779877,240.608932 -131.295425,273.744659 -122.512527,304.618042"
class="38695 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -221.653259,249.391846 C -245.374313,267.319000 -307.846649,258.628174 -325.773804,234.907135"
class="38695 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 678.969238,968.498230 C 655.530640,992.444397 584.453430,993.205811 560.507263,969.767212"
class="55828 53648" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 683.966064,1037.690430 C 645.689636,1048.797607 571.614380,1008.043640 560.507263,969.767212"
class="47829 53648" stroke-opacity="1.0" stroke="#999999"/>
</g>
<g id="nodes">
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-62.55943"
class="54569" cy="-77.84818" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-96.91178"
class="58613" cy="-220.26599" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-408.53152"
class="57318" cy="695.5707" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-471.979"
class="40153" cy="807.7095" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-137.03758"
class="37659" cy="-494.2574" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-44.138485"
class="42938" cy="-520.465" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-321.80804"
class="42860" cy="509.30457" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-425.40143"
class="40047" cy="498.92532" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-407.5406"
class="37451" cy="561.888" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-496.58475"
class="58425" cy="573.4093" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-339.90533"
class="42744" cy="712.11346" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-122.51253"
class="47732" cy="304.61804" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-126.76094"
class="38482" cy="1075.9045" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-274.39816"
class="50621" cy="1149.5515" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1061.1074"
class="50173" cy="-412.05862" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="941.1907"
class="50879" cy="-339.30707" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="868.1232"
class="58704" cy="-1421.5963" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="978.6979"
class="53486" cy="-1466.3779" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="927.6248"
class="58080" cy="-1497.5099" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="772.2352"
class="35305" cy="-1257.8259" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="767.9016"
class="49546" cy="-1461.3695" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="595.8609"
class="58123" cy="1149.8881" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="516.45215"
class="46502" cy="1050.4353" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1076.2947"
class="58072" cy="-307.57184" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1075.8728"
class="44132" cy="-350.85196" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-216.68973"
class="33987" cy="-1037.0531" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-141.95909"
class="49965" cy="-876.1336" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-280.1725"
class="54099" cy="-1154.935" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-513.9201"
class="50822" cy="-709.6488" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-310.26108"
class="40923" cy="-629.6488" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-643.5648"
class="40913" cy="-729.54956" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-622.6091"
class="53308" cy="-787.7393" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="631.73755"
class="44552" cy="1100.1539" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-915.50714"
class="51800" cy="-1373.4174" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-788.4294"
class="53138" cy="-1247.2135" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1005.2719"
class="40148" cy="-1466.0925" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="183.14532"
class="33275" cy="785.0928" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="96.49384"
class="49538" cy="722.1468" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="546.1465"
class="43628" cy="-960.7704" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="522.7898"
class="34871" cy="-835.56647" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="482.22495"
class="46293" cy="-651.2715" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="268.96494"
class="49524" cy="-232.37474" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="637.5175"
class="49556" cy="-964.71155" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="472.99957"
class="38398" cy="-771.3245" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="535.094"
class="34510" cy="-759.25024" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="602.9597"
class="51486" cy="-700.1782" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="589.1722"
class="56901" cy="-749.3739" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-693.7813"
class="34825" cy="173.26129" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-585.75946"
class="50531" cy="220.62392" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="130.0859"
class="33274" cy="823.4151" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-355.85947"
class="41061" cy="884.43353" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-422.82"
class="49259" cy="1149.5055" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-282.756"
class="45172" cy="661.61194" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="294.71927"
class="48847" cy="1880.7845" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="257.9101"
class="47289" cy="1753.125" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-623.9649"
class="47001" cy="1057.5233" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-747.55804"
class="33853" cy="1109.5533" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-440.7991"
class="32809" cy="922.65326" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-718.6621"
class="33671" cy="1160.0778" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="455.4494"
class="55578" cy="-377.44952" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="477.45343"
class="35677" cy="-489.4597" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="539.02203"
class="37671" cy="-481.4061" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="395.03406"
class="57200" cy="-403.5361" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="361.118"
class="47245" cy="-327.44525" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="554.6104"
class="47956" cy="-432.69" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="616.4942"
class="43639" cy="-390.34634" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="127.619026"
class="54655" cy="1366.058" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="99.72259"
class="47050" cy="1066.4651" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="92.40757"
class="39636" cy="1533.8259" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="202.94926"
class="41307" cy="1577.881" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="32.66265"
class="56290" cy="1388.209" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="607.6373"
class="34179" cy="-1720.8457" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="478.59906"
class="42892" cy="-1685.2759" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="710.2928"
class="53211" cy="-1628.8832" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="362.91806"
class="37161" cy="906.09076" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="560.50726"
class="53648" cy="969.7672" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="426.66626"
class="56837" cy="991.83307" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-250.85406"
class="33562" cy="-735.83246" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-449.63763"
class="54627" cy="-929.4829" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-534.97833"
class="38584" cy="1954.9744" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-517.13837"
class="43215" cy="1837.891" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-331.07858"
class="56815" cy="341.06168" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-251.1634"
class="56315" cy="302.59683" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="714.85004"
class="56191" cy="-341.63614" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1425.0"
class="41248" cy="49.231197" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1226.4508"
class="58580" cy="90.46174" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1564.6367"
class="56124" cy="19.950272" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="614.0728"
class="55812" cy="-290.1355" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="9.567778"
class="35012" cy="-549.83417" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="631.7158"
class="42016" cy="-257.98764" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-479.34906"
class="40817" cy="1957.5114" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1219.2063"
class="57981" cy="-129.14426" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1121.667"
class="49636" cy="-6.261306" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="32.42717"
class="48116" cy="1643.6906" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-986.0152"
class="50259" cy="127.96187" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="235.57639"
class="47966" cy="-348.64886" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="216.15933"
class="59540" cy="-449.4089" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="143.27773"
class="41979" cy="-232.95271" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="332.51828"
class="36376" cy="-1.2570173" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="214.0684"
class="35183" cy="-71.22674" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="687.21124"
class="60178" cy="-1464.8414" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-92.996635"
class="58167" cy="-373.76624" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-127.554855"
class="46897" cy="-582.0436" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-66.147705"
class="43760" cy="-625.2887" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-437.303"
class="58196" cy="1312.788" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-437.56546"
class="35807" cy="1426.8198" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="731.311"
class="59151" cy="-17.416748" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="540.8884"
class="37914" cy="-91.877014" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="868.8932"
class="59735" cy="34.247112" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1298.9398"
class="38300" cy="18.509874" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1162.3822"
class="38533" cy="72.85053" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="831.95483"
class="48685" cy="-1351.5377" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="609.4666"
class="59420" cy="6.845878" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="662.6066"
class="56222" cy="-83.10705" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-624.35254"
class="39563" cy="621.5034" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-511.4293"
class="40066" cy="1634.427" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="885.31024"
class="47978" cy="-1311.9287" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="289.8957"
class="36228" cy="75.1939" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="469.976"
class="39027" cy="-226.9447" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="563.2725"
class="51331" cy="-194.74269" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-420.74844"
class="55756" cy="-639.2593" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="648.53436"
class="42217" cy="-29.543373" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-385.07578"
class="48815" cy="-1706.226" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-344.92105"
class="36619" cy="-1577.4022" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1150.4296"
class="59809" cy="-373.13562" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-718.06537"
class="51618" cy="223.64854" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-698.1686"
class="44084" cy="273.8722" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-316.29584"
class="42629" cy="-1512.5021" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-286.92514"
class="41724" cy="-1396.0052" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1165.6613"
class="42297" cy="173.0104" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1304.2708"
class="39941" cy="199.86536" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-482.92282"
class="38732" cy="1398.8097" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-489.74576"
class="32881" cy="1294.4585" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="21.468994"
class="37408" cy="1188.8619" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-96.629524"
class="33094" cy="1236.3154" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1293.2625"
class="48486" cy="-394.26697" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-109.37055"
class="56719" cy="379.37628" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-393.80698"
class="60314" cy="-711.121" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="417.8119"
class="43653" cy="140.99384" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="492.30658"
class="59113" cy="170.24829" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="616.2212"
class="42419" cy="297.98267" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-476.09418"
class="35348" cy="709.2127" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-632.2518"
class="41384" cy="-1098.6533" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-139.81203"
class="52723" cy="-991.8808" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-421.9146"
class="50338" cy="193.22266" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-325.7738"
class="34016" cy="234.90714" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-211.21341"
class="41901" cy="-1151.624" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-221.65326"
class="38695" cy="249.39185" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="678.96924"
class="55828" cy="968.4982" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="683.96606"
class="47829" cy="1037.6904" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 65 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 107 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 88 KiB

View File

@ -0,0 +1,988 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg contentScriptType="text/ecmascript" width="880px"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify"
contentStyleType="text/css" viewBox="-1734 -1116 2877 2748" height="841px"
preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<g id="edges">
<path fill="none" stroke-width="1.0"
d="M 488.810303,817.164856 C 433.344604,792.087219 387.762543,671.272156 412.840179,615.806458"
class="43911 47305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 488.810303,817.164856 C 530.268066,845.480774 549.980774,950.141235 521.664856,991.598999"
class="43911 37408" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 412.840179,615.806458 C 351.515808,534.954407 380.807343,321.689697 461.659424,260.365326"
class="47305 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 521.664856,991.598999 C 588.538940,999.865845 676.449768,1112.577393 668.182861,1179.451416"
class="37408 33094" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -29.149036,-563.158752 C 51.537010,-557.272400 163.736465,-427.413666 157.850067,-346.727631"
class="37659 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -29.149036,-563.158752 C -105.470085,-568.543518 -211.874512,-691.102234 -206.489746,-767.423279"
class="37659 46897" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 157.850067,-346.727631 C 157.997879,-401.761566 240.770493,-484.090790 295.804443,-483.942963"
class="49524 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 157.850067,-346.727631 C 340.030518,-286.070923 522.316162,78.184860 461.659424,260.365326"
class="49524 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 157.850067,-346.727631 C 110.568848,-399.032654 118.104599,-548.412048 170.409653,-595.693298"
class="49524 50912" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -532.248535,209.476852 C -569.956787,237.275543 -668.217163,222.411224 -696.015869,184.702988"
class="40839 47170" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 254.039444,1260.187012 C 249.257004,1230.864746 286.066620,1179.707886 315.388794,1174.925415"
class="33470 49347" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 254.039444,1260.187012 C 235.162903,1236.814331 241.907196,1173.440430 265.279938,1154.563843"
class="33470 38732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 315.388794,1174.925415 C 282.866760,1117.666992 319.971344,982.996338 377.229767,950.474243"
class="49347 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 265.279938,1154.563843 C 246.851974,1091.355957 314.021881,968.902222 377.229767,950.474243"
class="38732 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 265.279938,1154.563843 C 274.523010,1199.614014 220.812393,1281.053955 175.762207,1290.296997"
class="38732 40066" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 265.279938,1154.563843 C 248.208893,1151.322388 227.464569,1120.853516 230.706070,1103.782471"
class="38732 32881" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 413.679901,1073.106567 C 403.883453,1081.002197 377.345245,1078.151123 369.449554,1068.354614"
class="38482 47307" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 413.679901,1073.106567 C 381.863403,1055.870117 359.993347,982.290771 377.229767,950.474243"
class="38482 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 369.449554,1068.354614 C 347.429504,1043.222534 352.097656,972.494263 377.229767,950.474243"
class="47307 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 377.229767,950.474243 C 378.586670,1010.440613 290.672455,1102.425537 230.706070,1103.782471"
class="49259 32881" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -404.726166,-82.369576 C -413.755035,-113.352303 -380.824280,-173.369736 -349.841553,-182.398621"
class="48709 46293" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -404.726166,-82.369576 C -378.753418,-91.653671 -325.868225,-66.620728 -316.584137,-40.648006"
class="48709 57714" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -281.169037,-316.802734 23.445934,-415.400146 157.850067,-346.727631"
class="46293 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -419.373169,-72.270027 -688.863525,-11.374580 -798.992126,-80.906219"
class="46293 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -381.591034,-166.888351 -452.480621,-191.247116 -467.990906,-222.996582"
class="46293 38398" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -370.308716,-193.747253 -383.986511,-241.470978 -372.637878,-261.938141"
class="46293 34510" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -375.356232,-152.606003 -458.317230,-146.189102 -488.109863,-171.703796"
class="46293 51486" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -319.696503,-147.811142 -326.360107,-50.712296 -360.947601,-20.567226"
class="46293 56901" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -349.841553,-182.398621 C -363.072021,-147.359024 -435.477173,-114.645332 -470.516785,-127.875816"
class="46293 37565" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 524.125305,-735.135742 C 528.469727,-678.413086 449.902405,-586.812378 393.179718,-582.467896"
class="50173 55812" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 524.125305,-735.135742 C 533.527527,-747.297729 565.873779,-751.437500 578.035767,-742.035278"
class="50173 44132" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 524.125305,-735.135742 C 523.211426,-773.131409 578.834229,-831.495789 616.829895,-832.409668"
class="50173 53441" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 393.179718,-582.467896 C 393.261841,-488.253906 252.064056,-346.809753 157.850067,-346.727631"
class="55812 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 578.035767,-742.035278 C 572.978027,-673.150635 462.064423,-577.410156 393.179718,-582.467896"
class="44132 55812" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 578.035767,-742.035278 C 567.719727,-767.869019 590.996155,-822.093628 616.829895,-832.409668"
class="44132 53441" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 578.035767,-742.035278 C 593.019653,-786.989380 682.926697,-831.944702 727.880798,-816.960815"
class="44132 54869" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1016.859192,-44.590309 C -980.548950,-95.426910 -849.828735,-117.216446 -798.992126,-80.906219"
class="58704 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1016.859192,-44.590309 C -1046.724609,-19.416340 -1129.283691,-26.453568 -1154.457764,-56.319027"
class="58704 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1016.859192,-44.590309 C -1026.204468,-9.975006 -1092.145264,27.930042 -1126.760620,18.584772"
class="58704 58883" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1154.457764,-56.319027 C -1088.282104,-132.329590 -875.002686,-147.081909 -798.992126,-80.906219"
class="49546 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1154.457764,-56.319027 C -1164.129639,-17.724977 -1236.528564,25.658283 -1275.122559,15.986413"
class="49546 41909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1154.457764,-56.319027 C -1174.151733,-22.790766 -1253.985107,-2.039312 -1287.513306,-21.733271"
class="49546 47362" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1154.457764,-56.319027 C -1185.973389,-31.350060 -1270.700317,-41.170090 -1295.669312,-72.685745"
class="49546 44447" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1276.131592,-117.569160 C -1239.546875,-129.653900 -1166.542480,-92.903816 -1154.457764,-56.319027"
class="42728 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -605.763550,-787.677856 C -547.667969,-818.161133 -414.799744,-776.742798 -384.316437,-718.647217"
class="50822 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -605.763550,-787.677856 C -642.245117,-776.484741 -713.757019,-814.417358 -724.950134,-850.898926"
class="50822 40913" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -605.763550,-787.677856 C -637.130127,-763.269043 -720.793152,-773.705750 -745.201965,-805.072327"
class="50822 58829" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -384.316437,-718.647217 C -399.736694,-692.863831 -461.542053,-677.319214 -487.325409,-692.739441"
class="40923 59113" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -838.707581,187.322723 C -851.957886,161.800354 -833.549683,103.641388 -808.027344,90.391113"
class="54373 47978" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -808.027344,90.391113 C -766.762695,86.851196 -699.555786,143.438309 -696.015869,184.702988"
class="47978 47170" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -808.027344,90.391113 C -840.479736,54.324600 -835.058655,-48.453796 -798.992126,-80.906219"
class="47978 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 580.818787,-496.423004 C 526.311951,-436.924133 355.303314,-429.436096 295.804443,-483.942963"
class="33987 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 580.818787,-496.423004 C 632.196472,-543.121216 779.310364,-536.102173 826.008606,-484.724457"
class="33987 54099" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 295.804443,-483.942963 C 335.779510,-510.519958 435.607666,-490.422882 462.184662,-450.447815"
class="49965 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 295.804443,-483.942963 C 318.309326,-513.400146 396.252472,-523.828613 425.709686,-501.323730"
class="49965 59369" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 826.008606,-484.724457 C 863.282898,-503.718445 947.685242,-476.298004 966.679260,-439.023743"
class="54099 55682" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 975.010010,-488.733276 C 946.011475,-458.131226 856.610657,-455.725922 826.008606,-484.724457"
class="35009 54099" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 492.420441,83.776352 C 539.610168,76.234558 621.707458,135.706497 629.249268,182.896240"
class="51800 40148" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 492.420441,83.776352 C 473.795197,89.740044 436.911804,70.747726 430.948120,52.122494"
class="51800 57428" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 492.420441,83.776352 C 429.413940,87.912445 328.700043,-0.393139 324.563965,-63.399635"
class="51800 41384" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 324.563965,-63.399635 C 368.945221,-61.572044 432.775726,7.741238 430.948120,52.122494"
class="41384 57428" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 241.435059,546.357361 C 277.904205,579.578308 282.776550,684.113464 249.555618,720.582581"
class="33275 33274" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 241.435059,546.357361 C 209.163086,501.905090 227.433594,386.818695 271.885864,354.546722"
class="33275 37161" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 249.555618,720.582581 C 289.879425,737.920410 324.358368,824.412903 307.020538,864.736694"
class="33274 54655" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 271.885864,354.546722 C 291.004303,297.755737 404.868439,241.246887 461.659424,260.365326"
class="37161 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 271.885864,354.546722 C 233.296967,368.828735 153.990601,332.368439 139.708588,293.779541"
class="37161 46502" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 271.885864,354.546722 C 247.080002,347.913300 219.821396,300.754333 226.454834,275.948486"
class="37161 37437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 271.885864,354.546722 C 238.824554,356.224731 186.715576,309.149750 185.037567,276.088440"
class="37161 35568" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -358.748383,-96.794922 C -374.087738,-115.697029 -368.743652,-167.059250 -349.841553,-182.398621"
class="43628 46293" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -358.748383,-96.794922 C -339.086151,-93.998383 -313.787628,-60.310238 -316.584137,-40.648006"
class="43628 57714" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -360.947601,-20.567226 C -326.201477,-14.129503 -283.738892,47.646263 -290.176605,82.392387"
class="56901 44637" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 642.178223,149.868500 C 628.173828,208.071625 519.862549,274.369720 461.659424,260.365326"
class="34825 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 642.178223,149.868500 C 649.836060,100.918060 734.748596,38.979237 783.699036,46.637119"
class="34825 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 461.659424,260.365326 C 483.321686,153.211761 676.545471,24.974846 783.699036,46.637119"
class="47732 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 461.659424,260.365326 C 508.419189,236.971710 613.649292,272.020996 637.042908,318.780762"
class="47732 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 307.020538,864.736694 C 278.398438,793.786682 341.890198,644.428589 412.840179,615.806458"
class="54655 47305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 307.020538,864.736694 C 375.321869,847.180237 504.108459,923.297668 521.664856,991.598999"
class="54655 37408" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 307.020538,864.736694 C 304.892761,920.194275 218.514740,1000.188904 163.057175,998.061157"
class="54655 47289" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 307.020538,864.736694 C 287.663544,916.094360 181.591522,964.095398 130.233841,944.738342"
class="54655 39636" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 307.020538,864.736694 C 312.190430,893.666138 276.551086,944.815247 247.621628,949.985168"
class="54655 56290" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 51.180000,1099.589844 C 53.249695,1056.908569 120.375992,995.991455 163.057175,998.061157"
class="48847 47289" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 502.752625,1272.925171 C 450.191986,1224.552124 443.910706,1073.151489 492.283783,1020.590942"
class="47001 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 502.752625,1272.925171 C 542.937256,1314.677979 540.584961,1437.583984 498.832184,1477.768677"
class="47001 33671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 492.283783,1020.590942 C 455.249634,1029.578369 386.217224,987.508362 377.229767,950.474243"
class="32809 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 492.283783,1020.590942 C 546.350891,1042.694946 594.295532,1156.951660 572.191467,1211.018799"
class="32809 35348" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 498.832184,1477.768677 C 525.322632,1508.869385 518.407227,1595.256104 487.306580,1621.746460"
class="33671 50671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.585999,-672.933105 C 262.079895,-597.944824 232.838348,-402.221527 157.850067,-346.727631"
class="55578 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.585999,-672.933105 C 182.995972,-706.068542 197.314011,-791.156616 230.449387,-814.746643"
class="55578 47956" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.585999,-672.933105 C 183.143875,-725.472900 226.790329,-839.445740 279.330109,-862.887878"
class="55578 43639" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.585999,-672.933105 C 161.197235,-710.659424 149.703613,-835.332153 187.429962,-880.720886"
class="55578 57169" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 206.585999,-672.933105 C 214.798691,-650.249878 193.092896,-603.905945 170.409653,-595.693298"
class="55578 50912" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 279.330109,-862.887878 C 270.441528,-898.728088 310.869080,-965.821350 346.709320,-974.709900"
class="43639 56191" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 262.990021,1327.804810 C 242.893906,1286.749146 274.333160,1195.021606 315.388794,1174.925415"
class="44279 49347" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 130.233841,944.738342 C 119.129990,984.543274 42.766827,1027.594849 2.961902,1016.491028"
class="39636 48116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -103.215202,-555.283630 C -65.384117,-562.030334 1.482534,-515.403748 8.229218,-477.572632"
class="55570 47966" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 8.229218,-477.572632 C 64.322388,-481.327789 154.094894,-402.820801 157.850067,-346.727631"
class="47966 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 8.229218,-477.572632 C -30.933062,-486.449158 -76.361671,-558.507385 -67.485130,-597.669678"
class="47966 59540" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1588.511597,-29.123562 C -1614.004150,-0.285746 -1695.499878,4.732073 -1724.337646,-20.760532"
class="34179 42892" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1588.511597,-29.123562 C -1552.759644,-69.615906 -1438.393188,-76.726448 -1397.900757,-40.974457"
class="34179 53211" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1397.900757,-40.974457 C -1352.281128,-92.731972 -1206.215332,-101.938721 -1154.457764,-56.319027"
class="53211 49546" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 185.037567,276.088440 C 193.293030,267.777008 218.143402,267.693024 226.454834,275.948486"
class="35568 37437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 616.514954,1076.119751 C 580.640747,1078.185547 523.730713,1027.473145 521.664856,991.598999"
class="46714 37408" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -76.407059,-497.720032 C -182.174362,-480.323578 -366.919983,-612.879944 -384.316437,-718.647217"
class="33562 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -76.407059,-497.720032 C 0.790654,-569.406921 224.117569,-561.140686 295.804443,-483.942963"
class="33562 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -76.407059,-497.720032 C 10.740330,-489.097809 128.528076,-345.443390 119.905853,-258.296021"
class="33562 54627" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -76.407059,-497.720032 C -128.427917,-442.943451 -288.624023,-438.809906 -343.400604,-490.830750"
class="33562 35183" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 119.905853,-258.296021 C 199.816757,-260.248352 322.611633,-143.310532 324.563965,-63.399635"
class="54627 41384" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 119.905853,-258.296021 C 152.681320,-242.957413 178.836624,-170.786331 163.498016,-138.010864"
class="54627 36864" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -343.400604,-490.830750 C -353.010986,-435.451141 -450.495941,-366.797272 -505.875549,-376.407654"
class="35183 36228" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -343.400604,-490.830750 C -365.036011,-465.814056 -435.014160,-460.742065 -460.030853,-482.377472"
class="35183 50986" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -343.400604,-490.830750 C -386.320099,-490.210266 -451.630005,-553.658813 -452.250488,-596.578247"
class="35183 43653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 346.709320,-974.709900 C 372.586578,-956.379639 383.907166,-890.068481 365.576965,-864.191223"
class="56191 42016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 882.054932,399.948547 C 830.976746,426.755615 714.148865,390.348907 687.341797,339.270721"
class="56815 56315" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 882.054932,399.948547 C 915.786438,377.729462 999.712280,394.998108 1021.931335,428.729584"
class="56815 33127" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 687.341797,339.270721 C 626.424255,368.626129 491.014832,321.282867 461.659424,260.365326"
class="56315 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 687.341797,339.270721 C 673.184082,345.232513 643.004639,332.938538 637.042908,318.780762"
class="56315 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1083.778442,-104.123314 C 1073.936523,-66.303352 1002.443604,-24.336351 964.623657,-34.178307"
class="41248 58580" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 964.623657,-34.178307 C 944.601807,18.169704 836.047058,66.658958 783.699036,46.637119"
class="58580 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -425.494843,-1074.179321 C -386.657776,-1055.672607 -356.162384,-969.656738 -374.669189,-930.819702"
class="38264 35012" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -374.669189,-930.819702 C -308.354004,-931.776306 -207.446350,-833.738403 -206.489746,-767.423279"
class="35012 46897" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -374.669189,-930.819702 C -402.204529,-895.054993 -497.154663,-882.710815 -532.919434,-910.246155"
class="35012 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -532.919434,-910.246155 C -464.879028,-901.646973 -375.717255,-786.687561 -384.316437,-718.647217"
class="58167 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 775.236145,1281.826782 C 733.350403,1282.762329 669.118408,1221.337158 668.182861,1179.451416"
class="48158 33094" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 668.182861,1179.451416 C 700.912415,1196.184448 724.907227,1270.378540 708.174133,1303.108154"
class="33094 35535" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 459.827545,621.529724 C 509.096893,703.838135 459.538239,901.204895 377.229767,950.474243"
class="42744 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 459.827545,621.529724 C 387.961029,548.930420 389.060181,332.231842 461.659424,260.365326"
class="42744 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 459.827545,621.529724 C 498.596436,614.472473 567.335632,662.039978 574.392883,700.808899"
class="42744 60146" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 459.827545,621.529724 C 459.315796,600.132080 490.644684,567.267883 512.042358,566.756104"
class="42744 58425" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 459.827545,621.529724 C 473.211182,636.150208 471.355927,678.156311 456.735474,691.539978"
class="42744 45172" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 456.735474,691.539978 C 492.621185,759.227966 444.917786,914.588501 377.229767,950.474243"
class="45172 49259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 456.735474,691.539978 C 371.485352,604.320251 374.439697,345.615448 461.659424,260.365326"
class="45172 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 456.735474,691.539978 C 529.655334,750.240479 550.984314,947.671082 492.283783,1020.590942"
class="45172 32809" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 31.046703,-640.092773 C 67.118095,-629.151001 104.812469,-558.631165 93.870651,-522.559753"
class="59434 59151" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 93.870651,-522.559753 C 141.832962,-500.189209 180.220612,-394.689941 157.850067,-346.727631"
class="59151 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 93.870651,-522.559753 C 68.606476,-542.647644 60.842022,-610.675659 80.929878,-635.939819"
class="59151 56222" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 173.006409,-775.607361 C 154.868408,-799.514771 163.522552,-862.582886 187.429962,-880.720886"
class="51450 57169" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 173.006409,-775.607361 C 208.469879,-739.105225 206.911819,-631.156738 170.409653,-595.693298"
class="51450 50912" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -849.777527,-1106.819214 C -810.403687,-1109.961670 -746.629150,-1055.614624 -743.486633,-1016.240784"
class="54119 58613" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -743.486633,-1016.240784 C -680.174255,-1037.155273 -553.833984,-973.558533 -532.919434,-910.246155"
class="58613 58167" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 522.192200,388.607300 C 484.437225,375.065460 448.117584,298.120300 461.659424,260.365326"
class="48822 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 522.192200,388.607300 C 548.265503,404.236786 563.931152,466.790894 548.301697,492.864166"
class="48822 40047" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 548.301697,492.864166 C 555.828186,514.894409 534.072632,559.229614 512.042358,566.756104"
class="40047 58425" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -880.038208,-1057.376465 C -844.500793,-1076.459595 -762.569824,-1051.778198 -743.486633,-1016.240784"
class="38183 58613" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 593.777710,-656.375549 C 580.435059,-616.998718 501.355927,-577.947327 461.979065,-591.289978"
class="56385 52723" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 461.979065,-591.289978 C 450.213531,-536.585632 350.508759,-472.177429 295.804443,-483.942963"
class="52723 49965" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 887.376587,-7.996257 C 877.567749,23.665928 815.361267,56.445953 783.699036,46.637119"
class="42647 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 887.376587,-7.996257 C 899.050781,-3.381155 909.639404,21.052773 905.024292,32.726955"
class="42647 47284" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 905.024292,32.726955 C 883.541260,59.774040 810.746155,68.120140 783.699036,46.637119"
class="47284 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 80.929878,-635.939819 C 41.306915,-655.311890 10.930571,-743.804504 30.302649,-783.427429"
class="56222 42019" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -618.886353,-277.356140 C -616.094482,-319.768616 -548.288025,-379.199524 -505.875549,-376.407654"
class="35627 36228" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1114.705078,-291.346710 C 1116.038818,-244.496857 1047.764648,-172.221420 1000.914795,-170.887665"
class="38300 38533" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1000.914795,-170.887665 C 1000.976563,-83.939560 870.647156,46.575314 783.699036,46.637119"
class="38533 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1000.914795,-170.887665 C 1011.123596,-213.524796 1090.392578,-262.167236 1133.029663,-251.958435"
class="38533 59401" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1000.914795,-170.887665 C 986.841980,-215.470856 1032.607544,-303.454895 1077.190674,-317.527740"
class="38533 57536" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 188.121719,-1045.381470 C 220.915482,-1012.310974 220.500427,-913.514648 187.429962,-880.720886"
class="59155 57169" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 431.164063,-1019.593750 C 449.127136,-975.395813 409.774902,-882.154297 365.576965,-864.191223"
class="52802 42016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -923.512817,-82.799248 C -898.230103,-107.324783 -823.517639,-106.188965 -798.992126,-80.906219"
class="48685 35305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 129.864258,-489.223816 C 163.960663,-466.321747 180.752136,-380.824036 157.850067,-346.727631"
class="59420 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 129.864258,-489.223816 C 90.734184,-508.780151 61.373550,-596.809753 80.929878,-635.939819"
class="59420 56222" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -452.250488,-596.578247 C -478.497711,-608.795532 -499.542664,-666.492188 -487.325409,-692.739441"
class="43653 59113" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 285.565277,-624.441101 C 315.564941,-543.355347 238.935806,-376.727295 157.850067,-346.727631"
class="39027 49524" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 285.565277,-624.441101 C 253.617599,-688.393433 301.624603,-832.243530 365.576965,-864.191223"
class="39027 42016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 285.565277,-624.441101 C 277.118042,-662.442688 321.449585,-732.115906 359.451202,-740.563171"
class="39027 51331" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -469.825043,-809.052246 C -434.642334,-808.072998 -383.337158,-753.829956 -384.316437,-718.647217"
class="55756 40923" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1287.513306,-21.733271 C -1277.491211,-16.667482 -1270.056763,5.964327 -1275.122559,15.986413"
class="47362 41909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 524.244629,-489.192017 C 519.581482,-469.031189 482.345490,-445.784668 462.184662,-450.447815"
class="44547 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 524.244629,-489.192017 C 502.111298,-471.911346 442.990356,-479.190399 425.709686,-501.323730"
class="44547 59369" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 574.891785,-399.801300 C 542.221069,-387.389191 474.596771,-417.777100 462.184662,-450.447815"
class="42629 41724" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 623.221497,1355.016968 C 584.215881,1336.423340 553.597839,1250.024536 572.191467,1211.018799"
class="41165 35348" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 398.717438,722.874023 C 380.128479,698.635986 388.602112,634.395447 412.840179,615.806458"
class="57720 47305" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 542.731995,302.171997 C 518.156128,310.025177 469.512604,284.941162 461.659424,260.365326"
class="56719 47732" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 145.877563,-722.948303 C 176.234985,-702.403748 190.954239,-626.050720 170.409653,-595.693298"
class="35880 50912" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 769.925110,354.843536 C 736.136108,374.207428 656.406738,352.569763 637.042908,318.780762"
class="50338 34016" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 846.536499,-49.927319 C 853.281860,-18.046938 815.579407,39.891724 783.699036,46.637119"
class="39941 50259" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 91.213188,1194.269043 C 101.014458,1148.273193 184.710175,1093.981201 230.706070,1103.782471"
class="33551 32881" stroke-opacity="1.0" stroke="#999999"/>
</g>
<g id="nodes">
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="488.8103"
class="43911" cy="817.16486" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="412.84018"
class="47305" cy="615.80646" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="521.66486"
class="37408" cy="991.599" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-29.149036"
class="37659" cy="-563.15875" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="157.85007"
class="49524" cy="-346.72763" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-206.48975"
class="46897" cy="-767.4233" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-532.24854"
class="40839" cy="209.47685" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-696.01587"
class="47170" cy="184.70299" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="254.03944"
class="33470" cy="1260.187" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="315.3888"
class="49347" cy="1174.9254" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="265.27994"
class="38732" cy="1154.5638" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="413.6799"
class="38482" cy="1073.1066" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="369.44955"
class="47307" cy="1068.3546" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="377.22977"
class="49259" cy="950.47424" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-404.72617"
class="48709" cy="-82.369576" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-349.84155"
class="46293" cy="-182.39862" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-316.58414"
class="57714" cy="-40.648006" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="524.1253"
class="50173" cy="-735.13574" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="393.17972"
class="55812" cy="-582.4679" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="578.03577"
class="44132" cy="-742.0353" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="616.8299"
class="53441" cy="-832.40967" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1016.8592"
class="58704" cy="-44.59031" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-798.9921"
class="35305" cy="-80.90622" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1154.4578"
class="49546" cy="-56.319027" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1126.7606"
class="58883" cy="18.584772" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1276.1316"
class="42728" cy="-117.56916" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-605.76355"
class="50822" cy="-787.67786" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-384.31644"
class="40923" cy="-718.6472" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-724.95013"
class="40913" cy="-850.8989" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-745.20197"
class="58829" cy="-805.0723" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-838.7076"
class="54373" cy="187.32272" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-808.02734"
class="47978" cy="90.39111" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="580.8188"
class="33987" cy="-496.423" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="295.80444"
class="49965" cy="-483.94296" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="826.0086"
class="54099" cy="-484.72446" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="975.01"
class="35009" cy="-488.73328" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="492.42044"
class="51800" cy="83.77635" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="629.24927"
class="40148" cy="182.89624" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="430.94812"
class="57428" cy="52.122494" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="324.56396"
class="41384" cy="-63.399635" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="241.43506"
class="33275" cy="546.35736" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="249.55562"
class="33274" cy="720.5826" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="271.88586"
class="37161" cy="354.54672" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-358.74838"
class="43628" cy="-96.79492" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-467.9909"
class="38398" cy="-222.99658" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-372.63788"
class="34510" cy="-261.93814" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-488.10986"
class="51486" cy="-171.7038" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-360.9476"
class="56901" cy="-20.567226" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-470.51678"
class="37565" cy="-127.87582" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="642.1782"
class="34825" cy="149.8685" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="461.65942"
class="47732" cy="260.36533" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="783.69904"
class="50259" cy="46.63712" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="307.02054"
class="54655" cy="864.7367" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="51.18"
class="48847" cy="1099.5898" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="163.05717"
class="47289" cy="998.06116" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="502.75262"
class="47001" cy="1272.9252" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="492.28378"
class="32809" cy="1020.59094" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="498.83218"
class="33671" cy="1477.7687" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="206.586"
class="55578" cy="-672.9331" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="230.44939"
class="47956" cy="-814.74664" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="279.3301"
class="43639" cy="-862.8879" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="187.42996"
class="57169" cy="-880.7209" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="170.40965"
class="50912" cy="-595.6933" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="727.8808"
class="54869" cy="-816.9608" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="262.99002"
class="44279" cy="1327.8048" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="130.23384"
class="39636" cy="944.73834" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="247.62163"
class="56290" cy="949.98517" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-103.2152"
class="55570" cy="-555.2836" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="8.229218"
class="47966" cy="-477.57263" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1588.5116"
class="34179" cy="-29.123562" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1724.3376"
class="42892" cy="-20.760532" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1397.9008"
class="53211" cy="-40.974457" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="139.70859"
class="46502" cy="293.77954" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="226.45483"
class="37437" cy="275.9485" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="185.03757"
class="35568" cy="276.08844" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="616.51495"
class="46714" cy="1076.1198" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-76.40706"
class="33562" cy="-497.72003" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="119.90585"
class="54627" cy="-258.29602" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-343.4006"
class="35183" cy="-490.83075" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="346.70932"
class="56191" cy="-974.7099" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="882.05493"
class="56815" cy="399.94855" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="687.3418"
class="56315" cy="339.27072" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1021.93134"
class="33127" cy="428.72958" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1083.7784"
class="41248" cy="-104.123314" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="964.62366"
class="58580" cy="-34.178307" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-425.49484"
class="38264" cy="-1074.1793" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-374.6692"
class="35012" cy="-930.8197" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-532.91943"
class="58167" cy="-910.24615" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="775.23615"
class="48158" cy="1281.8268" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="668.18286"
class="33094" cy="1179.4514" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="365.57697"
class="42016" cy="-864.1912" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="2.9619024"
class="48116" cy="1016.491" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-290.1766"
class="44637" cy="82.39239" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="459.82755"
class="42744" cy="621.5297" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="574.3929"
class="60146" cy="700.8089" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="512.04236"
class="58425" cy="566.7561" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="456.73547"
class="45172" cy="691.54" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="31.046703"
class="59434" cy="-640.0928" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="93.87065"
class="59151" cy="-522.55975" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-67.48513"
class="59540" cy="-597.6697" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="173.00641"
class="51450" cy="-775.60736" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-849.7775"
class="54119" cy="-1106.8192" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-743.48663"
class="58613" cy="-1016.2408" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="522.1922"
class="48822" cy="388.6073" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="548.3017"
class="40047" cy="492.86417" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-880.0382"
class="38183" cy="-1057.3765" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="593.7777"
class="56385" cy="-656.37555" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="461.97906"
class="52723" cy="-591.29" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="887.3766"
class="42647" cy="-7.996257" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="905.0243"
class="47284" cy="32.726955" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="80.92988"
class="56222" cy="-635.9398" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-618.88635"
class="35627" cy="-277.35614" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-505.87555"
class="36228" cy="-376.40765" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1114.7051"
class="38300" cy="-291.3467" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1000.9148"
class="38533" cy="-170.88766" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="188.12172"
class="59155" cy="-1045.3815" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="431.16406"
class="52802" cy="-1019.59375" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="487.30658"
class="50671" cy="1621.7465" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-923.5128"
class="48685" cy="-82.79925" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="129.86426"
class="59420" cy="-489.22382" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="30.302649"
class="42019" cy="-783.4274" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-460.03085"
class="50986" cy="-482.37747" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-452.2505"
class="43653" cy="-596.57825" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="285.56528"
class="39027" cy="-624.4411" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="359.4512"
class="51331" cy="-740.5632" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-469.82504"
class="55756" cy="-809.05225" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1275.1226"
class="41909" cy="15.986413" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1287.5133"
class="47362" cy="-21.73327" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1295.6693"
class="44447" cy="-72.685745" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="524.2446"
class="44547" cy="-489.19202" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="462.18466"
class="41724" cy="-450.4478" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="425.7097"
class="59369" cy="-501.32373" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1133.0297"
class="59401" cy="-251.95844" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1077.1907"
class="57536" cy="-317.52774" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="574.8918"
class="42629" cy="-399.8013" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="623.2215"
class="41165" cy="1355.017" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="572.19147"
class="35348" cy="1211.0188" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="175.7622"
class="40066" cy="1290.297" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="230.70607"
class="32881" cy="1103.7825" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="398.71744"
class="57720" cy="722.874" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="542.732"
class="56719" cy="302.172" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-487.3254"
class="59113" cy="-692.73944" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="145.87756"
class="35880" cy="-722.9483" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="708.17413"
class="35535" cy="1303.1082" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="163.49802"
class="36864" cy="-138.01086" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="966.67926"
class="55682" cy="-439.02374" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="637.0429"
class="34016" cy="318.78076" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="769.9251"
class="50338" cy="354.84354" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="846.5365"
class="39941" cy="-49.92732" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="91.21319"
class="33551" cy="1194.269" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

View File

@ -0,0 +1,41 @@
= 100:
Avg. Deg.: 1,98
Max. Deg.: 7
Diam.: 15
Radius: 8
Avg. Path Length: 6,33
+ 100:
Avg. Deg.: 1,99
Max. Deg.: 9
Diam.: 18
Radius: 9
Avg. Path Length: 7,25
- 50:
Avg. Deg.: 2,1
Max. Deg.: 10
Diam.: 15
Radius: 8
Avg. Path Length: 6,29
+ 100:
Avg. Deg.: 2,07
Max. Deg.: 10
Diam.: 15
Radius: 8
Avg. Path Length: 7,2
- 50:
Avg. Deg.: 2,18
Max. Deg.: 10
Diam.: 15
Radius: 8
Avg. Path Length: 7,2
- 50:
Avg. Deg.: 2,33
Max. Deg.: 11
Diam.: 12
Radius: 6
Avg. Path Length: 5,73

View File

@ -0,0 +1,610 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg contentScriptType="text/ecmascript" width="595px"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify"
contentStyleType="text/css" viewBox="-992 -1709 1828 3443" height="1120px"
preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<g id="edges">
<path fill="none" stroke-width="1.0"
d="M 97.601349,1050.337891 C 72.621521,1000.086060 110.529541,887.238586 160.781372,862.258728"
class="57765 51621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 97.601349,1050.337891 C 121.121078,1092.496338 93.163025,1191.013550 51.004585,1214.533325"
class="57765 63741" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 160.781372,862.258728 C 240.369492,900.411316 302.522766,1077.022461 264.370117,1156.610596"
class="51621 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 160.781372,862.258728 C 45.284836,811.141968 -51.284805,561.221985 -0.168034,445.725464"
class="51621 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 160.781372,862.258728 C 185.316116,858.973389 227.046295,890.847473 230.331650,915.382202"
class="51621 56683" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 51.004585,1214.533325 C 69.285767,1244.996338 51.013039,1318.112671 20.550030,1336.393799"
class="63741 49744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -131.237595,744.208130 C -148.064240,706.056030 -116.076080,623.587952 -77.923996,606.761292"
class="53734 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -131.237595,744.208130 C -118.629112,773.041687 -142.966766,835.204834 -171.800354,847.813293"
class="53734 64966" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 163.424194,-81.836266 C 179.318451,-75.841324 194.167435,-43.007523 188.172501,-27.113258"
class="54432 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 188.172501,-27.113258 C 178.965759,-0.913969 125.856705,24.574844 99.657417,15.368099"
class="64410 49653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -156.924255,627.306763 C -145.233307,607.397644 -97.833138,595.070313 -77.923996,606.761292"
class="59624 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -65.554420,687.336792 C -84.143433,673.695618 -91.565186,625.350342 -77.923996,606.761292"
class="52602 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 702.887573,492.542206 C 725.231140,465.380432 799.489136,458.153137 826.650940,480.496735"
class="63687 52116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 702.887573,492.542206 C 675.303101,530.695190 576.696899,546.547913 538.543945,518.963440"
class="63687 51107" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 538.543945,518.963440 C 582.365356,497.887482 679.711487,532.005737 700.787415,575.827148"
class="51107 63998" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 538.543945,518.963440 C 562.028992,508.192871 613.412476,527.264709 624.183044,550.749756"
class="51107 63775" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -982.068420,701.827271 C -952.895996,679.287292 -875.327454,689.236023 -852.787476,718.408447"
class="58701 51476" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -852.787476,718.408447 C -817.049927,668.401733 -688.433594,646.997925 -638.426880,682.735474"
class="51476 63718" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -852.787476,718.408447 C -867.835571,751.681885 -940.317871,779.019836 -973.591309,763.971741"
class="51476 50803" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -726.016418,-1022.519165 C -695.475647,-1030.832520 -637.194397,-997.491455 -628.881042,-966.950684"
class="62561 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -628.881042,-966.950684 C -666.379089,-940.884155 -761.725952,-958.031555 -787.792480,-995.529602"
class="51511 57520" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 495.499146,1702.031250 C 460.593231,1695.687134 417.750519,1633.812134 424.094604,1598.906250"
class="53231 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -693.627625,644.973694 C -677.444153,613.340515 -605.719116,590.165955 -574.085938,606.349426"
class="53336 56477" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -574.085938,606.349426 C -540.925171,564.122009 -427.842957,550.522034 -385.615540,583.682800"
class="56477 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -574.085938,606.349426 C -602.294006,625.491455 -673.319275,611.892273 -692.461304,583.684204"
class="56477 61002" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 353.216461,1403.360352 C 406.501282,1428.293823 449.028168,1545.621460 424.094604,1598.906250"
class="57100 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 353.216461,1403.360352 C 381.935913,1416.847412 404.784485,1480.157104 391.297455,1508.876587"
class="57100 50888" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 353.216461,1403.360352 C 286.097260,1371.779663 232.789429,1223.729858 264.370117,1156.610596"
class="57100 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 822.785706,608.603027 C 791.830872,626.447510 718.631897,606.781982 700.787415,575.827148"
class="62568 63998" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 350.011078,991.482178 C 286.320435,1003.483459 172.782623,925.949341 160.781372,862.258728"
class="52958 51621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 350.011078,991.482178 C 383.288666,1000.003540 420.422943,1062.702026 411.901581,1095.979614"
class="52958 56160" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 350.011078,991.482178 C 387.038361,985.000671 452.301483,1030.819336 458.782990,1067.846680"
class="52958 65104" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 350.011078,991.482178 C 377.315155,972.624512 446.557709,985.294128 465.415375,1012.598206"
class="52958 59087" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 172.099899,1000.719116 C 142.144119,975.290771 135.352997,892.214539 160.781372,862.258728"
class="58455 51621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 172.099899,1000.719116 C 195.010147,1022.980591 195.983276,1090.738281 173.721802,1113.648438"
class="58455 57485" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 97.050102,518.115112 C 63.128548,523.080811 4.797664,479.647034 -0.168034,445.725464"
class="62762 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 97.050102,518.115112 C 121.364487,525.676331 146.494171,573.489807 138.932922,597.804199"
class="62762 56110" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 97.050102,518.115112 C 117.111649,504.654510 167.394852,514.555969 180.855438,534.617493"
class="62762 61067" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -0.168034,445.725464 C 16.487942,493.483795 -30.165634,590.105347 -77.923996,606.761292"
class="51646 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -0.168034,445.725464 C -49.666069,550.406433 -280.934570,633.180786 -385.615540,583.682800"
class="51646 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -0.168034,445.725464 C -20.908363,444.082733 -49.554783,410.508179 -47.912071,389.767853"
class="51646 62700" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -540.425720,499.305878 C -492.588287,485.219238 -399.702179,535.845398 -385.615540,583.682800"
class="53043 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -540.425720,499.305878 C -568.663452,516.574219 -636.922485,500.120117 -654.190857,471.882416"
class="53043 55671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -540.425720,499.305878 C -571.105042,500.331635 -618.662659,455.851349 -619.688416,425.172028"
class="53043 50299" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -393.940277,-946.519592 C -378.796509,-924.021362 -389.828308,-867.558289 -412.326569,-852.414551"
class="50370 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -412.326569,-852.414551 C -478.544678,-832.010864 -608.477356,-900.732544 -628.881042,-966.950684"
class="53418 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -412.326569,-852.414551 C -481.000610,-904.130676 -506.437378,-1084.716064 -454.721222,-1153.390015"
class="53418 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -412.326569,-852.414551 C -437.707458,-842.280273 -490.980194,-865.150146 -501.114502,-890.531006"
class="53418 64119" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 301.794800,1273.372559 C 270.957489,1257.505127 248.502655,1187.447998 264.370117,1156.610596"
class="64052 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 452.125763,-92.770073 C 487.212952,-122.147858 583.910339,-113.583786 613.288147,-78.496620"
class="64805 56911" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 452.125763,-92.770073 C 411.921783,-49.821140 287.192383,-45.703701 244.243469,-85.907684"
class="64805 58354" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 452.125763,-92.770073 C 465.375977,-118.579308 523.965088,-137.417847 549.774353,-124.167648"
class="64805 61804" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 613.288147,-78.496620 C 639.601013,-97.896667 708.170410,-87.527451 727.570435,-61.214581"
class="56911 65375" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 244.243469,-85.907684 C 244.788162,-62.934608 211.145569,-27.657948 188.172501,-27.113258"
class="58354 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -509.959656,-1090.622803 C -481.354950,-1079.492188 -455.143829,-1019.889221 -466.274475,-991.284485"
class="64888 57906" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -466.274475,-991.284485 C -427.710907,-974.300049 -395.342163,-890.978149 -412.326569,-852.414551"
class="57906 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -345.743805,-521.407532 C -311.327850,-539.535400 -232.512100,-515.103210 -214.384247,-480.687256"
class="57977 58829" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -345.743805,-521.407532 C -373.631927,-509.892822 -432.736176,-534.453003 -444.250885,-562.341125"
class="57977 49177" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -214.384247,-480.687256 C -328.318176,-515.444275 -447.083557,-738.480652 -412.326569,-852.414551"
class="58829 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -214.384247,-480.687256 C -246.608383,-498.621460 -268.043243,-573.859009 -250.109039,-606.083130"
class="58829 62984" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 506.241882,-633.051331 C 509.851257,-583.707336 441.249359,-504.277283 391.905365,-500.667877"
class="53432 51409" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 506.241882,-633.051331 C 504.327942,-669.935364 556.783142,-728.132324 593.667175,-730.046265"
class="53432 61223" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -443.577148,638.697815 C -442.987823,616.102478 -408.210846,583.093445 -385.615540,583.682800"
class="59969 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -544.851501,-1699.662354 C -522.456299,-1674.208618 -527.044250,-1602.435059 -552.498047,-1580.039917"
class="64554 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -694.059082,-1071.830322 C -660.047546,-1063.890015 -620.940674,-1000.962219 -628.881042,-966.950684"
class="62693 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -438.150818,-1432.671875 C -415.929993,-1406.755249 -421.473541,-1334.549194 -447.390106,-1312.328369"
class="56401 57194" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -447.390106,-1312.328369 C -417.068665,-1279.074463 -421.467346,-1183.711548 -454.721222,-1153.390015"
class="57194 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 276.892670,482.593262 C 336.496979,437.537048 493.487732,459.359131 538.543945,518.963440"
class="56703 51107" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 276.892670,482.593262 C 214.106964,530.631836 47.870544,508.511169 -0.168034,445.725464"
class="56703 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 25.594177,-88.878685 C 127.362564,23.194588 111.905235,343.957062 -0.168034,445.725464"
class="60889 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 25.594177,-88.878685 C 69.918236,-132.014343 201.107819,-130.231750 244.243469,-85.907684"
class="60889 58354" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 25.594177,-88.878685 C -100.763214,-119.244705 -244.750275,-354.329865 -214.384247,-480.687256"
class="60889 58829" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 25.594177,-88.878685 C 19.805264,-188.880707 161.124908,-347.567139 261.126953,-353.356049"
class="60889 58744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 25.594177,-88.878685 C -0.535896,-103.667816 -17.547304,-165.046616 -2.758169,-191.176697"
class="60889 64909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 261.126953,-353.356049 C 257.820251,-408.974091 336.287323,-497.361176 391.905365,-500.667877"
class="58744 51409" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 261.126953,-353.356049 C 284.170502,-414.961975 411.144775,-472.805511 472.750702,-449.761963"
class="58744 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 636.336548,-529.111023 C 619.489197,-480.524048 521.337646,-432.914612 472.750702,-449.761963"
class="53359 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 636.336548,-529.111023 C 648.084473,-564.069275 718.143677,-598.884766 753.101929,-587.136841"
class="53359 54057" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -565.790710,858.798584 C -567.860596,822.392517 -516.356262,764.678650 -479.950195,762.608765"
class="64475 62484" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -479.950195,762.608765 C -496.868439,707.956604 -440.267670,600.601074 -385.615540,583.682800"
class="62484 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -479.950195,762.608765 C -462.689880,792.764282 -482.032654,863.888000 -512.188171,881.148376"
class="62484 49746" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -250.109039,-606.083130 C -272.896484,-625.042603 -278.638428,-687.662903 -259.678986,-710.450378"
class="62984 57744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 572.017334,-493.513977 C 560.914429,-464.910248 501.354431,-438.659027 472.750702,-449.761963"
class="51947 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -513.815918,-1380.019653 C -561.556396,-1412.287231 -584.765625,-1532.299438 -552.498047,-1580.039917"
class="63937 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -513.815918,-1380.019653 C -456.671051,-1346.512695 -421.214233,-1210.534912 -454.721222,-1153.390015"
class="63937 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 300.352936,-726.638489 C 333.378510,-688.350586 325.484955,-581.380432 287.197052,-548.354858"
class="54112 55342" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 300.352936,-726.638489 C 290.753296,-760.982971 327.870514,-826.899109 362.214966,-836.498718"
class="54112 52396" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 300.352936,-726.638489 C 267.829559,-721.768433 211.739349,-763.248291 206.869247,-795.771667"
class="54112 59708" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 287.197052,-548.354858 C 320.982788,-504.141083 305.340729,-387.141785 261.126953,-353.356049"
class="55342 58744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 6.970582,23.416637 C 23.898243,3.269562 79.510338,-1.559563 99.657417,15.368099"
class="52804 49653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -595.939575,-1694.624878 C -564.334290,-1680.396240 -538.269348,-1611.645264 -552.498047,-1580.039917"
class="49748 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -84.677605,-547.471191 C -88.341003,-583.040222 -40.482521,-641.888916 -4.913470,-645.552307"
class="52413 53159" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 14.807537,-280.622253 C 29.183506,-259.220001 18.644083,-205.552673 -2.758169,-191.176697"
class="50312 64909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 435.423492,1723.792358 C 408.180481,1701.080933 401.383148,1626.149170 424.094604,1598.906250"
class="54810 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 92.921768,-748.428162 C 106.242561,-780.686340 174.611038,-809.092468 206.869247,-795.771667"
class="63995 59708" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 92.921768,-748.428162 C 93.929893,-708.285889 35.228748,-646.560425 -4.913470,-645.552307"
class="63995 53159" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -638.426880,682.735474 C -607.675171,612.362671 -455.988342,552.931091 -385.615540,583.682800"
class="63718 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -638.426880,682.735474 C -643.373230,718.785095 -704.867188,765.440125 -740.916809,760.493774"
class="63718 52930" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -893.727661,-1001.947083 C -871.257141,-1021.850586 -807.695984,-1018.000122 -787.792480,-995.529602"
class="59550 57520" stroke-opacity="1.0" stroke="#999999"/>
</g>
<g id="nodes">
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="97.60135"
class="57765" cy="1050.3379" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="160.78137"
class="51621" cy="862.2587" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="51.004585"
class="63741" cy="1214.5333" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-131.2376"
class="53734" cy="744.2081" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-77.923996"
class="49958" cy="606.7613" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-171.80035"
class="64966" cy="847.8133" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="163.4242"
class="54432" cy="-81.836266" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="188.1725"
class="64410" cy="-27.113258" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-156.92426"
class="59624" cy="627.30676" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-65.55442"
class="52602" cy="687.3368" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="702.8876"
class="63687" cy="492.5422" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="826.65094"
class="52116" cy="480.49673" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="538.54395"
class="51107" cy="518.96344" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-982.0684"
class="58701" cy="701.8273" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-852.7875"
class="51476" cy="718.40845" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-726.0164"
class="62561" cy="-1022.51917" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-628.88104"
class="51511" cy="-966.9507" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="495.49915"
class="53231" cy="1702.0312" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="424.0946"
class="56437" cy="1598.9062" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-693.6276"
class="53336" cy="644.9737" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-574.08594"
class="56477" cy="606.3494" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="353.21646"
class="57100" cy="1403.3604" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="391.29745"
class="50888" cy="1508.8766" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="264.37012"
class="63738" cy="1156.6106" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="822.7857"
class="62568" cy="608.603" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="700.7874"
class="63998" cy="575.82715" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="350.01108"
class="52958" cy="991.4822" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="411.90158"
class="56160" cy="1095.9796" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="458.783"
class="65104" cy="1067.8467" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="465.41537"
class="59087" cy="1012.5982" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="172.0999"
class="58455" cy="1000.7191" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="173.7218"
class="57485" cy="1113.6484" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="97.0501"
class="62762" cy="518.1151" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-0.16803367"
class="51646" cy="445.72546" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="138.93292"
class="56110" cy="597.8042" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="180.85544"
class="61067" cy="534.6175" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-540.4257"
class="53043" cy="499.30588" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-385.61554"
class="53131" cy="583.6828" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-654.19086"
class="55671" cy="471.88242" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-619.6884"
class="50299" cy="425.17203" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="20.55003"
class="49744" cy="1336.3938" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-393.94028"
class="50370" cy="-946.5196" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-412.32657"
class="53418" cy="-852.41455" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="301.7948"
class="64052" cy="1273.3726" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="452.12576"
class="64805" cy="-92.77007" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="613.28815"
class="56911" cy="-78.49662" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="244.24347"
class="58354" cy="-85.907684" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="549.77435"
class="61804" cy="-124.16765" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-509.95966"
class="64888" cy="-1090.6228" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-466.27448"
class="57906" cy="-991.2845" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-345.7438"
class="57977" cy="-521.40753" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-214.38425"
class="58829" cy="-480.68726" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-444.2509"
class="49177" cy="-562.3411" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="506.24188"
class="53432" cy="-633.05133" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="391.90536"
class="51409" cy="-500.66788" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="593.6672"
class="61223" cy="-730.04626" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-443.57715"
class="59969" cy="638.6978" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="230.33165"
class="56683" cy="915.3822" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-544.8515"
class="64554" cy="-1699.6624" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-552.49805"
class="55686" cy="-1580.0399" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-694.0591"
class="62693" cy="-1071.8303" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-438.15082"
class="56401" cy="-1432.6719" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-447.3901"
class="57194" cy="-1312.3284" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="276.89267"
class="56703" cy="482.59326" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="25.594177"
class="60889" cy="-88.878685" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="261.12695"
class="58744" cy="-353.35605" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-2.758169"
class="64909" cy="-191.1767" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="636.33655"
class="53359" cy="-529.111" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="472.7507"
class="55202" cy="-449.76196" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="753.1019"
class="54057" cy="-587.13684" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-565.7907"
class="64475" cy="858.7986" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-479.9502"
class="62484" cy="762.60876" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-250.10904"
class="62984" cy="-606.0831" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="572.01733"
class="51947" cy="-493.51398" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-513.8159"
class="63937" cy="-1380.0197" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-454.72122"
class="51893" cy="-1153.39" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="300.35294"
class="54112" cy="-726.6385" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="287.19705"
class="55342" cy="-548.35486" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="362.21497"
class="52396" cy="-836.4987" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="206.86925"
class="59708" cy="-795.77167" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-512.1882"
class="49746" cy="881.1484" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="6.970582"
class="52804" cy="23.416637" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="99.65742"
class="49653" cy="15.368099" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-595.9396"
class="49748" cy="-1694.6249" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-47.91207"
class="62700" cy="389.76785" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-84.677605"
class="52413" cy="-547.4712" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-4.9134703"
class="53159" cy="-645.5523" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-501.1145"
class="64119" cy="-890.531" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-692.4613"
class="61002" cy="583.6842" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="14.807537"
class="50312" cy="-280.62225" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="624.18304"
class="63775" cy="550.74976" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="435.4235"
class="54810" cy="1723.7924" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="92.92177"
class="63995" cy="-748.42816" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-638.4269"
class="63718" cy="682.7355" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-973.5913"
class="50803" cy="763.97174" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-893.72766"
class="59550" cy="-1001.9471" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-787.7925"
class="57520" cy="-995.5296" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-259.679"
class="57744" cy="-710.4504" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="727.57043"
class="65375" cy="-61.21458" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-740.9168"
class="52930" cy="760.4938" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,101 @@
graph g{
57765 -- 51621;
57765 -- 63741;
53734 -- 49958;
53734 -- 64966;
54432 -- 64410;
59624 -- 49958;
52602 -- 49958;
63687 -- 52116;
63687 -- 51107;
58701 -- 51476;
62561 -- 51511;
53231 -- 56437;
53336 -- 56477;
57100 -- 50888;
57100 -- 63738;
57100 -- 56437;
62568 -- 63998;
52958 -- 56160;
52958 -- 51621;
52958 -- 65104;
52958 -- 59087;
58455 -- 51621;
58455 -- 57485;
62762 -- 51646;
62762 -- 56110;
62762 -- 61067;
53043 -- 53131;
53043 -- 55671;
53043 -- 50299;
63741 -- 49744;
50370 -- 53418;
64052 -- 63738;
64805 -- 56911;
64805 -- 58354;
64805 -- 61804;
64888 -- 57906;
57977 -- 58829;
57977 -- 49177;
53432 -- 51409;
53432 -- 61223;
59969 -- 53131;
51621 -- 51646;
51621 -- 63738;
51621 -- 56683;
64554 -- 55686;
62693 -- 51511;
56401 -- 57194;
56703 -- 51646;
56703 -- 51107;
60889 -- 58354;
60889 -- 51646;
60889 -- 58829;
60889 -- 58744;
60889 -- 64909;
53359 -- 55202;
53359 -- 54057;
64475 -- 62484;
58829 -- 53418;
58829 -- 62984;
51947 -- 55202;
63937 -- 51893;
63937 -- 55686;
54112 -- 55342;
54112 -- 52396;
54112 -- 59708;
57906 -- 53418;
62484 -- 53131;
62484 -- 49746;
55342 -- 58744;
52804 -- 49653;
49748 -- 55686;
51646 -- 53131;
51646 -- 49958;
51646 -- 62700;
52413 -- 53159;
53418 -- 51893;
53418 -- 51511;
53418 -- 64119;
56477 -- 53131;
56477 -- 61002;
50312 -- 64909;
51107 -- 63998;
51107 -- 63775;
54810 -- 56437;
63995 -- 59708;
63995 -- 53159;
58744 -- 51409;
58744 -- 55202;
51476 -- 63718;
51476 -- 50803;
59550 -- 57520;
58354 -- 64410;
64410 -- 49653;
62984 -- 57744;
56911 -- 65375;
63718 -- 53131;
63718 -- 52930;
57194 -- 51893;
51511 -- 57520;
}

View File

@ -0,0 +1,201 @@
graph g{
52813 -- 55484;
49581 -- 62700;
54432 -- 64410;
54432 -- 64426;
54432 -- 58643;
58701 -- 51476;
50820 -- 56683;
56067 -- 61508;
56067 -- 64120;
56067 -- 59142;
65313 -- 59658;
52958 -- 56160;
52958 -- 51621;
52958 -- 65104;
52958 -- 59087;
52958 -- 54872;
52958 -- 61019;
52958 -- 52463;
58455 -- 51621;
58455 -- 57485;
53043 -- 53131;
53043 -- 55671;
53043 -- 50299;
62762 -- 51646;
62762 -- 56110;
62762 -- 61067;
52306 -- 51893;
63741 -- 57765;
63741 -- 49744;
64052 -- 63738;
59177 -- 50583;
64888 -- 57906;
64888 -- 61769;
64888 -- 56848;
64888 -- 64826;
57977 -- 58829;
57977 -- 49177;
59087 -- 50878;
56696 -- 50880;
49177 -- 52784;
57586 -- 53131;
53432 -- 51409;
53432 -- 61223;
59969 -- 53131;
59969 -- 61508;
50583 -- 55671;
59184 -- 57100;
49283 -- 51893;
61615 -- 54810;
50299 -- 57683;
56683 -- 51621;
61223 -- 51529;
62602 -- 56911;
64475 -- 62484;
64475 -- 58579;
58829 -- 60889;
58829 -- 53418;
58829 -- 62984;
51947 -- 55202;
51947 -- 54835;
51947 -- 61820;
54112 -- 55342;
54112 -- 52396;
54112 -- 59708;
63738 -- 51621;
63738 -- 57100;
62484 -- 53131;
62484 -- 49746;
52804 -- 49653;
52804 -- 60849;
54535 -- 56110;
49748 -- 55686;
49746 -- 65163;
52413 -- 53159;
53418 -- 50370;
53418 -- 57906;
53418 -- 51893;
53418 -- 51511;
53418 -- 64119;
53418 -- 49400;
56477 -- 53131;
56477 -- 53336;
56477 -- 61002;
60502 -- 56848;
50312 -- 64909;
50312 -- 59024;
51671 -- 57419;
51671 -- 52463;
51476 -- 63718;
51476 -- 50803;
59550 -- 57520;
50209 -- 55202;
62322 -- 52847;
52537 -- 58354;
63718 -- 53131;
63718 -- 52930;
61769 -- 63819;
54095 -- 51893;
54095 -- 59658;
51384 -- 51893;
57945 -- 63998;
60898 -- 52930;
52930 -- 58619;
54785 -- 56437;
49250 -- 63687;
50900 -- 54872;
50900 -- 56204;
57740 -- 62700;
65375 -- 56911;
65375 -- 50162;
65232 -- 52602;
55965 -- 56840;
55484 -- 56640;
57533 -- 62984;
49653 -- 64410;
57744 -- 62984;
52253 -- 64554;
51893 -- 57194;
51893 -- 63937;
52116 -- 63687;
56840 -- 54872;
56840 -- 61529;
52847 -- 49400;
54057 -- 53359;
56437 -- 57100;
56437 -- 53231;
56437 -- 54810;
59566 -- 58528;
55202 -- 58744;
55202 -- 53359;
57520 -- 51511;
53734 -- 49958;
53734 -- 64966;
57765 -- 51621;
58643 -- 54829;
58643 -- 64822;
52602 -- 49958;
59624 -- 49958;
59624 -- 62194;
63687 -- 51107;
63687 -- 62940;
51249 -- 63826;
65392 -- 60889;
65392 -- 53868;
62561 -- 51511;
53336 -- 49727;
57100 -- 50888;
57100 -- 58528;
62568 -- 63998;
62568 -- 53217;
57264 -- 58354;
64563 -- 51511;
64564 -- 56110;
50370 -- 62155;
50370 -- 60884;
64805 -- 56911;
64805 -- 58354;
64805 -- 61804;
56109 -- 56110;
51621 -- 51646;
57115 -- 61508;
64554 -- 55686;
64554 -- 60030;
62693 -- 51511;
54872 -- 54402;
49400 -- 59932;
56401 -- 57194;
56401 -- 56933;
60889 -- 58354;
60889 -- 51646;
60889 -- 58744;
60889 -- 64909;
56703 -- 51646;
56703 -- 51107;
53359 -- 61401;
63937 -- 55686;
62912 -- 51646;
57906 -- 58249;
55342 -- 58744;
51646 -- 53131;
51646 -- 49958;
51646 -- 62700;
63826 -- 63775;
55276 -- 55671;
51107 -- 63998;
51107 -- 63775;
51107 -- 50567;
63995 -- 59708;
63995 -- 53159;
58744 -- 51409;
58744 -- 58858;
61508 -- 61134;
52900 -- 62984;
50888 -- 51112;
58354 -- 64410;
62700 -- 56640;
61002 -- 53594;
50880 -- 63775;
58345 -- 54835;
}

View File

@ -0,0 +1,180 @@
graph g{
52813 -- 55484;
54432 -- 64410;
54432 -- 58643;
49581 -- 62700;
57765 -- 51621;
57765 -- 63741;
53734 -- 49958;
53734 -- 64966;
58643 -- 64822;
59624 -- 49958;
52602 -- 49958;
52602 -- 65232;
63687 -- 52116;
63687 -- 51107;
63687 -- 62940;
63687 -- 49250;
51249 -- 63826;
50820 -- 56683;
65392 -- 60889;
65392 -- 53868;
62561 -- 51511;
53231 -- 56437;
65313 -- 54095;
62568 -- 63998;
62568 -- 53217;
63819 -- 64888;
53043 -- 53131;
53043 -- 55671;
53043 -- 50299;
57264 -- 64805;
57264 -- 60889;
57264 -- 64410;
64564 -- 54535;
64564 -- 56109;
64564 -- 51646;
64564 -- 61067;
63741 -- 49744;
50370 -- 53418;
50370 -- 62155;
50370 -- 60884;
56160 -- 51621;
56160 -- 54872;
56160 -- 61019;
56160 -- 52463;
56160 -- 50878;
64052 -- 63738;
64805 -- 56911;
64805 -- 60889;
64805 -- 64410;
59177 -- 55671;
56204 -- 50900;
64888 -- 57906;
64888 -- 56848;
57977 -- 58829;
57977 -- 49177;
49177 -- 52784;
56109 -- 54535;
56109 -- 51646;
56109 -- 61067;
53432 -- 51409;
53432 -- 61223;
57115 -- 61508;
51621 -- 51646;
51621 -- 63738;
51621 -- 56683;
51621 -- 54872;
51621 -- 61019;
51621 -- 52463;
51621 -- 57485;
51621 -- 50878;
59969 -- 53131;
59969 -- 61508;
59184 -- 50888;
59184 -- 63738;
59184 -- 56437;
59184 -- 59566;
62693 -- 51511;
49283 -- 51893;
54872 -- 50900;
54872 -- 56840;
54872 -- 54402;
54872 -- 61019;
54872 -- 52463;
54872 -- 50878;
60030 -- 55686;
60030 -- 52253;
49727 -- 53131;
61820 -- 51947;
61223 -- 51529;
56401 -- 56933;
56401 -- 51893;
60889 -- 51646;
60889 -- 58829;
60889 -- 58744;
60889 -- 64909;
60889 -- 64410;
53359 -- 55202;
53359 -- 54057;
53359 -- 61401;
64475 -- 62484;
58829 -- 53418;
58829 -- 62984;
51947 -- 55202;
51947 -- 54835;
63937 -- 51893;
63937 -- 55686;
57906 -- 53418;
62484 -- 53131;
63738 -- 50888;
63738 -- 56437;
63738 -- 59566;
55342 -- 58744;
55342 -- 52396;
55342 -- 59708;
54535 -- 51646;
54535 -- 61067;
49748 -- 55686;
51646 -- 53131;
51646 -- 49958;
51646 -- 62700;
51646 -- 61067;
51646 -- 51107;
52413 -- 63995;
58619 -- 52930;
53418 -- 51893;
53418 -- 51511;
53418 -- 59932;
53418 -- 52847;
63826 -- 63775;
50312 -- 64909;
50312 -- 59024;
60502 -- 56848;
61019 -- 52463;
61019 -- 50878;
50878 -- 52463;
55276 -- 55671;
51107 -- 63998;
51107 -- 63775;
51107 -- 50567;
54810 -- 56437;
63995 -- 59708;
63998 -- 57945;
59932 -- 52847;
64120 -- 61508;
64120 -- 59142;
58744 -- 51409;
58744 -- 55202;
58744 -- 58858;
51476 -- 63718;
59550 -- 57520;
61508 -- 61134;
61508 -- 59142;
52900 -- 62984;
50209 -- 55202;
57419 -- 52463;
62322 -- 52847;
50888 -- 51112;
50888 -- 56437;
50888 -- 59566;
64410 -- 49653;
62984 -- 57744;
62984 -- 57533;
56911 -- 50162;
63718 -- 53131;
63718 -- 52930;
54095 -- 51893;
62700 -- 56640;
62700 -- 57740;
51384 -- 51893;
58345 -- 54835;
60898 -- 52930;
59708 -- 52396;
51511 -- 57520;
56640 -- 55484;
55686 -- 52253;
60849 -- 49653;
61529 -- 56840;
56437 -- 59566;
}

View File

@ -0,0 +1,280 @@
graph g{
52813 -- 55484;
54432 -- 64410;
54432 -- 58643;
49581 -- 62700;
56565 -- 51511;
49778 -- 64564;
65493 -- 58619;
50820 -- 56683;
50820 -- 55017;
65313 -- 54095;
65215 -- 59550;
53043 -- 53131;
53043 -- 55671;
53043 -- 50299;
53043 -- 49302;
63741 -- 57765;
63741 -- 49744;
64052 -- 63738;
64052 -- 51950;
56160 -- 51621;
56160 -- 54872;
56160 -- 61019;
56160 -- 52463;
56160 -- 50878;
56160 -- 57749;
59177 -- 55671;
64888 -- 57906;
64888 -- 56848;
64888 -- 63819;
64888 -- 56704;
57977 -- 58829;
57977 -- 49177;
49177 -- 52784;
50589 -- 58858;
53929 -- 53359;
56056 -- 56401;
53432 -- 51409;
53432 -- 61223;
53432 -- 63399;
59969 -- 53131;
59969 -- 61508;
56057 -- 55456;
59184 -- 50888;
59184 -- 63738;
59184 -- 56437;
59184 -- 59566;
52577 -- 55202;
52577 -- 63109;
49563 -- 65232;
49283 -- 51893;
49283 -- 56934;
64603 -- 57533;
64603 -- 51733;
64084 -- 52602;
51031 -- 59095;
51031 -- 61237;
51031 -- 51587;
61368 -- 55018;
59095 -- 50888;
56683 -- 51621;
61223 -- 51529;
61223 -- 61458;
63087 -- 61067;
59957 -- 51107;
64475 -- 62484;
51949 -- 52116;
58829 -- 60889;
58829 -- 53418;
58829 -- 62984;
51947 -- 55202;
51947 -- 54835;
51947 -- 61820;
51947 -- 58257;
51458 -- 64805;
63738 -- 51621;
63738 -- 50888;
63738 -- 56437;
63738 -- 59566;
63738 -- 57184;
62484 -- 53131;
62484 -- 51084;
63203 -- 50900;
54535 -- 64564;
54535 -- 56109;
54535 -- 51646;
54535 -- 61067;
49748 -- 55686;
52413 -- 63995;
52413 -- 59222;
60605 -- 52847;
63638 -- 64822;
53418 -- 50370;
53418 -- 57906;
53418 -- 51893;
53418 -- 51511;
53418 -- 59932;
53418 -- 52847;
53418 -- 64172;
52417 -- 63775;
52988 -- 50567;
61683 -- 61458;
57567 -- 50567;
50312 -- 64909;
50312 -- 59024;
60502 -- 56848;
60502 -- 50085;
54472 -- 59550;
50724 -- 51476;
52346 -- 51646;
65352 -- 64966;
65352 -- 53154;
51476 -- 63718;
59550 -- 57520;
59550 -- 53499;
56461 -- 56934;
59024 -- 61321;
50209 -- 55202;
57419 -- 52463;
62322 -- 52847;
57341 -- 53868;
63718 -- 53131;
63718 -- 52930;
58204 -- 65232;
58204 -- 55550;
54095 -- 51893;
64985 -- 57520;
52722 -- 52930;
51384 -- 51893;
52463 -- 51621;
52463 -- 54872;
52463 -- 61019;
52463 -- 50878;
60898 -- 52930;
54358 -- 49653;
57945 -- 63998;
52930 -- 58619;
61064 -- 55822;
61067 -- 51646;
61067 -- 64564;
61067 -- 56109;
49250 -- 63687;
49250 -- 60054;
55822 -- 55276;
50900 -- 54872;
50900 -- 56204;
57740 -- 62700;
57740 -- 64552;
62237 -- 51646;
65232 -- 52602;
55484 -- 56640;
49653 -- 64410;
49653 -- 60849;
57533 -- 62984;
57744 -- 62984;
65114 -- 50888;
52253 -- 55686;
52253 -- 60030;
56848 -- 56413;
59062 -- 50103;
51893 -- 63937;
51893 -- 56401;
52116 -- 63687;
56840 -- 54872;
56840 -- 61529;
52847 -- 59932;
54057 -- 53359;
64384 -- 61529;
56437 -- 53231;
56437 -- 54810;
56437 -- 50888;
56437 -- 59566;
59566 -- 50888;
59566 -- 55405;
55202 -- 58744;
55202 -- 53359;
53908 -- 59142;
57520 -- 51511;
53734 -- 49958;
53734 -- 64966;
53734 -- 53471;
57765 -- 51621;
57765 -- 53230;
58643 -- 64822;
59624 -- 49958;
52602 -- 49958;
52602 -- 53651;
51249 -- 63826;
63687 -- 51107;
63687 -- 62940;
49609 -- 55342;
53101 -- 50370;
65392 -- 60889;
65392 -- 53868;
55035 -- 58619;
50103 -- 64303;
62561 -- 51511;
62568 -- 63998;
62568 -- 53217;
60865 -- 62178;
49801 -- 61529;
57264 -- 64805;
57264 -- 60889;
57264 -- 64410;
64564 -- 56109;
64564 -- 51646;
50370 -- 62155;
50370 -- 60884;
50370 -- 51011;
64805 -- 56911;
64805 -- 60889;
64805 -- 64410;
62155 -- 62701;
52763 -- 54835;
56204 -- 62178;
56109 -- 51646;
56109 -- 58009;
51621 -- 51646;
51621 -- 54872;
51621 -- 61019;
51621 -- 57485;
51621 -- 50878;
51621 -- 55018;
57115 -- 61508;
62693 -- 51511;
54872 -- 54402;
54872 -- 61019;
54872 -- 50878;
60030 -- 55686;
53756 -- 59932;
49727 -- 53131;
56401 -- 56933;
56401 -- 51706;
60889 -- 51646;
60889 -- 58744;
60889 -- 64909;
60889 -- 64410;
53359 -- 61401;
53359 -- 63591;
55649 -- 64303;
63937 -- 55686;
55342 -- 58744;
55342 -- 52396;
55342 -- 59708;
55456 -- 50162;
55456 -- 59409;
51646 -- 53131;
51646 -- 49958;
51646 -- 62700;
51646 -- 51107;
63826 -- 63775;
61019 -- 50878;
55276 -- 55671;
51107 -- 63998;
51107 -- 63775;
51107 -- 50567;
53778 -- 64120;
53778 -- 63045;
63995 -- 59708;
53478 -- 63399;
64120 -- 61508;
64120 -- 59142;
58744 -- 51409;
58744 -- 58858;
61508 -- 61134;
61508 -- 59142;
52900 -- 62984;
50888 -- 51112;
64210 -- 51706;
62984 -- 55110;
56911 -- 50162;
62700 -- 56640;
51529 -- 61139;
61513 -- 63399;
51112 -- 59800;
58345 -- 54835;
53653 -- 54835;
59708 -- 52396;
64303 -- 58858;
}

View File

@ -0,0 +1,320 @@
graph g{
52813 -- 55484;
49581 -- 62700;
54432 -- 64410;
54432 -- 63638;
49778 -- 54535;
49778 -- 56109;
49778 -- 51646;
49778 -- 61067;
65493 -- 58619;
50820 -- 56683;
65313 -- 54095;
65215 -- 59550;
53043 -- 53131;
53043 -- 50299;
53043 -- 49302;
53043 -- 55276;
53043 -- 59177;
63741 -- 57765;
63741 -- 49744;
64052 -- 63738;
64052 -- 51950;
56160 -- 51621;
56160 -- 54872;
56160 -- 61019;
56160 -- 50878;
56160 -- 57749;
56160 -- 57419;
59177 -- 55276;
64888 -- 57906;
64888 -- 56848;
64888 -- 56704;
49177 -- 52784;
49177 -- 58829;
50589 -- 50103;
50589 -- 55649;
50589 -- 55342;
50589 -- 51646;
50589 -- 58829;
50589 -- 64909;
50589 -- 65392;
50589 -- 64805;
50589 -- 64410;
50589 -- 53432;
50589 -- 53359;
50589 -- 51947;
50589 -- 50209;
50589 -- 52577;
53929 -- 53359;
53432 -- 61223;
53432 -- 63399;
53432 -- 55342;
53432 -- 51646;
53432 -- 58829;
53432 -- 64909;
53432 -- 65392;
53432 -- 64805;
53432 -- 64410;
53432 -- 50103;
53432 -- 55649;
53432 -- 53359;
53432 -- 51947;
53432 -- 50209;
53432 -- 52577;
56056 -- 56401;
56057 -- 50162;
56057 -- 59409;
59969 -- 53131;
59969 -- 61508;
59184 -- 50888;
59184 -- 63738;
59184 -- 56437;
59184 -- 59566;
52577 -- 63109;
52577 -- 53359;
52577 -- 51947;
52577 -- 50209;
52577 -- 55342;
52577 -- 51646;
52577 -- 58829;
52577 -- 64909;
52577 -- 65392;
52577 -- 64805;
52577 -- 64410;
52577 -- 50103;
52577 -- 55649;
49563 -- 65232;
49283 -- 51893;
49283 -- 56461;
64603 -- 51733;
64603 -- 62984;
64084 -- 52602;
51031 -- 59095;
51031 -- 61237;
51031 -- 51587;
61368 -- 51621;
56683 -- 51621;
59095 -- 50888;
61223 -- 51529;
61223 -- 61458;
63087 -- 61067;
59957 -- 51107;
64475 -- 62484;
58829 -- 53418;
58829 -- 62984;
58829 -- 51646;
58829 -- 64909;
58829 -- 65392;
58829 -- 64805;
58829 -- 64410;
58829 -- 55342;
58829 -- 50103;
58829 -- 55649;
58829 -- 53359;
58829 -- 51947;
58829 -- 50209;
51947 -- 54835;
51947 -- 61820;
51947 -- 53359;
51947 -- 50209;
51947 -- 55342;
51947 -- 51646;
51947 -- 64909;
51947 -- 65392;
51947 -- 64805;
51947 -- 64410;
51947 -- 50103;
51947 -- 55649;
51458 -- 64805;
62484 -- 53131;
62484 -- 51084;
63738 -- 51621;
63738 -- 50888;
63738 -- 56437;
63738 -- 59566;
63738 -- 57184;
54535 -- 56109;
54535 -- 51646;
54535 -- 61067;
52413 -- 63995;
53418 -- 50370;
53418 -- 57906;
53418 -- 51893;
53418 -- 51511;
53418 -- 59932;
53418 -- 52847;
53418 -- 64172;
52417 -- 63775;
52988 -- 50567;
61683 -- 61458;
57567 -- 50567;
50312 -- 64909;
50312 -- 59024;
60502 -- 56848;
60502 -- 50085;
54472 -- 59550;
50724 -- 51476;
65352 -- 64966;
51476 -- 53131;
51476 -- 52930;
59550 -- 57520;
59550 -- 53499;
59024 -- 61321;
50209 -- 53359;
50209 -- 55342;
50209 -- 51646;
50209 -- 64909;
50209 -- 65392;
50209 -- 64805;
50209 -- 64410;
50209 -- 50103;
50209 -- 55649;
57419 -- 51621;
57419 -- 54872;
57419 -- 61019;
57419 -- 50878;
57341 -- 53868;
58204 -- 65232;
58204 -- 55550;
54095 -- 51893;
64985 -- 57520;
52722 -- 52930;
60898 -- 52930;
57945 -- 63998;
52930 -- 58619;
52930 -- 53131;
61064 -- 55822;
61067 -- 51646;
61067 -- 56109;
55822 -- 55276;
49250 -- 63687;
62237 -- 51646;
65232 -- 52602;
55484 -- 56640;
49653 -- 64410;
49653 -- 60849;
65114 -- 50888;
56848 -- 56413;
59062 -- 50103;
51893 -- 63937;
51893 -- 56401;
56840 -- 54872;
56840 -- 61529;
52847 -- 59932;
54057 -- 53359;
64384 -- 61529;
56437 -- 53231;
56437 -- 50888;
56437 -- 59566;
59566 -- 50888;
59566 -- 55405;
53908 -- 59142;
57520 -- 51511;
53734 -- 49958;
53734 -- 64966;
53734 -- 53471;
57765 -- 51621;
57765 -- 53230;
52602 -- 49958;
52602 -- 53651;
51249 -- 63775;
63687 -- 51107;
63687 -- 62940;
49609 -- 55342;
53101 -- 50370;
65392 -- 53868;
65392 -- 51646;
65392 -- 64909;
65392 -- 64805;
65392 -- 64410;
65392 -- 55342;
65392 -- 50103;
65392 -- 55649;
65392 -- 53359;
55035 -- 58619;
62561 -- 51511;
50103 -- 55649;
50103 -- 55342;
50103 -- 51646;
50103 -- 64909;
50103 -- 64805;
50103 -- 64410;
50103 -- 53359;
62568 -- 63998;
60865 -- 62178;
49801 -- 61529;
50370 -- 62155;
50370 -- 60884;
50370 -- 51011;
64805 -- 56911;
64805 -- 64410;
64805 -- 51646;
64805 -- 64909;
64805 -- 55342;
64805 -- 55649;
64805 -- 53359;
62155 -- 62701;
56204 -- 62178;
56204 -- 54872;
52763 -- 54835;
56109 -- 51646;
56109 -- 58009;
57115 -- 61508;
51621 -- 51646;
51621 -- 54872;
51621 -- 61019;
51621 -- 50878;
62693 -- 51511;
64552 -- 62700;
54872 -- 54402;
54872 -- 61019;
54872 -- 50878;
60030 -- 63937;
53756 -- 59932;
56401 -- 51706;
53359 -- 63591;
53359 -- 55342;
53359 -- 51646;
53359 -- 64909;
53359 -- 64410;
53359 -- 55649;
55649 -- 55342;
55649 -- 51646;
55649 -- 64909;
55649 -- 64410;
55342 -- 52396;
55342 -- 59708;
55342 -- 51646;
55342 -- 64909;
55342 -- 64410;
51646 -- 53131;
51646 -- 49958;
51646 -- 62700;
51646 -- 51107;
51646 -- 64909;
51646 -- 64410;
61019 -- 50878;
51107 -- 63998;
51107 -- 63775;
51107 -- 50567;
53778 -- 63045;
53778 -- 61508;
53778 -- 59142;
63995 -- 59708;
53478 -- 63399;
61508 -- 59142;
52900 -- 62984;
50888 -- 51112;
64410 -- 64909;
64210 -- 51706;
62984 -- 55110;
56911 -- 50162;
62700 -- 56640;
51529 -- 61139;
61513 -- 63399;
58345 -- 54835;
53653 -- 54835;
59708 -- 52396;
59409 -- 50162;
}

View File

@ -0,0 +1,685 @@
graph g{
52813 -- 56640;
57765 -- 51621;
57765 -- 63741;
57765 -- 53230;
53734 -- 49958;
53734 -- 65352;
54432 -- 64410;
49778 -- 54535;
49778 -- 56109;
49778 -- 61067;
49778 -- 53131;
49778 -- 51621;
49778 -- 49958;
49778 -- 62700;
49778 -- 51107;
49778 -- 64909;
49778 -- 65392;
49778 -- 64805;
49778 -- 64410;
49778 -- 53432;
49778 -- 50589;
49778 -- 55649;
49778 -- 53359;
49778 -- 51947;
49778 -- 50209;
49778 -- 52577;
49778 -- 52396;
49778 -- 49609;
49778 -- 62984;
49778 -- 52784;
49778 -- 51893;
49778 -- 51511;
49778 -- 52847;
49778 -- 64172;
49778 -- 64888;
49778 -- 63995;
49778 -- 53756;
49778 -- 62155;
49778 -- 53101;
52602 -- 49958;
52602 -- 65232;
52602 -- 64084;
52602 -- 53651;
51249 -- 51107;
51249 -- 52417;
63687 -- 51107;
63687 -- 49250;
49609 -- 52396;
49609 -- 64909;
49609 -- 65392;
49609 -- 64805;
49609 -- 64410;
49609 -- 53432;
49609 -- 50589;
49609 -- 55649;
49609 -- 53359;
49609 -- 51947;
49609 -- 50209;
49609 -- 52577;
49609 -- 62984;
49609 -- 52784;
49609 -- 51893;
49609 -- 51511;
49609 -- 52847;
49609 -- 64172;
49609 -- 64888;
49609 -- 63995;
49609 -- 53131;
49609 -- 51621;
49609 -- 49958;
49609 -- 62700;
49609 -- 61067;
49609 -- 51107;
49609 -- 54535;
49609 -- 56109;
49609 -- 53756;
49609 -- 62155;
49609 -- 53101;
53101 -- 62155;
53101 -- 51893;
53101 -- 51511;
53101 -- 52847;
53101 -- 64172;
53101 -- 64888;
53101 -- 62984;
53101 -- 64909;
53101 -- 65392;
53101 -- 64805;
53101 -- 64410;
53101 -- 53432;
53101 -- 50589;
53101 -- 55649;
53101 -- 53359;
53101 -- 51947;
53101 -- 50209;
53101 -- 52577;
53101 -- 52784;
53101 -- 52396;
53101 -- 63995;
53101 -- 53131;
53101 -- 51621;
53101 -- 49958;
53101 -- 62700;
53101 -- 61067;
53101 -- 51107;
53101 -- 54535;
53101 -- 56109;
53101 -- 53756;
50820 -- 56683;
65392 -- 64909;
65392 -- 64805;
65392 -- 64410;
65392 -- 53432;
65392 -- 50589;
65392 -- 55649;
65392 -- 53359;
65392 -- 51947;
65392 -- 50209;
65392 -- 52577;
65392 -- 52396;
65392 -- 62984;
65392 -- 52784;
65392 -- 51893;
65392 -- 51511;
65392 -- 52847;
65392 -- 64172;
65392 -- 64888;
65392 -- 63995;
65392 -- 53131;
65392 -- 51621;
65392 -- 49958;
65392 -- 62700;
65392 -- 61067;
65392 -- 51107;
65392 -- 54535;
65392 -- 56109;
65392 -- 53756;
65392 -- 57341;
65392 -- 62155;
62561 -- 51511;
53231 -- 50888;
53231 -- 59184;
53231 -- 59566;
53231 -- 51621;
53231 -- 64052;
53231 -- 57184;
55035 -- 58619;
65313 -- 54095;
62568 -- 51107;
62568 -- 57945;
60865 -- 62178;
49801 -- 61529;
53043 -- 53131;
53043 -- 49302;
53043 -- 55276;
53043 -- 59177;
63741 -- 49744;
64052 -- 51621;
64052 -- 50888;
64052 -- 59184;
64052 -- 59566;
64052 -- 57184;
62155 -- 62701;
62155 -- 51893;
62155 -- 51511;
62155 -- 52847;
62155 -- 64172;
62155 -- 64888;
62155 -- 62984;
62155 -- 64909;
62155 -- 64805;
62155 -- 64410;
62155 -- 53432;
62155 -- 50589;
62155 -- 55649;
62155 -- 53359;
62155 -- 51947;
62155 -- 50209;
62155 -- 52577;
62155 -- 52784;
62155 -- 52396;
62155 -- 63995;
62155 -- 53131;
62155 -- 51621;
62155 -- 49958;
62155 -- 62700;
62155 -- 61067;
62155 -- 51107;
62155 -- 54535;
62155 -- 56109;
62155 -- 53756;
64805 -- 56911;
64805 -- 64410;
64805 -- 51458;
64805 -- 64909;
64805 -- 53432;
64805 -- 50589;
64805 -- 55649;
64805 -- 53359;
64805 -- 51947;
64805 -- 50209;
64805 -- 52577;
64805 -- 52396;
64805 -- 62984;
64805 -- 52784;
64805 -- 51893;
64805 -- 51511;
64805 -- 52847;
64805 -- 64172;
64805 -- 64888;
64805 -- 63995;
64805 -- 53131;
64805 -- 51621;
64805 -- 49958;
64805 -- 62700;
64805 -- 61067;
64805 -- 51107;
64805 -- 54535;
64805 -- 56109;
64805 -- 53756;
59177 -- 55276;
56204 -- 62178;
56204 -- 54402;
56204 -- 51621;
56204 -- 50878;
56204 -- 57419;
56204 -- 61529;
56204 -- 57749;
52763 -- 54835;
64888 -- 56848;
64888 -- 56704;
64888 -- 51893;
64888 -- 51511;
64888 -- 52847;
64888 -- 64172;
64888 -- 62984;
64888 -- 64909;
64888 -- 64410;
64888 -- 53432;
64888 -- 50589;
64888 -- 55649;
64888 -- 53359;
64888 -- 51947;
64888 -- 50209;
64888 -- 52577;
64888 -- 52784;
64888 -- 52396;
64888 -- 63995;
64888 -- 53131;
64888 -- 51621;
64888 -- 49958;
64888 -- 62700;
64888 -- 61067;
64888 -- 51107;
64888 -- 54535;
64888 -- 56109;
64888 -- 53756;
56413 -- 56848;
56109 -- 54535;
56109 -- 61067;
56109 -- 58009;
56109 -- 53131;
56109 -- 51621;
56109 -- 49958;
56109 -- 62700;
56109 -- 51107;
56109 -- 64909;
56109 -- 64410;
56109 -- 53432;
56109 -- 50589;
56109 -- 55649;
56109 -- 53359;
56109 -- 51947;
56109 -- 50209;
56109 -- 52577;
56109 -- 52396;
56109 -- 62984;
56109 -- 52784;
56109 -- 51893;
56109 -- 51511;
56109 -- 52847;
56109 -- 64172;
56109 -- 63995;
56109 -- 53756;
50589 -- 55649;
50589 -- 64909;
50589 -- 64410;
50589 -- 53432;
50589 -- 53359;
50589 -- 51947;
50589 -- 50209;
50589 -- 52577;
50589 -- 52396;
50589 -- 62984;
50589 -- 52784;
50589 -- 51893;
50589 -- 51511;
50589 -- 52847;
50589 -- 64172;
50589 -- 63995;
50589 -- 53131;
50589 -- 51621;
50589 -- 49958;
50589 -- 62700;
50589 -- 61067;
50589 -- 51107;
50589 -- 54535;
50589 -- 53756;
53432 -- 61223;
53432 -- 63399;
53432 -- 64909;
53432 -- 64410;
53432 -- 55649;
53432 -- 53359;
53432 -- 51947;
53432 -- 50209;
53432 -- 52577;
53432 -- 52396;
53432 -- 62984;
53432 -- 52784;
53432 -- 51893;
53432 -- 51511;
53432 -- 52847;
53432 -- 64172;
53432 -- 63995;
53432 -- 53131;
53432 -- 51621;
53432 -- 49958;
53432 -- 62700;
53432 -- 61067;
53432 -- 51107;
53432 -- 54535;
53432 -- 53756;
56056 -- 51893;
56056 -- 51706;
57115 -- 61508;
59969 -- 53131;
59969 -- 61508;
56057 -- 59409;
56057 -- 56911;
51621 -- 56683;
51621 -- 50878;
51621 -- 57419;
51621 -- 50888;
51621 -- 59184;
51621 -- 59566;
51621 -- 57184;
51621 -- 57749;
51621 -- 53131;
51621 -- 49958;
51621 -- 62700;
51621 -- 61067;
51621 -- 51107;
51621 -- 54535;
51621 -- 64909;
51621 -- 64410;
51621 -- 55649;
51621 -- 53359;
51621 -- 51947;
51621 -- 50209;
51621 -- 52577;
51621 -- 52396;
51621 -- 62984;
51621 -- 52784;
51621 -- 51893;
51621 -- 51511;
51621 -- 52847;
51621 -- 64172;
51621 -- 63995;
51621 -- 53756;
51621 -- 54402;
51621 -- 61529;
61458 -- 61223;
61458 -- 61683;
59184 -- 50888;
59184 -- 59566;
59184 -- 57184;
62693 -- 51511;
52577 -- 63109;
52577 -- 53359;
52577 -- 51947;
52577 -- 50209;
52577 -- 64909;
52577 -- 64410;
52577 -- 55649;
52577 -- 52396;
52577 -- 62984;
52577 -- 52784;
52577 -- 51893;
52577 -- 51511;
52577 -- 52847;
52577 -- 64172;
52577 -- 63995;
52577 -- 53131;
52577 -- 49958;
52577 -- 62700;
52577 -- 61067;
52577 -- 51107;
52577 -- 54535;
52577 -- 53756;
49563 -- 65232;
64552 -- 62700;
49283 -- 51893;
49283 -- 56461;
64603 -- 62984;
53499 -- 59550;
51031 -- 61237;
51031 -- 51587;
51031 -- 50888;
60030 -- 51893;
53756 -- 52847;
53756 -- 51893;
53756 -- 51511;
53756 -- 64172;
53756 -- 62984;
53756 -- 64909;
53756 -- 64410;
53756 -- 55649;
53756 -- 53359;
53756 -- 51947;
53756 -- 50209;
53756 -- 52784;
53756 -- 52396;
53756 -- 63995;
53756 -- 53131;
53756 -- 49958;
53756 -- 62700;
53756 -- 61067;
53756 -- 51107;
53756 -- 54535;
61820 -- 51947;
61223 -- 51529;
63087 -- 61067;
53359 -- 54057;
53359 -- 63591;
53359 -- 51947;
53359 -- 50209;
53359 -- 64909;
53359 -- 64410;
53359 -- 55649;
53359 -- 52396;
53359 -- 62984;
53359 -- 52784;
53359 -- 51893;
53359 -- 51511;
53359 -- 52847;
53359 -- 64172;
53359 -- 63995;
53359 -- 53131;
53359 -- 49958;
53359 -- 62700;
53359 -- 61067;
53359 -- 51107;
53359 -- 54535;
59957 -- 51107;
55649 -- 64909;
55649 -- 64410;
55649 -- 51947;
55649 -- 50209;
55649 -- 52396;
55649 -- 62984;
55649 -- 52784;
55649 -- 51893;
55649 -- 51511;
55649 -- 52847;
55649 -- 64172;
55649 -- 63995;
55649 -- 53131;
55649 -- 49958;
55649 -- 62700;
55649 -- 61067;
55649 -- 51107;
55649 -- 54535;
64475 -- 53131;
64475 -- 51084;
51947 -- 54835;
51947 -- 50209;
51947 -- 64909;
51947 -- 64410;
51947 -- 52396;
51947 -- 62984;
51947 -- 52784;
51947 -- 51893;
51947 -- 51511;
51947 -- 52847;
51947 -- 64172;
51947 -- 63995;
51947 -- 53131;
51947 -- 49958;
51947 -- 62700;
51947 -- 61067;
51947 -- 51107;
51947 -- 54535;
52784 -- 62984;
52784 -- 64909;
52784 -- 64410;
52784 -- 50209;
52784 -- 51893;
52784 -- 51511;
52784 -- 52847;
52784 -- 64172;
52784 -- 52396;
52784 -- 63995;
52784 -- 53131;
52784 -- 49958;
52784 -- 62700;
52784 -- 61067;
52784 -- 51107;
52784 -- 54535;
54535 -- 61067;
54535 -- 53131;
54535 -- 49958;
54535 -- 62700;
54535 -- 51107;
54535 -- 64909;
54535 -- 64410;
54535 -- 50209;
54535 -- 52396;
54535 -- 62984;
54535 -- 51893;
54535 -- 51511;
54535 -- 52847;
54535 -- 64172;
54535 -- 63995;
55550 -- 58204;
52413 -- 63995;
58619 -- 52930;
52417 -- 51107;
52988 -- 50567;
57567 -- 50567;
60502 -- 56848;
60502 -- 50085;
55276 -- 55822;
50878 -- 57419;
50878 -- 57749;
50878 -- 54402;
50878 -- 61529;
54472 -- 59550;
51107 -- 50567;
51107 -- 57945;
51107 -- 53131;
51107 -- 49958;
51107 -- 62700;
51107 -- 61067;
51107 -- 64909;
51107 -- 64410;
51107 -- 50209;
51107 -- 52396;
51107 -- 62984;
51107 -- 51893;
51107 -- 51511;
51107 -- 52847;
51107 -- 64172;
51107 -- 63995;
53778 -- 61508;
53778 -- 59142;
63995 -- 52396;
63995 -- 64909;
63995 -- 64410;
63995 -- 50209;
63995 -- 62984;
63995 -- 51893;
63995 -- 51511;
63995 -- 52847;
63995 -- 64172;
63995 -- 53131;
63995 -- 49958;
63995 -- 62700;
63995 -- 61067;
50724 -- 51476;
53478 -- 63399;
51476 -- 53131;
51476 -- 52930;
59550 -- 57520;
61508 -- 59142;
50209 -- 64909;
50209 -- 64410;
50209 -- 52396;
50209 -- 62984;
50209 -- 51893;
50209 -- 51511;
50209 -- 52847;
50209 -- 64172;
50209 -- 53131;
50209 -- 49958;
50209 -- 62700;
50209 -- 61067;
57419 -- 57749;
57419 -- 54402;
57419 -- 61529;
54402 -- 61529;
54402 -- 57749;
50888 -- 51112;
50888 -- 59566;
50888 -- 57184;
57184 -- 59566;
59142 -- 53908;
64410 -- 49653;
64410 -- 64909;
64410 -- 52396;
64410 -- 62984;
64410 -- 51893;
64410 -- 51511;
64410 -- 52847;
64410 -- 64172;
64410 -- 53131;
64410 -- 49958;
64410 -- 62700;
64410 -- 61067;
64210 -- 51706;
62984 -- 55110;
62984 -- 64909;
62984 -- 51893;
62984 -- 51511;
62984 -- 52847;
62984 -- 64172;
62984 -- 52396;
62984 -- 53131;
62984 -- 49958;
62984 -- 62700;
62984 -- 61067;
56911 -- 59409;
51084 -- 53131;
58204 -- 65232;
54095 -- 51893;
64909 -- 52396;
64909 -- 51893;
64909 -- 51511;
64909 -- 52847;
64909 -- 64172;
64909 -- 53131;
64909 -- 49958;
64909 -- 62700;
64909 -- 61067;
64909 -- 61321;
62700 -- 56640;
62700 -- 53131;
62700 -- 49958;
62700 -- 61067;
62700 -- 52396;
62700 -- 51893;
62700 -- 51511;
62700 -- 52847;
62700 -- 64172;
64985 -- 57520;
51529 -- 61139;
52722 -- 52930;
49958 -- 53131;
49958 -- 61067;
49958 -- 52396;
49958 -- 51893;
49958 -- 51511;
49958 -- 52847;
49958 -- 64172;
53653 -- 54835;
52930 -- 53131;
61064 -- 55822;
51511 -- 57520;
51511 -- 51893;
51511 -- 52847;
51511 -- 64172;
51511 -- 52396;
51511 -- 53131;
51511 -- 61067;
61067 -- 53131;
61067 -- 52396;
61067 -- 51893;
61067 -- 52847;
61067 -- 64172;
52396 -- 51893;
52396 -- 52847;
52396 -- 64172;
52396 -- 53131;
57749 -- 61529;
61529 -- 64384;
60849 -- 49653;
51893 -- 51706;
51893 -- 52847;
51893 -- 64172;
51893 -- 53131;
53131 -- 52847;
53131 -- 64172;
52847 -- 64172;
}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 84 KiB

View File

@ -0,0 +1,997 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg contentScriptType="text/ecmascript" width="872px"
xmlns:xlink="http://www.w3.org/1999/xlink" zoomAndPan="magnify"
contentStyleType="text/css" viewBox="-1335 -1481 2817 2715" height="841px"
preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"
version="1.1">
<g id="edges">
<path fill="none" stroke-width="1.0"
d="M -192.276489,904.593079 C -223.009857,877.730042 -228.815338,791.335449 -201.952301,760.602051"
class="52813 55484" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 185.856705,318.884247 C 134.971329,280.932159 115.571365,147.676025 153.523422,96.790649"
class="54432 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 185.856705,318.884247 C 232.758209,349.583832 257.061066,465.985474 226.361465,512.886963"
class="54432 58643" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 153.523422,96.790649 C 196.530334,114.954575 233.794800,206.710815 215.630875,249.717728"
class="64410 49653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 226.361465,512.886963 C 254.640167,532.432495 267.739929,604.168823 248.194412,632.447510"
class="58643 64822" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -285.543854,442.932343 C -303.081940,411.513519 -282.260864,338.078186 -250.842041,320.540100"
class="49581 62700" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -250.842041,320.540100 C -196.987793,365.338074 -183.403366,513.316406 -228.201340,567.170654"
class="62700 56640" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -250.842041,320.540100 C -222.641144,337.294647 -205.471619,404.727783 -222.226166,432.928680"
class="62700 57740" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -910.202148,507.065857 C -899.951233,440.697815 -785.022827,356.522064 -718.654724,366.772980"
class="57765 51621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -910.202148,507.065857 C -923.711975,566.061401 -1032.469971,634.289978 -1091.465454,620.780151"
class="57765 63741" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -704.041382,413.855927 -752.745728,506.400330 -799.828674,521.013672"
class="51621 56683" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -700.833191,209.471741 -438.149017,0.252213 -280.847778,18.073759"
class="51621 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -769.334900,421.253601 -927.076172,426.954254 -981.556763,376.274048"
class="51621 54872" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -745.215820,394.679169 -826.916626,396.696869 -854.822815,370.135834"
class="51621 61019" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -750.960327,408.155731 -861.492981,421.771393 -902.875732,389.465729"
class="51621 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -753.120728,392.251251 -843.037109,378.769714 -868.515442,344.303711"
class="51621 50878" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -651.233643,444.515747 -666.716064,662.261536 -744.458801,729.682617"
class="51621 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -718.654724,366.772980 C -714.587219,391.753448 -745.956726,435.325439 -770.937195,439.392944"
class="51621 57485" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1091.465454,620.780151 C -1099.549927,659.922363 -1170.389893,706.509033 -1209.532227,698.424561"
class="63741 49744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -454.733185,327.584991 C -475.089661,290.122009 -449.429871,203.392792 -411.966888,183.036316"
class="53734 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -454.733185,327.584991 C -439.062042,354.631256 -456.124786,418.707367 -483.171051,434.378510"
class="53734 64966" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -511.042389,167.572250 C -488.134491,150.849976 -428.689178,160.128403 -411.966888,183.036316"
class="59624 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -515.984314,277.616577 C -514.096863,237.897049 -451.686432,181.148880 -411.966888,183.036316"
class="52602 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -515.984314,277.616577 C -511.921082,305.574554 -547.763123,353.606354 -575.721130,357.669617"
class="52602 65232" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -873.291931,-245.817001 C -912.166504,-236.983276 -983.729004,-282.044556 -992.562683,-320.919159"
class="63687 52116" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -873.291931,-245.817001 C -816.992188,-284.969147 -673.814453,-259.247742 -634.662292,-202.948029"
class="63687 51107" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -873.291931,-245.817001 C -910.328369,-222.494675 -1000.866394,-243.065765 -1024.188721,-280.102142"
class="63687 62940" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -873.291931,-245.817001 C -897.790100,-215.306030 -980.303894,-206.286896 -1010.814880,-230.785110"
class="63687 49250" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -634.662292,-202.948029 C -701.373230,-210.228149 -790.519531,-321.214783 -783.239380,-387.925751"
class="51107 63998" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -634.662292,-202.948029 C -690.454956,-187.880096 -796.745789,-248.967148 -811.813721,-304.759766"
class="51107 63775" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -634.662292,-202.948029 C -659.899658,-201.944489 -699.260986,-238.295227 -700.264587,-263.532593"
class="51107 50567" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1111.557617,-469.809052 C -1074.793091,-482.862427 -1000.066162,-447.295685 -987.012817,-410.531128"
class="51249 63826" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -987.012817,-410.531128 C -930.818726,-424.416687 -825.699219,-360.953857 -811.813721,-304.759766"
class="63826 63775" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -885.440796,617.624573 C -887.640564,581.179932 -836.273315,523.213440 -799.828674,521.013672"
class="50820 56683" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -16.316385,-267.937012 C 22.756575,-267.303528 80.415787,-207.743881 79.782310,-168.670914"
class="65392 60889" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -16.316385,-267.937012 C -51.043793,-269.447266 -100.869514,-323.803741 -99.359261,-358.531158"
class="65392 53868" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 79.782310,-168.670914 C 147.622833,-130.326828 191.867523,28.950119 153.523422,96.790649"
class="60889 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 79.782310,-168.670914 C 45.005222,-59.195953 -171.372818,52.850845 -280.847778,18.073759"
class="60889 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 79.782310,-168.670914 C 211.635864,-192.821533 445.642120,-31.267117 469.792725,100.586441"
class="60889 58829" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 79.782310,-168.670914 C -35.793549,-244.161926 -95.920830,-530.762207 -20.429825,-646.338074"
class="60889 58744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 79.782310,-168.670914 C 40.716721,-206.984650 39.588951,-323.053650 77.902695,-362.119232"
class="60889 64909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1272.225586,359.027100 C 1237.634644,380.428955 1153.645386,360.645264 1132.243652,326.054321"
class="62561 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1132.243652,326.054321 C 1135.979614,280.748749 1209.541992,218.394348 1254.847534,222.130310"
class="51511 57520" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -614.807922,1031.799927 C -653.673401,1020.883179 -695.596497,946.209778 -684.679749,907.344299"
class="53231 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -684.679749,907.344299 C -704.800476,908.834167 -737.216248,880.887817 -738.706116,860.767090"
class="56437 59566" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1089.404297,349.327118 C 1129.005127,359.166718 1173.646851,433.327301 1163.807251,472.928070"
class="65313 54095" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1163.807251,472.928070 C 1182.770508,500.532410 1169.809082,570.383972 1142.204712,589.347290"
class="54095 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -923.869141,-535.787354 C -866.170837,-534.341003 -781.793030,-445.624023 -783.239380,-387.925751"
class="62568 63998" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -923.869141,-535.787354 C -962.251404,-534.258850 -1022.117615,-589.539429 -1023.646118,-627.921692"
class="62568 53217" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -783.239380,-387.925751 C -819.160583,-395.185822 -862.152405,-459.957764 -854.892334,-495.879028"
class="63998 57945" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 882.940979,1010.554382 C 859.197998,990.442139 853.751892,924.659302 873.864136,900.916321"
class="63819 64888" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 873.864136,900.916321 C 822.928162,852.677979 818.881592,703.916382 867.119934,652.980408"
class="64888 57906" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 873.864136,900.916321 C 914.528442,933.193176 927.109680,1042.604858 894.832825,1083.269165"
class="64888 56848" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 523.816833,-323.811646 C 471.950073,-253.918411 289.310089,-226.878738 219.416855,-278.745483"
class="53043 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 523.816833,-323.811646 C 563.343018,-384.991577 714.402222,-417.472168 775.582092,-377.945984"
class="53043 55671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 523.816833,-323.811646 C 544.719116,-355.697174 623.901001,-372.171997 655.786499,-351.269684"
class="53043 50299" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 107.186470,-39.475021 C 143.707001,-21.489277 171.509155,60.270123 153.523422,96.790649"
class="57264 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 107.186470,-39.475021 C 75.866455,-59.833370 59.423965,-137.350906 79.782310,-168.670914"
class="57264 60889" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 107.186470,-39.475021 C 126.164207,-45.202972 163.222748,-25.328289 168.950699,-6.350549"
class="57264 64805" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 168.950699,-6.350549 C 186.493484,17.363148 177.237106,79.247864 153.523422,96.790649"
class="64805 64410" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 168.950699,-6.350549 C 118.652946,-20.980942 65.151917,-118.373169 79.782310,-168.670914"
class="64805 60889" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 168.950699,-6.350549 C 210.504608,-4.658004 270.296661,60.211693 268.604126,101.765610"
class="64805 56911" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.270630,-48.490387 C -327.563660,-42.678421 -345.721191,-43.400032 -351.533142,-49.693069"
class="64564 54535" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.270630,-48.490387 C -313.525085,-35.570175 -321.287048,-4.571531 -334.207275,3.174021"
class="64564 56109" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.270630,-48.490387 C -299.873230,-43.262131 -275.619507,-3.323641 -280.847778,18.073759"
class="64564 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -321.270630,-48.490387 C -323.019501,-33.152897 -348.648987,-12.769950 -363.986481,-14.518803"
class="64564 61067" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -351.533142,-49.693069 C -323.842682,-50.276775 -281.431488,-9.616682 -280.847778,18.073759"
class="54535 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -351.533142,-49.693069 C -346.988953,-40.167545 -354.460968,-19.062988 -363.986481,-14.518803"
class="54535 61067" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -334.207275,3.174021 C -348.245880,-3.934224 -358.641388,-35.654480 -351.533142,-49.693069"
class="56109 54535" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -334.207275,3.174021 C -320.555420,-4.517931 -288.539734,4.421911 -280.847778,18.073759"
class="56109 51646" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -334.207275,3.174021 C -343.701691,5.591298 -361.569214,-5.024397 -363.986481,-14.518803"
class="56109 61067" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -280.847778,18.073759 C -214.353348,72.565880 -196.349930,254.045700 -250.842041,320.540100"
class="51646 62700" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -280.847778,18.073759 C -274.079102,77.290092 -352.750549,176.267624 -411.966888,183.036316"
class="51646 49958" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -280.847778,18.073759 C -395.815033,44.632301 -608.103760,-87.980766 -634.662292,-202.948029"
class="51646 51107" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -280.847778,18.073759 C -240.158691,-141.343018 60.000072,-319.434570 219.416855,-278.745483"
class="51646 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -280.847778,18.073759 C -303.994049,28.182987 -353.877258,8.627448 -363.986481,-14.518803"
class="51646 61067" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 973.187439,535.542847 C 923.813232,530.407227 857.455444,448.642456 862.591064,399.268280"
class="50370 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 973.187439,535.542847 C 1006.137512,550.078735 1033.758789,621.307800 1019.222900,654.257874"
class="50370 62155" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 973.187439,535.542847 C 1007.678650,531.581543 1065.357422,577.376343 1069.318848,611.867554"
class="50370 60884" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 862.591064,399.268280 C 901.878784,330.694977 1063.670288,286.766602 1132.243652,326.054321"
class="53418 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 862.591064,399.268280 C 956.529602,381.361359 1124.297729,495.408752 1142.204712,589.347290"
class="53418 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 862.591064,399.268280 C 884.526672,385.695465 937.789246,398.239685 951.362061,420.175293"
class="53418 59932" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 862.591064,399.268280 C 875.126892,368.722046 939.750000,341.706421 970.296204,354.242218"
class="53418 52847" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -865.037964,387.494141 C -839.905518,354.073273 -752.075623,341.640564 -718.654724,366.772980"
class="56160 51621" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -865.037964,387.494141 C -890.585754,408.553894 -960.497009,401.821838 -981.556763,376.274048"
class="56160 54872" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -865.037964,387.494141 C -866.466614,381.979462 -860.337524,371.564453 -854.822815,370.135834"
class="56160 61019" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -865.037964,387.494141 C -872.211182,395.456024 -894.913818,396.638977 -902.875732,389.465729"
class="56160 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -865.037964,387.494141 C -874.371521,379.551544 -876.458008,353.637299 -868.515442,344.303711"
class="56160 50878" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -957.437622,349.699615 -881.397278,346.016663 -854.822815,370.135834"
class="54872 61019" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -963.182251,363.176178 -915.973633,371.091187 -902.875732,389.465729"
class="54872 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -965.342529,347.271698 -897.517761,328.089508 -868.515442,344.303711"
class="54872 50878" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -1024.888794,412.974823 -1144.937988,403.027924 -1181.638672,359.695923"
class="54872 50900" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -1007.526367,425.941223 -1120.981567,461.487579 -1170.648682,435.517975"
class="54872 56840" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -981.556763,376.274048 C -1013.706909,396.244843 -1091.888428,377.975830 -1111.859253,345.825653"
class="54872 54402" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -854.822815,370.135834 C -860.567444,383.612396 -889.399170,395.210358 -902.875732,389.465729"
class="61019 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -854.822815,370.135834 C -862.727783,367.707947 -870.943359,352.208649 -868.515442,344.303711"
class="61019 50878" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -868.515442,344.303711 C -866.355103,360.208191 -886.971252,387.305389 -902.875732,389.465729"
class="50878 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -856.195435,819.061890 C -851.723938,778.838684 -784.682007,725.211121 -744.458801,729.682617"
class="64052 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -744.458801,729.682617 C -696.970642,753.259155 -661.103210,859.856140 -684.679749,907.344299"
class="63738 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -744.458801,729.682617 C -715.058411,773.089233 -736.067688,882.299866 -779.474304,911.700256"
class="63738 50888" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -744.458801,729.682617 C -717.091370,754.749023 -713.639709,833.399658 -738.706116,860.767090"
class="63738 59566" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 268.604126,101.765610 C 305.342773,105.134850 355.396912,165.296692 352.027649,202.035355"
class="56911 50162" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 903.022522,-432.313629 C 888.407959,-395.951996 811.943726,-363.331421 775.582092,-377.945984"
class="59177 55671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1325.716309,357.968842 C -1296.555298,329.498749 -1210.108765,330.534973 -1181.638672,359.695923"
class="56204 50900" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 867.119934,652.980408 C 815.471741,603.143738 812.754395,450.916473 862.591064,399.268280"
class="57906 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 366.641418,120.798347 C 383.229279,96.125702 445.120087,83.998558 469.792725,100.586441"
class="57977 58829" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 366.641418,120.798347 C 335.979218,142.813446 256.963287,129.842850 234.948196,99.180664"
class="57977 49177" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 469.792725,100.586441 C 608.088806,81.763145 843.767761,260.972260 862.591064,399.268280"
class="58829 53418" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 469.792725,100.586441 C 428.204773,82.215691 393.378967,-7.722367 411.749695,-49.310329"
class="58829 62984" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 234.948196,99.180664 C 206.899887,121.509102 131.334793,112.929306 109.006363,84.881004"
class="49177 52784" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -46.017342,-1132.121948 C 1.973167,-1085.827515 4.517330,-944.400208 -41.777073,-896.409668"
class="53432 51409" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -46.017342,-1132.121948 C -84.104607,-1169.345703 -85.399849,-1282.312256 -48.176079,-1320.399536"
class="53432 61223" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -48.176079,-1320.399536 C -78.816956,-1350.120728 -80.196503,-1440.663818 -50.475315,-1471.304688"
class="61223 51529" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 745.391235,-875.873169 C 746.467285,-831.765137 681.919373,-763.989075 637.811340,-762.913025"
class="57115 61508" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 637.811340,-762.913025 C 618.954590,-794.968750 638.753052,-871.337463 670.808777,-890.194214"
class="61508 59142" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 637.811340,-762.913025 C 648.263489,-800.741272 720.684143,-841.805542 758.512390,-831.353394"
class="61508 61134" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 431.365204,-523.292419 C 437.884918,-431.993347 310.715912,-285.265198 219.416855,-278.745483"
class="59969 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 431.365204,-523.292419 C 424.730286,-612.505798 548.597961,-756.278137 637.811340,-762.913025"
class="59969 61508" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -771.520752,860.254395 C -744.734558,852.304138 -692.630005,880.558105 -684.679749,907.344299"
class="59184 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -771.520752,860.254395 C -792.222717,828.727600 -775.985596,750.384583 -744.458801,729.682617"
class="59184 63738" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -771.520752,860.254395 C -762.822266,872.134277 -767.594421,903.001770 -779.474304,911.700256"
class="59184 50888" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -771.520752,860.254395 C -764.855286,853.794006 -745.166504,854.101624 -738.706116,860.767090"
class="59184 59566" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -779.474304,911.700256 C -761.386597,891.870117 -704.509888,889.256592 -684.679749,907.344299"
class="50888 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -779.474304,911.700256 C -781.507324,893.359985 -757.046387,862.800110 -738.706116,860.767090"
class="50888 59566" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -779.474304,911.700256 C -764.004822,952.253235 -801.629944,1036.286865 -842.182922,1051.756348"
class="50888 51112" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1270.882080,309.347473 C 1246.495850,340.416534 1163.312744,350.440643 1132.243652,326.054321"
class="62693 51511" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1275.726807,624.008728 C 1242.090088,643.780823 1161.976929,622.984009 1142.204712,589.347290"
class="49283 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1114.961060,1080.803345 C 1107.731079,1054.057007 1137.005615,1003.092712 1163.751953,995.862793"
class="60030 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1114.961060,1080.803345 C 1083.866333,1085.164185 1030.682739,1045.063477 1026.321899,1013.968750"
class="60030 52253" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1163.751953,995.862793 C 1139.887207,1026.969971 1057.429077,1037.833496 1026.321899,1013.968750"
class="55686 52253" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 236.329178,-370.406036 C 251.278824,-348.691437 241.131424,-293.695129 219.416855,-278.745483"
class="49727 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -495.809998,-1125.081665 C -467.008118,-1143.841431 -395.665680,-1128.778198 -376.905914,-1099.976440"
class="61820 51947" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -376.905914,-1099.976440 C -311.322784,-1102.135498 -209.709641,-1006.999207 -207.550659,-941.416138"
class="51947 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -376.905914,-1099.976440 C -432.731140,-1107.402710 -505.329437,-1202.280151 -497.903076,-1258.105347"
class="51947 54835" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1337.770752,674.748352 C 1281.577393,696.781372 1164.237671,645.540710 1142.204712,589.347290"
class="56401 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1337.770752,674.748352 C 1374.577393,657.831726 1455.162354,687.666809 1472.078857,724.473450"
class="56401 56933" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -20.429825,-646.338074 C -74.713593,-692.082947 -87.521942,-842.125854 -41.777073,-896.409668"
class="58744 51409" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -20.429825,-646.338074 C -116.869598,-667.929504 -229.142105,-844.976318 -207.550659,-941.416138"
class="58744 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -20.429825,-646.338074 C -51.978455,-658.121582 -81.626190,-723.119690 -69.842712,-754.668335"
class="58744 58858" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -270.833588,-1147.461914 C -216.967850,-1118.909424 -178.998093,-995.281860 -207.550659,-941.416138"
class="53359 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -270.833588,-1147.461914 C -311.987091,-1160.198364 -354.612549,-1241.033447 -341.876038,-1282.186890"
class="53359 54057" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -270.833588,-1147.461914 C -302.676147,-1172.811279 -312.415833,-1258.599365 -287.066376,-1290.441895"
class="53359 61401" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 426.746155,-395.349304 C 418.590088,-366.997620 363.828430,-336.704132 335.476746,-344.860199"
class="64475 62484" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 335.476746,-344.860199 C 325.487701,-308.425293 255.851776,-268.756439 219.416855,-278.745483"
class="62484 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 411.749695,-49.310329 C 378.735840,-61.519115 347.528198,-129.353073 359.737000,-162.366943"
class="62984 57744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 411.749695,-49.310329 C 385.162292,-51.597614 348.712097,-94.909653 350.999390,-121.497063"
class="62984 57533" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1174.847046,811.465454 C 1123.895020,773.570251 1104.309570,640.299377 1142.204712,589.347290"
class="63937 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1174.847046,811.465454 C 1209.507568,850.563904 1202.850464,961.202332 1163.751953,995.862793"
class="63937 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 56.995930,-916.325134 C 95.508194,-846.842529 49.052738,-684.850342 -20.429825,-646.338074"
class="55342 58744" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 56.995930,-916.325134 C 38.834183,-948.519714 59.883492,-1024.054321 92.078110,-1042.216064"
class="55342 52396" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 56.995930,-916.325134 C 29.235477,-968.246826 65.477341,-1087.770020 117.399040,-1115.530518"
class="55342 59708" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 117.399040,-1115.530518 C 126.997742,-1095.803467 111.805191,-1051.814697 92.078110,-1042.216064"
class="59708 52396" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1258.170166,1104.657349 C 1217.527588,1101.782104 1160.876709,1036.505371 1163.751953,995.862793"
class="49748 55686" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 214.796631,-1437.815308 C 233.371170,-1404.039917 210.569901,-1325.514893 176.794495,-1306.940430"
class="52413 63995" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 176.794495,-1306.940430 C 203.197388,-1256.779297 167.560120,-1141.933350 117.399040,-1115.530518"
class="63995 59708" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 810.573181,-640.159668 C 807.513916,-601.423645 744.820862,-547.908508 706.084839,-550.967773"
class="58619 52930" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 951.362061,420.175293 C 941.962219,403.201843 953.322754,363.641998 970.296204,354.242218"
class="59932 52847" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 86.755203,-531.979858 C 118.956825,-496.237244 113.645317,-394.320862 77.902695,-362.119232"
class="50312 64909" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 86.755203,-531.979858 C 68.854912,-555.986206 78.013969,-618.846130 102.020294,-636.746399"
class="50312 59024" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 920.271362,1224.642944 C 886.908875,1201.455811 871.645752,1116.631592 894.832825,1083.269165"
class="60502 56848" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 916.551086,-382.249451 C 889.218018,-353.194977 804.636597,-350.612885 775.582092,-377.945984"
class="55276 55671" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -539.885132,955.256775 C -578.426575,974.633179 -665.303345,945.885742 -684.679749,907.344299"
class="54810 56437" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 698.097412,-880.408020 C 709.539246,-844.851807 673.367554,-774.354858 637.811340,-762.913025"
class="64120 61508" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 698.097412,-880.408020 C 690.682495,-876.907532 674.309265,-882.779297 670.808777,-890.194214"
class="64120 59142" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 583.911255,-516.276733 C 581.477478,-477.974609 520.373657,-424.172150 482.071533,-426.605927"
class="51476 63718" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.071533,-426.605927 C 459.112671,-344.502899 301.519867,-255.786636 219.416855,-278.745483"
class="63718 53131" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 482.071533,-426.605927 C 502.001831,-496.280945 636.409790,-570.898071 706.084839,-550.967773"
class="63718 52930" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1301.657593,113.848831 C 1313.951782,144.867142 1285.865845,209.836029 1254.847534,222.130310"
class="59550 57520" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 323.795349,-79.948524 C 347.513855,-91.411758 400.286438,-73.028839 411.749695,-49.310329"
class="52900 62984" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -247.449432,-1041.080078 C -219.536896,-1029.127075 -195.597626,-969.328674 -207.550659,-941.416138"
class="50209 55202" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1046.094971,417.401733 C -1023.038330,383.170685 -937.106812,366.409058 -902.875732,389.465729"
class="57419 52463" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1036.362671,287.367523 C 1036.524292,313.955750 996.884460,354.080566 970.296204,354.242218"
class="62322 52847" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -228.201340,567.170654 C -184.265259,600.607117 -168.515823,716.665955 -201.952301,760.602051"
class="56640 55484" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 1243.585938,676.747437 C 1205.829712,679.543640 1145.000977,627.103577 1142.204712,589.347290"
class="51384 51893" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -570.761230,-1369.718140 C -533.867004,-1361.967285 -490.152161,-1294.999512 -497.903076,-1258.105347"
class="58345 54835" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 842.166077,-599.412415 C 824.638733,-562.507263 742.989990,-533.440430 706.084839,-550.967773"
class="60898 52930" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M 274.903046,371.888184 C 238.614517,359.308533 203.051208,286.006256 215.630875,249.717728"
class="60849 49653" stroke-opacity="1.0" stroke="#999999"/>
<path fill="none" stroke-width="1.0"
d="M -1311.541016,477.567810 C -1291.772461,440.979370 -1207.237061,415.749481 -1170.648682,435.517975"
class="61529 56840" stroke-opacity="1.0" stroke="#999999"/>
</g>
<g id="nodes">
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-192.27649"
class="52813" cy="904.5931" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-201.9523"
class="55484" cy="760.60205" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="185.8567"
class="54432" cy="318.88425" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="153.52342"
class="64410" cy="96.79065" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="226.36147"
class="58643" cy="512.88696" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-285.54385"
class="49581" cy="442.93234" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-250.84204"
class="62700" cy="320.5401" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-910.20215"
class="57765" cy="507.06586" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-718.6547"
class="51621" cy="366.77298" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1091.4655"
class="63741" cy="620.78015" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-454.7332"
class="53734" cy="327.585" stroke="#000000" stroke-opacity="1.0"
stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-411.9669"
class="49958" cy="183.03632" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-483.17105"
class="64966" cy="434.3785" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="248.19441"
class="64822" cy="632.4475" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-511.0424"
class="59624" cy="167.57225" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-515.9843"
class="52602" cy="277.61658" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-575.7211"
class="65232" cy="357.66962" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-873.29193"
class="63687" cy="-245.817" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-992.5627"
class="52116" cy="-320.91916" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-634.6623"
class="51107" cy="-202.94803" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1024.1887"
class="62940" cy="-280.10214" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1010.8149"
class="49250" cy="-230.78511" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1111.5576"
class="51249" cy="-469.80905" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-987.0128"
class="63826" cy="-410.53113" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-885.4408"
class="50820" cy="617.6246" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-799.8287"
class="56683" cy="521.0137" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-16.316385"
class="65392" cy="-267.937" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="79.78231"
class="60889" cy="-168.67091" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-99.35926"
class="53868" cy="-358.53116" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1272.2256"
class="62561" cy="359.0271" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1132.2437"
class="51511" cy="326.05432" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-614.8079"
class="53231" cy="1031.7999" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-684.67975"
class="56437" cy="907.3443" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1089.4043"
class="65313" cy="349.32712" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1163.8073"
class="54095" cy="472.92807" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-923.86914"
class="62568" cy="-535.78735" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-783.2394"
class="63998" cy="-387.92575" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1023.6461"
class="53217" cy="-627.9217" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="882.941"
class="63819" cy="1010.5544" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="873.86414"
class="64888" cy="900.9163" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="523.81683"
class="53043" cy="-323.81165" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="219.41685"
class="53131" cy="-278.74548" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="775.5821"
class="55671" cy="-377.94598" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="655.7865"
class="50299" cy="-351.26968" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="107.18647"
class="57264" cy="-39.47502" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="168.9507"
class="64805" cy="-6.3505487" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-321.27063"
class="64564" cy="-48.490387" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-351.53314"
class="54535" cy="-49.69307" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-334.20728"
class="56109" cy="3.1740212" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-280.84778"
class="51646" cy="18.07376" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-363.98648"
class="61067" cy="-14.518803" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1209.5322"
class="49744" cy="698.42456" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="973.18744"
class="50370" cy="535.54285" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="862.59106"
class="53418" cy="399.26828" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1019.2229"
class="62155" cy="654.2579" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1069.3188"
class="60884" cy="611.86755" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-865.03796"
class="56160" cy="387.49414" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-981.55676"
class="54872" cy="376.27405" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-854.8228"
class="61019" cy="370.13583" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-902.87573"
class="52463" cy="389.46573" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-868.51544"
class="50878" cy="344.3037" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-856.19543"
class="64052" cy="819.0619" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-744.4588"
class="63738" cy="729.6826" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="268.60413"
class="56911" cy="101.76561" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="903.0225"
class="59177" cy="-432.31363" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1325.7163"
class="56204" cy="357.96884" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1181.6387"
class="50900" cy="359.69592" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="867.11993"
class="57906" cy="652.9804" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="894.8328"
class="56848" cy="1083.2692" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="366.64142"
class="57977" cy="120.79835" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="469.79272"
class="58829" cy="100.58644" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="234.9482"
class="49177" cy="99.180664" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="109.00636"
class="52784" cy="84.881004" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-46.01734"
class="53432" cy="-1132.122" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-41.777073"
class="51409" cy="-896.40967" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-48.17608"
class="61223" cy="-1320.3995" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="745.39124"
class="57115" cy="-875.87317" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="637.81134"
class="61508" cy="-762.913" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-770.9372"
class="57485" cy="439.39294" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="431.3652"
class="59969" cy="-523.2924" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-771.52075"
class="59184" cy="860.2544" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-779.4743"
class="50888" cy="911.70026" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-738.7061"
class="59566" cy="860.7671" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1270.8821"
class="62693" cy="309.34747" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1275.7268"
class="49283" cy="624.0087" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1142.2047"
class="51893" cy="589.3473" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1170.6487"
class="56840" cy="435.51797" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1111.8593"
class="54402" cy="345.82565" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1114.961"
class="60030" cy="1080.8033" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1163.752"
class="55686" cy="995.8628" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1026.3219"
class="52253" cy="1013.96875" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="236.32918"
class="49727" cy="-370.40604" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-495.81"
class="61820" cy="-1125.0817" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-376.9059"
class="51947" cy="-1099.9764" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-50.475315"
class="51529" cy="-1471.3047" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1337.7708"
class="56401" cy="674.74835" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1472.0789"
class="56933" cy="724.47345" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-20.429825"
class="58744" cy="-646.3381" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="77.902695"
class="64909" cy="-362.11923" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-270.8336"
class="53359" cy="-1147.4619" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-207.55066"
class="55202" cy="-941.41614" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-341.87604"
class="54057" cy="-1282.1869" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-287.06638"
class="61401" cy="-1290.4419" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="426.74615"
class="64475" cy="-395.3493" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="335.47675"
class="62484" cy="-344.8602" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="411.7497"
class="62984" cy="-49.31033" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-497.90308"
class="54835" cy="-1258.1053" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1174.847"
class="63937" cy="811.46545" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="56.99593"
class="55342" cy="-916.32513" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="92.07811"
class="52396" cy="-1042.2161" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="117.39904"
class="59708" cy="-1115.5305" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1258.1702"
class="49748" cy="1104.6573" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="214.79663"
class="52413" cy="-1437.8153" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="176.7945"
class="63995" cy="-1306.9404" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="810.5732"
class="58619" cy="-640.15967" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="706.08484"
class="52930" cy="-550.9678" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="951.36206"
class="59932" cy="420.1753" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="970.2962"
class="52847" cy="354.24222" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-811.8137"
class="63775" cy="-304.75977" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="86.7552"
class="50312" cy="-531.97986" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="102.020294"
class="59024" cy="-636.7464" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="920.27136"
class="60502" cy="1224.643" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="916.5511"
class="55276" cy="-382.24945" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-700.2646"
class="50567" cy="-263.5326" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-539.88513"
class="54810" cy="955.2568" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-854.89233"
class="57945" cy="-495.87903" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="698.0974"
class="64120" cy="-880.408" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="670.8088"
class="59142" cy="-890.1942" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-69.84271"
class="58858" cy="-754.66833" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="583.91125"
class="51476" cy="-516.27673" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="482.07153"
class="63718" cy="-426.60593" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1301.6576"
class="59550" cy="113.84883" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1254.8475"
class="57520" cy="222.13031" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="758.5124"
class="61134" cy="-831.3534" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="323.79535"
class="52900" cy="-79.948524" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-247.44943"
class="50209" cy="-1041.0801" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1046.095"
class="57419" cy="417.40173" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1036.3627"
class="62322" cy="287.36752" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-842.1829"
class="51112" cy="1051.7563" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="215.63087"
class="49653" cy="249.71773" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="359.737"
class="57744" cy="-162.36694" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="350.9994"
class="57533" cy="-121.49706" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="352.02765"
class="50162" cy="202.03535" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-228.20134"
class="56640" cy="567.17065" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-222.22617"
class="57740" cy="432.92868" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="1243.5859"
class="51384" cy="676.74744" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-570.7612"
class="58345" cy="-1369.7181" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="842.1661"
class="60898" cy="-599.4124" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="274.90305"
class="60849" cy="371.88818" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
<circle fill-opacity="1.0" fill="#999999" r="10.0" cx="-1311.541"
class="61529" cy="477.5678" stroke="#000000"
stroke-opacity="1.0" stroke-width="1.0"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 69 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 112 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 110 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 180 KiB

View File

@ -0,0 +1,41 @@
= 100:
Avg. Deg.: 1,98
Max. Deg.: 7
Diam.: 13
Radius: 7
Avg. Path Length: 5,95
+ 100:
Avg. Deg.: 1,99
Max. Deg.: 8
Diam.: 14
Radius: 7
Avg. Path Length: 6,98
- 50:
Avg. Deg.: 2,37
Max. Deg.: 10
Diam.: 11
Radius: 6
Avg. Path Length: 5,99
+ 100:
Avg. Deg.: 2,24
Max. Deg.: 12
Diam.: 14
Radius: 7
Avg. Path Length: 6,97
- 50:
Avg. Deg.: 3,18
Max. Deg.: 24
Diam.: 13
Radius: 7
Avg. Path Length: 5,50
- 50:
Avg. Deg.: 9,11
Max. Deg.: 45
Diam.: 9
Radius: 5
Avg. Path Length: 3,50

View File

@ -5,6 +5,8 @@ import java.util.HashMap;
import java.util.Map;
import java.util.logging.LogManager;
import analysis.NetworkDumper;
import node.Node;
public class Main {
@ -42,6 +44,13 @@ public class Main {
switch (cmd) {
case "br":
nodes.get(node).gatherInformationOfNetwork();
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
}
NetworkDumper dumper = new NetworkDumper(nodes.get(node));
dumper.write(dumper.networkToDot(nodes.get(node)
.getNetwork()));
break;
case "spawn":
if (splitted.length > 2) {

View File

@ -55,20 +55,17 @@ public class RandomGenerator2 {
}
private void spawn() {
try {
if (nodes.isEmpty()) {
nodes.add(new Node());
} else {
Node randomNode = getRandomNode();
Node newNode = randomNode.spawn();
nodes.add(newNode);
}
numSpawned++;
if (maxNodes < nodes.size()) {
maxNodes = nodes.size();
}
} catch (IOException e) {
}
if (nodes.isEmpty()) {
nodes.add(new Node());
} else {
Node randomNode = getRandomNode();
Node newNode = randomNode.spawn();
nodes.add(newNode);
}
numSpawned++;
if (maxNodes < nodes.size()) {
maxNodes = nodes.size();
}
}
private void kill() {

View File

@ -0,0 +1,37 @@
import java.util.ArrayList;
import node.Node;
import analysis.NetworkDumper;
public class RingGenerator {
private static final int NUM_NODES = 50 - 1;
private ArrayList<Node> nodes;
public RingGenerator() {
try {
nodes = new ArrayList<Node>();
Node firstNode = new Node();
for (int i = 0; i < NUM_NODES; i++) {
nodes.add(firstNode.spawn());
}
Thread.sleep(1000);
firstNode.leave();
Thread.sleep(1000);
nodes.get(0).gatherInformationOfNetwork();
Thread.sleep(5000);
NetworkDumper dumper = new NetworkDumper(nodes.get(0));
dumper.write(dumper.networkToDot(nodes.get(0).getNetwork()));
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static void main(String args[]) {
new RingGenerator();
}
}

View File

@ -66,10 +66,8 @@ public class Node {
* Create another peer, mutually link creator and spawn.
*
* @return the spawned Node
* @throws IOException
* if no connection could be established to the new node
*/
public Node spawn() throws IOException {
public Node spawn() {
LOGGER.log(Level.FINE, "Name: " + getName() + ", Spawning new node.");
Node newNode = new Node();
addNeighbor(newNode.getAddress());

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.