feat: add BubbleSets plugin (#5653)
* refactor: extract contour shape * feat: bubble sets * test: add bubble-sets demo
@ -88,6 +88,7 @@ export * from './layout-radial-configuration-translate';
|
||||
export * from './layout-radial-prevent-overlap';
|
||||
export * from './layout-radial-prevent-overlap-unstrict';
|
||||
export * from './layout-radial-sort';
|
||||
export * from './plugin-bubble-sets';
|
||||
export * from './plugin-camera-setting';
|
||||
export * from './plugin-contextmenu';
|
||||
export * from './plugin-grid-line';
|
||||
|
281
packages/g6/__tests__/demos/plugin-bubble-sets.ts
Normal file
@ -0,0 +1,281 @@
|
||||
import { BubbleSets, Graph } from '@/src';
|
||||
import type { BubbleSetsOptions } from '@/src/plugins';
|
||||
import { idOf } from '@/src/utils/id';
|
||||
|
||||
const data = {
|
||||
nodes: [
|
||||
{
|
||||
id: 'node0',
|
||||
style: { size: 50, x: 220, y: 326 },
|
||||
},
|
||||
{
|
||||
id: 'node1',
|
||||
style: { size: 30, x: 426, y: 421 },
|
||||
},
|
||||
{
|
||||
id: 'node2',
|
||||
style: { size: 30, x: 329, y: 88 },
|
||||
},
|
||||
{
|
||||
id: 'node3',
|
||||
style: { size: 30, x: -16, y: 255 },
|
||||
},
|
||||
{
|
||||
id: 'node4',
|
||||
style: { size: 30, x: 79, y: 493 },
|
||||
},
|
||||
{
|
||||
id: 'node5',
|
||||
style: { size: 30, x: 235, y: 540 },
|
||||
},
|
||||
{
|
||||
id: 'node6',
|
||||
style: { size: 15, x: 428, y: 547 },
|
||||
},
|
||||
{
|
||||
id: 'node7',
|
||||
style: { size: 15, x: 546, y: 371 },
|
||||
},
|
||||
{
|
||||
id: 'node8',
|
||||
style: { size: 15, x: 333, y: -57 },
|
||||
},
|
||||
{
|
||||
id: 'node9',
|
||||
style: { size: 15, x: 202, y: -8 },
|
||||
},
|
||||
{
|
||||
id: 'node10',
|
||||
style: { size: 15, x: 473, y: 145 },
|
||||
},
|
||||
{
|
||||
id: 'node11',
|
||||
style: { size: 15, x: 458, y: 12 },
|
||||
},
|
||||
{
|
||||
id: 'node12',
|
||||
style: { size: 15, x: 353, y: 221 },
|
||||
},
|
||||
{
|
||||
id: 'node13',
|
||||
style: { size: 15, x: 201, y: 133 },
|
||||
},
|
||||
{
|
||||
id: 'node14',
|
||||
style: { size: 15, x: 94, y: 241 },
|
||||
},
|
||||
{
|
||||
id: 'node15',
|
||||
style: { size: 15, x: -67, y: 127 },
|
||||
},
|
||||
{
|
||||
id: 'node16',
|
||||
style: { size: 15, x: -91, y: 359 },
|
||||
},
|
||||
],
|
||||
edges: [
|
||||
{
|
||||
id: 'edge1',
|
||||
source: 'node0',
|
||||
target: 'node1',
|
||||
},
|
||||
{
|
||||
id: 'edge2',
|
||||
source: 'node0',
|
||||
target: 'node2',
|
||||
},
|
||||
{
|
||||
id: 'edge3',
|
||||
source: 'node0',
|
||||
target: 'node3',
|
||||
},
|
||||
{
|
||||
id: 'edge4',
|
||||
source: 'node0',
|
||||
target: 'node4',
|
||||
},
|
||||
{
|
||||
id: 'edge5',
|
||||
source: 'node0',
|
||||
target: 'node5',
|
||||
},
|
||||
{
|
||||
id: 'edge6',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
},
|
||||
{
|
||||
id: 'edge7',
|
||||
source: 'node1',
|
||||
target: 'node7',
|
||||
},
|
||||
{
|
||||
id: 'edge8',
|
||||
source: 'node2',
|
||||
target: 'node8',
|
||||
},
|
||||
{
|
||||
id: 'edge9',
|
||||
source: 'node2',
|
||||
target: 'node9',
|
||||
},
|
||||
{
|
||||
id: 'edge10',
|
||||
source: 'node2',
|
||||
target: 'node10',
|
||||
},
|
||||
{
|
||||
id: 'edge11',
|
||||
source: 'node2',
|
||||
target: 'node11',
|
||||
},
|
||||
{
|
||||
id: 'edge12',
|
||||
source: 'node2',
|
||||
target: 'node12',
|
||||
},
|
||||
{
|
||||
id: 'edge13',
|
||||
source: 'node2',
|
||||
target: 'node13',
|
||||
},
|
||||
{
|
||||
id: 'edge14',
|
||||
source: 'node3',
|
||||
target: 'node14',
|
||||
},
|
||||
{
|
||||
id: 'edge15',
|
||||
source: 'node3',
|
||||
target: 'node15',
|
||||
},
|
||||
{
|
||||
id: 'edge16',
|
||||
source: 'node3',
|
||||
target: 'node16',
|
||||
},
|
||||
],
|
||||
combos: [],
|
||||
};
|
||||
|
||||
export const pluginBubbleSets: TestCase = async (context) => {
|
||||
const graph = new Graph({
|
||||
...context,
|
||||
data,
|
||||
behaviors: ['drag-canvas', 'drag-element'],
|
||||
plugins: [
|
||||
{
|
||||
key: 'bubble-sets',
|
||||
type: 'bubble-sets',
|
||||
members: ['node0', 'node1'],
|
||||
labelText: 'Bubble',
|
||||
},
|
||||
],
|
||||
node: { style: { labelText: (d) => d.id } },
|
||||
autoFit: 'view',
|
||||
});
|
||||
|
||||
await graph.render();
|
||||
|
||||
pluginBubbleSets.form = (panel) => {
|
||||
const bubblesets = graph.getPluginInstance<BubbleSets>('bubble-sets');
|
||||
|
||||
const config = {
|
||||
member: 'node0',
|
||||
// default options in bubblesets-js
|
||||
// More info see: https://github.com/upsetjs/bubblesets-js/blob/main/src/BubbleSets.ts
|
||||
maxRoutingIterations: 100,
|
||||
maxMarchingIterations: 20,
|
||||
pixelGroup: 4,
|
||||
edgeR0: 10,
|
||||
edgeR1: 20,
|
||||
nodeR0: 15,
|
||||
nodeR1: 50,
|
||||
morphBuffer: 10,
|
||||
threshold: 1,
|
||||
memberInfluenceFactor: 1,
|
||||
edgeInfluenceFactor: 1,
|
||||
AvoidMemberInfluenceFactor: -0.8,
|
||||
virtualEdges: true,
|
||||
};
|
||||
|
||||
const members = [
|
||||
...graph.getNodeData().map(idOf),
|
||||
...graph.getEdgeData().map(idOf),
|
||||
...graph.getComboData().map(idOf),
|
||||
];
|
||||
|
||||
const panels = [
|
||||
panel.add(config, 'member', members).name('Element'),
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
AddMember: () => {
|
||||
bubblesets.addMember(config.member);
|
||||
},
|
||||
},
|
||||
'AddMember',
|
||||
)
|
||||
.name('Add Element as Member'),
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
RemoveMember: () => {
|
||||
bubblesets.removeMember(config.member);
|
||||
},
|
||||
},
|
||||
'RemoveMember',
|
||||
)
|
||||
.name('Remove Element as Member'),
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
AddAvoidMember: () => {
|
||||
bubblesets.addAvoidMember(config.member);
|
||||
},
|
||||
},
|
||||
'AddAvoidMember',
|
||||
)
|
||||
.name('Add Element as Non-Member'),
|
||||
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
RemoveMember: () => {
|
||||
bubblesets.removeAvoidMember(config.member);
|
||||
},
|
||||
},
|
||||
'RemoveMember',
|
||||
)
|
||||
.name('Remove Element as Non-Member'),
|
||||
];
|
||||
|
||||
const updateOptions = (options: BubbleSetsOptions) => {
|
||||
graph.updatePlugin({
|
||||
key: 'bubble-sets',
|
||||
...options,
|
||||
});
|
||||
graph.render();
|
||||
};
|
||||
|
||||
Object.keys(config)
|
||||
.slice(1, -1)
|
||||
.forEach((key) => {
|
||||
panels.push(
|
||||
panel.add(config, key, 0, 100, 1).onChange((value: number) => {
|
||||
updateOptions({ [key]: value } as BubbleSetsOptions);
|
||||
}),
|
||||
);
|
||||
});
|
||||
|
||||
panels.push(
|
||||
panel.add(config, 'virtualEdges').onChange((value: boolean) => {
|
||||
updateOptions({ virtualEdges: value } as BubbleSetsOptions);
|
||||
}),
|
||||
);
|
||||
|
||||
return panels;
|
||||
};
|
||||
|
||||
return graph;
|
||||
};
|
@ -6,173 +6,71 @@ const data = {
|
||||
nodes: [
|
||||
{
|
||||
id: 'node0',
|
||||
style: {
|
||||
size: 50,
|
||||
x: 220.62410328092116,
|
||||
y: 326.9855382821517,
|
||||
z: 113.94955744703128,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 50, x: 220, y: 326 },
|
||||
},
|
||||
{
|
||||
id: 'node1',
|
||||
style: {
|
||||
size: 30,
|
||||
x: 426.28631115314664,
|
||||
y: 421.4641026532594,
|
||||
z: 69.8328956021318,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 30, x: 426, y: 421 },
|
||||
},
|
||||
{
|
||||
id: 'node2',
|
||||
style: {
|
||||
size: 30,
|
||||
x: 329.60916465671136,
|
||||
y: 88.75724297452824,
|
||||
z: 250.02945624246885,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 30, x: 329, y: 88 },
|
||||
},
|
||||
{
|
||||
id: 'node3',
|
||||
style: {
|
||||
size: 30,
|
||||
x: -16.881815891377354,
|
||||
y: 255.11326213296195,
|
||||
z: 176.79834332083178,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 30, x: -16, y: 255 },
|
||||
},
|
||||
{
|
||||
id: 'node4',
|
||||
style: {
|
||||
size: 30,
|
||||
x: 79.16162795623173,
|
||||
y: 493.41204409665306,
|
||||
z: 132.42742012198295,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 30, x: 79, y: 493 },
|
||||
},
|
||||
{
|
||||
id: 'node5',
|
||||
style: {
|
||||
size: 30,
|
||||
x: 235.47627478351225,
|
||||
y: 540.939496488372,
|
||||
z: 359.84770530643084,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 30, x: 235, y: 540 },
|
||||
},
|
||||
{
|
||||
id: 'node6',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 428.5582954499783,
|
||||
y: 547.7277221239941,
|
||||
z: 292.066285489707,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 428, y: 547 },
|
||||
},
|
||||
{
|
||||
id: 'node7',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 546.5257984808264,
|
||||
y: 371.71829186008057,
|
||||
z: 212.18106937237945,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 546, y: 371 },
|
||||
},
|
||||
{
|
||||
id: 'node8',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 333.2546574363148,
|
||||
y: -57.78517795478168,
|
||||
z: 351.95520541170345,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 333, y: -57 },
|
||||
},
|
||||
{
|
||||
id: 'node9',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 202.9634744683668,
|
||||
y: -8.527670848371006,
|
||||
z: 458.8244455631553,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 202, y: -8 },
|
||||
},
|
||||
{
|
||||
id: 'node10',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 473.9801625504269,
|
||||
y: 145.56758163841602,
|
||||
z: 350.3400618806517,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 473, y: 145 },
|
||||
},
|
||||
{
|
||||
id: 'node11',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 458.3574086644886,
|
||||
y: 12.645329717202195,
|
||||
z: 100.31448085768979,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 458, y: 12 },
|
||||
},
|
||||
{
|
||||
id: 'node12',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 353.58208807643365,
|
||||
y: 221.50761622705693,
|
||||
z: 315.840909508189,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 353, y: 221 },
|
||||
},
|
||||
{
|
||||
id: 'node13',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 201.37696725182042,
|
||||
y: 133.54311954961742,
|
||||
z: 155.00402076440588,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 201, y: 133 },
|
||||
},
|
||||
{
|
||||
id: 'node14',
|
||||
style: {
|
||||
size: 15,
|
||||
x: 94.68008724338947,
|
||||
y: 241.3180833641008,
|
||||
z: 243.50036373490224,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: 94, y: 241 },
|
||||
},
|
||||
{
|
||||
id: 'node15',
|
||||
style: {
|
||||
size: 15,
|
||||
x: -67.39984359178499,
|
||||
y: 127.45518384410109,
|
||||
z: 409.3755984258148,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: -67, y: 127 },
|
||||
},
|
||||
{
|
||||
id: 'node16',
|
||||
style: {
|
||||
size: 15,
|
||||
x: -91.94678983140132,
|
||||
y: 359.71346059522347,
|
||||
z: 385.4514888070013,
|
||||
},
|
||||
data: {},
|
||||
style: { size: 15, x: -91, y: 359 },
|
||||
},
|
||||
],
|
||||
edges: [
|
||||
@ -180,113 +78,81 @@ const data = {
|
||||
id: 'edge1',
|
||||
source: 'node0',
|
||||
target: 'node1',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge2',
|
||||
source: 'node0',
|
||||
target: 'node2',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge3',
|
||||
source: 'node0',
|
||||
target: 'node3',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge4',
|
||||
source: 'node0',
|
||||
target: 'node4',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge5',
|
||||
source: 'node0',
|
||||
target: 'node5',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge6',
|
||||
source: 'node1',
|
||||
target: 'node6',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge7',
|
||||
source: 'node1',
|
||||
target: 'node7',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge8',
|
||||
source: 'node2',
|
||||
target: 'node8',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge9',
|
||||
source: 'node2',
|
||||
target: 'node9',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge10',
|
||||
source: 'node2',
|
||||
target: 'node10',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge11',
|
||||
source: 'node2',
|
||||
target: 'node11',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge12',
|
||||
source: 'node2',
|
||||
target: 'node12',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge13',
|
||||
source: 'node2',
|
||||
target: 'node13',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge14',
|
||||
source: 'node3',
|
||||
target: 'node14',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge15',
|
||||
source: 'node3',
|
||||
target: 'node15',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
{
|
||||
id: 'edge16',
|
||||
source: 'node3',
|
||||
target: 'node16',
|
||||
style: {},
|
||||
data: {},
|
||||
},
|
||||
],
|
||||
combos: [],
|
||||
@ -310,9 +176,7 @@ export const pluginHull: TestCase = async (context) => {
|
||||
},
|
||||
],
|
||||
node: {
|
||||
style: {
|
||||
labelText: (d) => d.id,
|
||||
},
|
||||
style: { labelText: (d) => d.id },
|
||||
},
|
||||
edge: {
|
||||
style: {},
|
||||
@ -325,21 +189,20 @@ export const pluginHull: TestCase = async (context) => {
|
||||
const hull = graph.getPluginInstance<Hull>('hull');
|
||||
|
||||
const updateHullOptions = (optionsToUpdate: Partial<HullOptions>) => {
|
||||
hull.updateOptions((options) => ({ ...options, ...optionsToUpdate }));
|
||||
graph.updatePlugin({ key: 'hull', ...optionsToUpdate });
|
||||
graph.render();
|
||||
};
|
||||
|
||||
const nodeIds = data.nodes.map((node) => node.id);
|
||||
let nodeIndex = 3;
|
||||
let all = false;
|
||||
|
||||
pluginHull.form = (panel) => {
|
||||
const nodeIds = graph.getNodeData().map((node) => node.id);
|
||||
const config = {
|
||||
concavity: 100,
|
||||
padding: 10,
|
||||
corner: 'rounded',
|
||||
labelPlacement: 'bottom',
|
||||
labelCloseToHull: true,
|
||||
labelCloseToPath: true,
|
||||
labelAutoRotate: true,
|
||||
node: 'node0',
|
||||
};
|
||||
return [
|
||||
panel.add(config, 'concavity', 0, 100, 1).onChange((concavity: number) => {
|
||||
@ -361,10 +224,10 @@ export const pluginHull: TestCase = async (context) => {
|
||||
updateHullOptions({ labelPlacement });
|
||||
}),
|
||||
panel
|
||||
.add(config, 'labelCloseToHull')
|
||||
.name('Label Close To Hull')
|
||||
.onChange((labelCloseToHull: boolean) => {
|
||||
updateHullOptions({ labelCloseToHull });
|
||||
.add(config, 'labelCloseToPath')
|
||||
.name('Label Close To Path')
|
||||
.onChange((labelCloseToPath: boolean) => {
|
||||
updateHullOptions({ labelCloseToPath });
|
||||
}),
|
||||
panel
|
||||
.add(config, 'labelAutoRotate')
|
||||
@ -372,12 +235,12 @@ export const pluginHull: TestCase = async (context) => {
|
||||
.onChange((labelAutoRotate: boolean) => {
|
||||
updateHullOptions({ labelAutoRotate });
|
||||
}),
|
||||
panel.add(config, 'node', nodeIds).name('Node'),
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
AddMember: () => {
|
||||
hull.addMembers(nodeIds[nodeIndex]);
|
||||
nodeIndex = (nodeIndex + 1) % nodeIds.length;
|
||||
hull.addMember(config.node);
|
||||
},
|
||||
},
|
||||
'AddMember',
|
||||
@ -387,25 +250,12 @@ export const pluginHull: TestCase = async (context) => {
|
||||
.add(
|
||||
{
|
||||
RemoveMember: () => {
|
||||
hull.removeMembers(nodeIds[nodeIndex - 1]);
|
||||
nodeIndex = (nodeIndex - 1) % nodeIds.length;
|
||||
hull.removeMember(config.node);
|
||||
},
|
||||
},
|
||||
'RemoveMember',
|
||||
)
|
||||
.name('Remove Member'),
|
||||
panel
|
||||
.add(
|
||||
{
|
||||
UpdateMembers: () => {
|
||||
hull.updateMembers(all ? [] : nodeIds);
|
||||
nodeIndex = all ? 0 : nodeIds.length - 1;
|
||||
all = !all;
|
||||
},
|
||||
},
|
||||
'UpdateMembers',
|
||||
)
|
||||
.name('All/None Members'),
|
||||
];
|
||||
};
|
||||
|
||||
|
343
packages/g6/__tests__/snapshots/plugins/bubble-sets/default.svg
Normal file
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 63 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 39 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,208.976273,514.439514)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 25.568908711383926,52.98363776017686 L 218.65092937784996,59.77186339579896 A 26.5 26.5 0 0 0 220.51311114127603 6.804587846834124 L 27.43109047480999,0.016362211212026523 A 26.5 26.5 0 0 0 25.568908711383926 52.98363776017686" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,-42.500000,61.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 396.94256565517696,19.08880219654006 A 26.5 26.5 0 0 0 359.95402126198394 2.6475289543980125 L 14.954021261983947,169.647528954398 A 26.5 26.5 0 0 0 17.18292814665839 218.30810698299388 L 459.1829281466584,384.3081069829939 A 26.5 26.5 0 0 0 493.94256565517696 352.08880219654003 L 396.94256565517696,19.08880219654006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.999383,0.035136,-0.035136,0.999383,332.384186,570.862854)">
|
||||
<g fill="none" transform="matrix(0.936155,0.351588,-0.351588,0.936155,234.051193,377.217896)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,174.124100,42.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.13811117554013,33.52482587473082 A 46.5 46.5 0 0 0 113.19991605193263 27.155324119018076 L 4.214854676142437,265.38361942664153 A 46.5 46.5 0 0 0 27.088766784040786 326.9829284859584 L 232.7509746562663,421.4614928570661 A 46.5 46.5 0 0 0 296.8152576719754 366.23168555346194 L 200.13811117554013,33.52482587473082" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,173.500000,41.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.284760,434.046783)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.962921,433.451508)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,159.024719,-44.331593)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 0,394.19107241670457 L 340.30469038975434,550.5226557903181 L 180.33516197413817,0 Z" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,158.411469,-44.898296)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 0,393.70228773763694 L 340.7675263611478,550.8523605740886 L 180.3090309386656,0 Z" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,361.510284,442.878723)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,361.365417,442.399261)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,174.991608,47.165478)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 157.59099997374105,1.0344799902864352 C 111.2218197329079 -17.799797965199996,-18.291227384673874 225.92911526814194,2.1753434326429044 293.5091758702967 C 22.641914249959683 361.0892364724515,254.48781545412535 455.26062624988367,280.39042487764175 406.5148436032153 C 306.29303430115806 357.7690609565469,203.9601802145742 19.868757945772863,157.59099997374105 1.0344799902864352 C 111.2218197329079 -17.799797965199996,-18.291227384673874 225.92911526814194,2.1753434326429044 293.5091758702967" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,174.186279,40.596821)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 158.2057861053747,1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043 C 22.866227066186156 370.6504383278255,256.1619762047353 465.7215066312547,282.16179175714933 415.63448368754547 C 308.16160730956346 365.5474607438362,204.86493593308452 20.041277721860773,158.2057861053747 1.0270640611749329 C 111.54663627766487 -17.987149599510907,-18.452441484405398 232.44796511903536,2.206892790890379 301.54920172343043" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.926489,0.376322,-0.376322,0.926489,323.315674,459.304413)">
|
||||
<g fill="none" transform="matrix(0.926058,0.377381,-0.377381,0.926058,323.292725,462.691803)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873100,60.427082)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,174.124100,42.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.13811117554013,33.52482587473082 A 46.5 46.5 0 0 0 113.19991605193263 27.155324119018076 L 4.214854676142437,265.38361942664153 A 46.5 46.5 0 0 0 27.088766784040786 326.9829284859584 L 232.7509746562663,421.4614928570661 A 46.5 46.5 0 0 0 296.8152576719754 366.23168555346194 L 200.13811117554013,33.52482587473082" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,173.500000,41.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 200.14450199870674,33.49544536374006 A 46.5 46.5 0 0 0 113.22288066330708 27.13778988361541 L 4.22288066330708,265.1377898836154 A 46.5 46.5 0 0 0 27.026794473737425 326.72610882536935 L 233.02679447373743,421.72610882536935 A 46.5 46.5 0 0 0 297.14450199870674 366.4954453637401 L 200.14450199870674,33.49544536374006" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.284760,434.046783)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.962921,433.451508)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,342.665863,423.217133)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.665863,423.217133)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,323.455200,465.035187)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,323,464.571075)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.665863,423.217133)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.665863,423.217133)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.416014,-0.909358,0.909358,0.416014,207.082474,268.848602)">
|
||||
<g fill="none" transform="matrix(0.416392,-0.909185,0.909185,0.416392,206.328568,268.193542)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.279036,0.960281,-0.960281,0.279036,420.154175,269.553314)">
|
||||
<g fill="none" transform="matrix(0.279668,0.960097,-0.960097,0.279668,419.744781,269.013947)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873093,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.997327,0.073069,-0.073069,0.997327,321.242218,75.391479)">
|
||||
<g fill="none" transform="matrix(0.997336,0.072948,-0.072948,0.997336,320.791138,74.628540)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,-23)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,184.124100,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.53530476699171,26.315185901670446 A 36.5 36.5 0 0 0 112.29349569147183 21.315469469766896 L 3.308434315681666,259.5437647773904 A 36.5 36.5 0 0 0 21.263225540160988 307.89591059814444 L 226.9254334123865,402.3744749692521 A 36.5 36.5 0 0 0 277.212451263427 359.0220455804016 L 180.53530476699171,26.315185901670446" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,183.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 180.54353382694185,26.292123780140045 A 36.5 36.5 0 0 0 112.31473428410126 21.30170603767661 L 3.314734284101263,259.30170603767664 A 36.5 36.5 0 0 0 21.214580608417577 307.64522520701036 L 227.2145806084176,402.64522520701036 A 36.5 36.5 0 0 0 277.5435338269418 359.29212378014006 L 180.54353382694185,26.292123780140045" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,342.665863,423.217133)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,342.347809,422.616852)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,164.124100,32.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 219.74091758408846,40.734465847791185 A 56.5 56.5 0 0 0 114.10633641239335 32.995178768269255 L 5.121275036603151,271.2234740758927 A 56.5 56.5 0 0 0 32.9143080279205 346.0699463737723 L 238.576515900146,440.54851074488 A 56.5 56.5 0 0 0 316.4180640805238 373.4413255265223 L 219.74091758408846,40.734465847791185" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,163.500000,31.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 219.74547017047166,40.69876694734016 A 56.5 56.5 0 0 0 114.13102704251287 32.9738737295543 L 5.131027042512898,270.97387372955427 A 56.5 56.5 0 0 0 32.8390083390573 345.8069924437284 L 238.83900833905733,440.8069924437284 A 56.5 56.5 0 0 0 316.74547017047166 373.6987669473402 L 219.74547017047166,40.69876694734016" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.908702,0.417446,-0.417446,0.908702,341.903625,444.876404)">
|
||||
<g fill="none" transform="matrix(0.908088,0.418779,-0.418779,0.908088,341.578003,444.286133)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,-53.381817,52.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 416.18254623240705,51.68453053023312 A 36.5 36.5 0 0 0 367.19318250533127 3.595903340157612 L 20.702201957242565,169.95192249859133 A 36.5 36.5 0 0 0 25.92809720161975 237.79145777342177 L 263.43401637391827,309.6637339226115 A 36.5 36.5 0 0 0 307.1974848566168 289.9128258378566 L 416.18254623240705,51.68453053023312" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,-52.500000,51.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 414.6852657158987,51.69829396232339 A 36.5 36.5 0 0 0 365.5970481532986 3.6465964843595273 L 20.597048153298623,170.64659648435952 A 36.5 36.5 0 0 0 25.98463033648769 238.45249634632245 L 261.98463033648767,309.45249634632245 A 36.5 36.5 0 0 0 305.6852657158987 289.69829396232336 L 414.6852657158987,51.69829396232339" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.957135,0.289641,-0.289641,0.957135,163.261734,347.761597)">
|
||||
<g fill="none" transform="matrix(0.957603,0.288092,-0.288092,0.957603,163.275253,347.050507)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -1,13 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.736754,0,0,0.736754,83.390823,60.781586)">
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,-43.381817,62.257244)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 398.43841753074196,19.10554592861004 A 26.5 26.5 0 0 0 361.52134635266214 2.6107243428541835 L 15.030365804573425,168.96674350128788 A 26.5 26.5 0 0 0 17.187239295380948 217.66574483322714 L 460.35536633990495,384.01658535352453 A 26.5 26.5 0 0 0 495.11556402717724 351.81240560734113 L 398.43841753074196,19.10554592861004" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
<g transform="matrix(1,0,0,1,208.500000,513.500000)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 25.53949010732103,52.98258712335462 L 218.539490107321,59.98258712335462 A 26.5 26.5 0 0 0 220.4605067939205 7.017412764255255 L 27.460506793920473,0.017412764255254842 A 26.5 26.5 0 0 0 25.53949010732103 52.98258712335462" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.936216,0.351425,-0.351425,0.936216,233.800217,377.516541)">
|
||||
<g fill="none" transform="matrix(0.999343,0.036246,-0.036246,0.999343,331.882263,570.031311)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
@ -21,119 +21,119 @@
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,243.341644,337.421692)">
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.31414520308624,77.78074039963997" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,231.024460,102.397614)">
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.85397585469036 L 92.34448015444605,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-2.524785,259.457886)">
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 199.2205022340128,60.286622677520995 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.876350,346.034027)">
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.55654118017091,0 L 0,135.94893503216002" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,222.355377,351.925507)">
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.082134762899699,174.05000864983447" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,221.748047,350.938812)">
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.556183,436.461670)">
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.8671758131857814,103.7672524786368" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,440.146912,374.585510)">
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.14415239539136 L 99.44860658895294,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.982208,-50.287498)">
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,124.04937832976823 L 3.0859527199348804,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.911209,-3.958820)">
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 108.80247334801243,83.57835846178077 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,343.567352,94.249825)">
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.43369497408344,48.5714595105497" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.521606,16.462040)">
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.66177803050446 L 109.37961420815992,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,332.274841,103.518478)">
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 19.974409546238405,110.60851694173583" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.457550,93.703110)">
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.99045787846558,0 L 0,37.367074580724946" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.995196,242.238480)">
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.033974949593755 L 89.23196995036731,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.640106,134.428986)">
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.238820295870845,106.7366865724515 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-87.573997,267.299927)">
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.94658529144959,0 L 0,86.32022137053349" stroke-width="3" stroke="transparent"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220.624100,326.985535)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
@ -145,7 +145,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426.286316,421.464111)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -157,7 +157,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329.609161,88.757240)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -169,7 +169,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16.881815,255.113266)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -181,7 +181,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79.161629,493.412048)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -193,7 +193,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,235.476273,540.939514)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,235,540)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
@ -205,7 +205,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428.558289,547.727722)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -217,7 +217,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546.525818,371.718292)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -229,7 +229,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333.254669,-57.785179)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -241,7 +241,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202.963470,-8.527671)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -253,7 +253,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473.980164,145.567581)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -265,7 +265,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458.357422,12.645329)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -277,7 +277,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353.582092,221.507614)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -289,7 +289,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201.376968,133.543121)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -301,7 +301,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94.680084,241.318085)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -313,7 +313,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67.399841,127.455185)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
@ -325,7 +325,7 @@
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91.946793,359.713470)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
@ -0,0 +1,343 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" style="background: transparent; position: absolute; outline: none;" color-interpolation-filters="sRGB" tabindex="1">
|
||||
<defs/>
|
||||
<g transform="matrix(0.738356,0,0,0.738356,82.873116,60.427067)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)"/>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g transform="matrix(1,0,0,1,276.217987,445.782013)">
|
||||
<path fill="rgba(173,216,230,1)" d="M 12.926180936190121,49.25964490107327 L 138.20818181029335,123.9776440269701 A 26.5 26.5 0 0 0 165.35581894885047 78.45835363494791 L 40.07381807474724,3.740354509051201 A 26.5 26.5 0 0 0 12.926180936190121 49.25964490107327" stroke="rgba(0,0,255,1)" opacity="0.2" stroke-width="5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(0.858855,0.512220,-0.512220,0.858855,382.988892,551.010498)">
|
||||
<g transform="matrix(1,0,0,1,-32.700001,0)">
|
||||
<path fill="rgba(255,192,203,1)" d="M 0,0 l 66.4,0 l 0,23 l-66.4 0 z" opacity="0.75" stroke-width="0" width="66.4" height="23"/>
|
||||
</g>
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,1)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="700">
|
||||
convex hull
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,242.702209,336.469452)">
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 169.67646552656396,78.2488554612795" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,230.409790,101.637779)">
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,201.6325855168233 L 92.34433538375518,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.635960,259.321381)">
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 197.69589441498906,59.47630721806871 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,88.676819,345.101990)">
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 115.19514141876921,0 L 0,136.43679870166278" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,232.305588,347.761719)">
|
||||
<path fill="none" d="M 0,0 L 63.029049750286646,111.46325725242946" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 12.20312391979897,174.09790125579855" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,426.238068,435.998108)">
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 1.642902125898729,103.50283393161902" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,439.846161,373.884613)">
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,41.34615384615387 L 99.23076923076923,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,329.413635,-49.502853)">
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,122.50855635340156 L 3.3795463821628005,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,207.983002,-3.477419)">
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 109.05100687195758,82.43225716305454 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,342.947113,93.520729)">
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 123.07935120589639,48.71890985233398" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,341.923859,15.807029)">
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,64.5789149801459 L 109.61421095314239,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,331.663757,102.761589)">
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,0 L 20.004382362312754,110.85761892448323" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,208.075485,92.974953)">
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 106.77354893067044,0 L 0,37.53757579593882" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-1.120031,241.946915)">
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 0,11.15927870733691 L 87.68004698621857,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-64.223961,133.967316)">
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 42.67187196193628,107.09803159074207 L 0,0" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" marker-start="false" marker-end="false" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" marker-start="false" marker-end="false" stroke="transparent" stroke-width="3"/>
|
||||
<g transform="matrix(1,0,0,1,-86.613091,267.166351)">
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="1" stroke="rgba(153,173,209,1)"/>
|
||||
<path fill="none" d="M 61.83927947232777,0 L 0,85.75046753496116" stroke-width="3" stroke="transparent"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,0)">
|
||||
<g fill="none" transform="matrix(1,0,0,1,220,326)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-25,-25)" cx="25" cy="25" stroke-width="0" stroke="rgba(0,0,0,1)" r="25"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,25)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node0
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,426,421)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,15)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node1
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,329,88)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,15)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node2
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-16,255)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,15)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node3
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,79,493)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,15)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node4
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,428,547)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node6
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,546,371)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node7
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,333,-57)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node8
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,202,-8)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node9
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,473,145)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node10
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,458,12)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node11
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,353,221)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node12
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,201,133)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node13
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,94,241)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node14
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-67,127)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node15
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,-91,359)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-7.5,-7.5)" cx="7.5" cy="7.5" stroke-width="0" stroke="rgba(0,0,0,1)" r="7.5"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,7.500000)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node16
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,302.717987,472.282013)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<circle fill="rgba(23,131,255,1)" transform="translate(-15,-15)" cx="15" cy="15" stroke-width="0" stroke="rgba(0,0,0,1)" r="15"/>
|
||||
</g>
|
||||
<g fill="none" transform="matrix(1,0,0,1,0,15)">
|
||||
<g transform="matrix(1,0,0,1,0,0)">
|
||||
<text fill="rgba(0,0,0,0.8509803921568627)" dominant-baseline="central" paint-order="stroke" dx="0.5" dy="11.5px" font-size="12" text-anchor="middle" font-weight="400">
|
||||
node5
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 21 KiB |
66
packages/g6/__tests__/unit/plugins/bubble-sets.spec.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import { CommonEvent, type BubbleSets, type Graph, type ID } from '@/src';
|
||||
import { pluginBubbleSets } from '@@/demos';
|
||||
import { createDemoGraph } from '@@/utils';
|
||||
|
||||
describe('plugin bubble-sets', () => {
|
||||
let graph: Graph;
|
||||
let bubbleSets: BubbleSets;
|
||||
|
||||
beforeAll(async () => {
|
||||
graph = await createDemoGraph(pluginBubbleSets, { animation: false });
|
||||
bubbleSets = graph.getPluginInstance<BubbleSets>('bubble-sets');
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
graph.destroy();
|
||||
});
|
||||
|
||||
const reset = () => {
|
||||
const members: ID[] = ['node0', 'node1', 'node8', 'node9', 'node11'];
|
||||
const avoidMembers: ID[] = [];
|
||||
bubbleSets.updateMember(members);
|
||||
bubbleSets.updateAvoidMember(avoidMembers);
|
||||
};
|
||||
|
||||
it('default', async () => {
|
||||
reset();
|
||||
await expect(graph).toMatchSnapshot(__filename, 'default');
|
||||
});
|
||||
|
||||
it('add/remove/update member', async () => {
|
||||
bubbleSets.addMember(['node12', 'edge1']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'member-add');
|
||||
bubbleSets.removeMember(['node12', 'edge1']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'member-remove');
|
||||
bubbleSets.updateMember(['node3', 'node4', 'node5', 'node6', 'node7']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'member-update');
|
||||
expect(bubbleSets.getMember()).toEqual(['node3', 'node4', 'node5', 'node6', 'node7']);
|
||||
reset();
|
||||
});
|
||||
|
||||
it('add/remove/update non-member', async () => {
|
||||
bubbleSets.addAvoidMember('node13');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'non-member-add');
|
||||
bubbleSets.removeAvoidMember('node13');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'non-member-remove');
|
||||
bubbleSets.updateAvoidMember(['node13', 'node2']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'non-member-update');
|
||||
expect(bubbleSets.getAvoidMember()).toEqual(['node13', 'node2']);
|
||||
reset();
|
||||
});
|
||||
|
||||
it('update options', async () => {
|
||||
graph.updatePlugin({ key: 'bubble-sets', fill: 'pink' });
|
||||
graph.render();
|
||||
await expect(graph).toMatchSnapshot(__filename, 'options-update');
|
||||
reset();
|
||||
});
|
||||
|
||||
it('update element', async () => {
|
||||
graph.emit(`node:${CommonEvent.DRAG_START}`, { target: { id: 'node11' }, targetType: 'node' });
|
||||
graph.emit(`node:${CommonEvent.DRAG}`, { dx: 50, dy: 50 });
|
||||
graph.emit(`node:${CommonEvent.DRAG_END}`);
|
||||
|
||||
await expect(graph).toMatchSnapshot(__filename, 'element-position-update');
|
||||
});
|
||||
});
|
@ -1,5 +1,6 @@
|
||||
import { pluginHull } from '@/__tests__/demos';
|
||||
import type { Graph, Hull } from '@/src';
|
||||
import { CommonEvent, type Graph, type Hull } from '@/src';
|
||||
import type { HullOptions } from '@/src/plugins';
|
||||
import { createDemoGraph } from '@@/utils';
|
||||
|
||||
describe('plugin hull', () => {
|
||||
@ -19,59 +20,72 @@ describe('plugin hull', () => {
|
||||
await expect(graph).toMatchSnapshot(__filename, 'default');
|
||||
});
|
||||
|
||||
const updateHullOptions = (optionsToUpdate: Partial<HullOptions>) => {
|
||||
graph.updatePlugin({ key: 'hull', ...optionsToUpdate });
|
||||
graph.render();
|
||||
};
|
||||
|
||||
it('update corner', async () => {
|
||||
hull.updateOptions((options) => ({ ...options, corner: 'sharp' }));
|
||||
updateHullOptions({ corner: 'sharp' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'corner__sharp');
|
||||
hull.updateOptions((options) => ({ ...options, corner: 'smooth' }));
|
||||
updateHullOptions({ corner: 'smooth' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'corner__smooth');
|
||||
hull.updateOptions((options) => ({ ...options, corner: 'rounded' }));
|
||||
updateHullOptions({ corner: 'rounded' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'corner__rounded');
|
||||
});
|
||||
|
||||
it('update padding', async () => {
|
||||
hull.updateOptions((options) => ({ ...options, padding: 20 }));
|
||||
updateHullOptions({ padding: 20 });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'padding__20');
|
||||
hull.updateOptions((options) => ({ ...options, padding: 0 }));
|
||||
updateHullOptions({ padding: 0 });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'padding__0');
|
||||
});
|
||||
|
||||
it('update labelPlacement', async () => {
|
||||
hull.updateOptions((options) => ({ ...options, labelPlacement: 'top' }));
|
||||
updateHullOptions({ labelPlacement: 'top' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelPlacement__top');
|
||||
hull.updateOptions((options) => ({ ...options, labelPlacement: 'left' }));
|
||||
updateHullOptions({ labelPlacement: 'left' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelPlacement__left');
|
||||
hull.updateOptions((options) => ({ ...options, labelPlacement: 'right' }));
|
||||
updateHullOptions({ labelPlacement: 'right' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelPlacement__right');
|
||||
hull.updateOptions((options) => ({ ...options, labelPlacement: 'bottom' }));
|
||||
updateHullOptions({ labelPlacement: 'bottom' });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelPlacement__bottom');
|
||||
});
|
||||
|
||||
it('update labelCloseToHull', async () => {
|
||||
hull.updateOptions((options) => ({ ...options, labelCloseToHull: false }));
|
||||
it('update labelCloseToPath', async () => {
|
||||
updateHullOptions({ labelCloseToPath: false });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelCloseToHull__false');
|
||||
hull.updateOptions((options) => ({ ...options, labelCloseToHull: true }));
|
||||
updateHullOptions({ labelCloseToPath: true });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelCloseToHull__true');
|
||||
});
|
||||
|
||||
it('update labelAutoRotate', async () => {
|
||||
hull.updateOptions((options) => ({ ...options, labelAutoRotate: false }));
|
||||
updateHullOptions({ labelAutoRotate: false });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelAutoRotate__false');
|
||||
hull.updateOptions((options) => ({ ...options, labelAutoRotate: true }));
|
||||
updateHullOptions({ labelAutoRotate: true });
|
||||
await expect(graph).toMatchSnapshot(__filename, 'labelAutoRotate__true');
|
||||
});
|
||||
|
||||
it('addMembers', async () => {
|
||||
hull.addMembers('node3');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'addMembers__node3');
|
||||
it('addMember', async () => {
|
||||
hull.addMember('node3');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'addMember__node3');
|
||||
});
|
||||
|
||||
it('removeMembers', async () => {
|
||||
hull.removeMembers('node1');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'removeMembers__node1');
|
||||
it('removeMember', async () => {
|
||||
hull.removeMember('node1');
|
||||
await expect(graph).toMatchSnapshot(__filename, 'removeMember__node1');
|
||||
});
|
||||
|
||||
it('updateMembers', async () => {
|
||||
hull.updateMembers(['node5', 'node6']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'updateMembers');
|
||||
it('updateMember', async () => {
|
||||
hull.updateMember(['node5', 'node6']);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'updateMember');
|
||||
expect(hull.getMember()).toEqual(['node5', 'node6']);
|
||||
});
|
||||
|
||||
it('update element position', async () => {
|
||||
graph.emit(`node:${CommonEvent.DRAG_START}`, { target: { id: 'node5' }, targetType: 'node' });
|
||||
graph.emit(`node:${CommonEvent.DRAG}`, { dx: 50, dy: -50 });
|
||||
graph.emit(`node:${CommonEvent.DRAG_END}`);
|
||||
await expect(graph).toMatchSnapshot(__filename, 'updateMember__position');
|
||||
});
|
||||
});
|
||||
|
@ -64,6 +64,7 @@
|
||||
"@antv/hierarchy": "latest",
|
||||
"@antv/layout": "^1.2.14-beta.3",
|
||||
"@antv/util": "^3.3.7",
|
||||
"bubblesets-js": "^2.3.2",
|
||||
"hull.js": "^1.0.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,14 +1,15 @@
|
||||
import type { DisplayObjectConfig, Group, PathStyleProps } from '@antv/g';
|
||||
import { Path } from '@antv/g';
|
||||
import { deepMix } from '@antv/util';
|
||||
import type { LabelStyleProps } from '../../elements/shapes';
|
||||
import { BaseShape, Label } from '../../elements/shapes';
|
||||
import type { CardinalPlacement, PrefixObject } from '../../types';
|
||||
import { getPolygonTextStyleByPlacement } from '../../utils/polygon';
|
||||
import { subStyleProps } from '../../utils/prefix';
|
||||
import { getWordWrapWidthByBox } from '../../utils/text';
|
||||
import type { LabelStyleProps } from '../shapes';
|
||||
import { BaseShape } from './base-shape';
|
||||
import { Label } from './label';
|
||||
|
||||
type HullLabelStyleProps = LabelStyleProps & {
|
||||
interface ContourLabelStyleProps extends LabelStyleProps {
|
||||
/**
|
||||
* <zh/> 标签位置,可选值为 'top'、'right'、'bottom'、'left'、'center';默认为 'bottom'
|
||||
* <en/> Label position, optional values are 'top', 'right', 'bottom', 'left', 'center'; default is 'bottom'
|
||||
@ -18,10 +19,10 @@ type HullLabelStyleProps = LabelStyleProps & {
|
||||
* <zh/> 标签是否贴合轮廓,默认为 true
|
||||
* <en/> Whether the label is close to the contour, default is true
|
||||
*/
|
||||
closeToHull?: boolean;
|
||||
closeToPath?: boolean;
|
||||
/**
|
||||
* <zh/> 标签是否跟随轮廓旋转,默认为 true,仅在 closeToHull 为 true 时生效
|
||||
* <en/> Whether the label rotates with the contour, default is true. Only effective when closeToHull is true
|
||||
* <zh/> 标签是否跟随轮廓旋转,默认为 true,仅在 closeToPath 为 true 时生效
|
||||
* <en/> Whether the label rotates with the contour, default is true. Only effective when closeToPath is true
|
||||
*/
|
||||
autoRotate?: boolean;
|
||||
/**
|
||||
@ -39,58 +40,50 @@ type HullLabelStyleProps = LabelStyleProps & {
|
||||
* <en/> The maximum width of the text, which will be automatically ellipsis if exceeded
|
||||
*/
|
||||
maxWidth?: number;
|
||||
};
|
||||
}
|
||||
|
||||
export type HullStyleProps = PathStyleProps & {
|
||||
export type ContourStyleProps = PathStyleProps & {
|
||||
label?: boolean;
|
||||
} & PrefixObject<HullLabelStyleProps, 'label'>;
|
||||
type ParsedHullStyleProps = Required<HullStyleProps>;
|
||||
type HullOptions = DisplayObjectConfig<HullStyleProps>;
|
||||
} & PrefixObject<ContourLabelStyleProps, 'label'>;
|
||||
type ParsedContourStyleProps = Required<ContourStyleProps>;
|
||||
type ContourOptions = DisplayObjectConfig<ContourStyleProps>;
|
||||
|
||||
export class Hull extends BaseShape<HullStyleProps> {
|
||||
static defaultStyleProps: Partial<HullStyleProps> = {
|
||||
export class Contour extends BaseShape<ContourStyleProps> {
|
||||
static defaultStyleProps: Partial<ContourStyleProps> = {
|
||||
label: true,
|
||||
labelPlacement: 'bottom',
|
||||
labelCloseToHull: true,
|
||||
labelCloseToPath: true,
|
||||
labelAutoRotate: true,
|
||||
labelOffsetX: 0,
|
||||
labelOffsetY: 0,
|
||||
};
|
||||
|
||||
constructor(options: HullOptions) {
|
||||
super(deepMix({}, { style: Hull.defaultStyleProps }, options));
|
||||
constructor(options: ContourOptions) {
|
||||
super(deepMix({}, { style: Contour.defaultStyleProps }, options));
|
||||
}
|
||||
|
||||
protected getLabelStyle(attributes: ParsedHullStyleProps): LabelStyleProps | false {
|
||||
protected getLabelStyle(attributes: ParsedContourStyleProps): LabelStyleProps | false {
|
||||
if (!attributes.label || !attributes.path || attributes.path.length === 0) return false;
|
||||
const { maxWidth, offsetX, offsetY, autoRotate, placement, closeToHull, ...labelStyle } = subStyleProps<
|
||||
Required<HullLabelStyleProps>
|
||||
const { maxWidth, offsetX, offsetY, autoRotate, placement, closeToPath, ...labelStyle } = subStyleProps<
|
||||
Required<ContourLabelStyleProps>
|
||||
>(this.getGraphicStyle(attributes), 'label');
|
||||
|
||||
const contour = this.shapeMap.contour;
|
||||
const contourBounds = contour?.getRenderBounds();
|
||||
const key = this.shapeMap.key;
|
||||
const keyBounds = key?.getRenderBounds();
|
||||
|
||||
return Object.assign(
|
||||
getPolygonTextStyleByPlacement(
|
||||
contourBounds,
|
||||
placement,
|
||||
offsetX,
|
||||
offsetY,
|
||||
closeToHull,
|
||||
attributes.path,
|
||||
autoRotate,
|
||||
),
|
||||
{ wordWrapWidth: getWordWrapWidthByBox(contourBounds, maxWidth) },
|
||||
getPolygonTextStyleByPlacement(keyBounds, placement, offsetX, offsetY, closeToPath, attributes.path, autoRotate),
|
||||
{ wordWrapWidth: getWordWrapWidthByBox(keyBounds, maxWidth) },
|
||||
labelStyle,
|
||||
);
|
||||
}
|
||||
|
||||
protected getContourStyle(attributes: ParsedHullStyleProps) {
|
||||
protected getKeyStyle(attributes: ParsedContourStyleProps): PathStyleProps {
|
||||
return this.getGraphicStyle(attributes);
|
||||
}
|
||||
|
||||
public render(attributes: ParsedHullStyleProps, container: Group): void {
|
||||
this.upsert('contour', Path, this.getContourStyle(attributes), container);
|
||||
public render(attributes: ParsedContourStyleProps, container: Group): void {
|
||||
this.upsert('key', Path, this.getKeyStyle(attributes), container);
|
||||
this.upsert('label', Label, this.getLabelStyle(attributes), container);
|
||||
}
|
||||
}
|
@ -6,10 +6,12 @@
|
||||
|
||||
export { Badge } from './badge';
|
||||
export { BaseShape } from './base-shape';
|
||||
export { Contour } from './contour';
|
||||
export { Icon } from './icon';
|
||||
export { Label } from './label';
|
||||
|
||||
export type { BadgeStyleProps } from './badge';
|
||||
export type { BaseShapeStyleProps } from './base-shape';
|
||||
export type { ContourStyleProps } from './contour';
|
||||
export type { IconStyleProps } from './icon';
|
||||
export type { LabelStyleProps } from './label';
|
||||
|
@ -25,7 +25,7 @@ export {
|
||||
Triangle,
|
||||
} from './elements/nodes';
|
||||
export { BaseShape } from './elements/shapes';
|
||||
export { BasePlugin, CameraSetting, History } from './plugins';
|
||||
export { BasePlugin, BubbleSets, CameraSetting, History } from './plugins';
|
||||
export { getExtension, getExtensions, register } from './registry';
|
||||
export { Graph } from './runtime/graph';
|
||||
export { BaseTransform } from './transforms';
|
||||
|
268
packages/g6/src/plugins/bubble-sets.ts
Normal file
@ -0,0 +1,268 @@
|
||||
import type { PathArray } from '@antv/util';
|
||||
import { deepMix, isEqual, isFunction } from '@antv/util';
|
||||
import type { IBubbleSetOptions, ILine, IRectangle } from 'bubblesets-js';
|
||||
import { BubbleSets as BubbleSetsJS, Line, Rectangle, defaultOptions } from 'bubblesets-js';
|
||||
import { GraphEvent } from '../constants';
|
||||
import type { ContourStyleProps } from '../elements/shapes';
|
||||
import { Contour } from '../elements/shapes';
|
||||
import type { Graph } from '../runtime/graph';
|
||||
import type { RuntimeContext } from '../runtime/types';
|
||||
import type { CallableValue, ID } from '../types';
|
||||
import { getBBoxHeight, getBBoxWidth } from '../utils/bbox';
|
||||
import { arrayDiff } from '../utils/diff';
|
||||
import type { ElementLifeCycleEvent } from '../utils/event';
|
||||
import { idOf } from '../utils/id';
|
||||
import { getClosedSpline } from '../utils/path';
|
||||
import { parsePoint } from '../utils/point';
|
||||
import type { BasePluginOptions } from './base-plugin';
|
||||
import { BasePlugin } from './base-plugin';
|
||||
|
||||
export interface BubbleSetsOptions extends BasePluginOptions, IBubbleSetOptions, ContourStyleProps {
|
||||
/**
|
||||
* <zh/> 成员元素,包括节点和边
|
||||
*
|
||||
* <en/> Member elements, including nodes and edges
|
||||
*/
|
||||
members: ID[];
|
||||
/**
|
||||
* <zh/> 需要避开的元素,在绘制轮廓时不会包含这些元素。目前支持设置节点
|
||||
*
|
||||
* <en/> Elements to avoid, these elements will not be included when drawing the contour, currently only nodes are supported
|
||||
*/
|
||||
avoidMembers?: ID[];
|
||||
}
|
||||
|
||||
export class BubbleSets extends BasePlugin<BubbleSetsOptions> {
|
||||
private shape!: Contour;
|
||||
|
||||
private bubbleSets!: BubbleSetsJS;
|
||||
|
||||
private path!: PathArray;
|
||||
|
||||
private members: Map<ID, IRectangle | ILine> = new Map();
|
||||
|
||||
private avoidMembers: Map<ID, IRectangle | ILine> = new Map();
|
||||
|
||||
private bubbleSetOptions: IBubbleSetOptions = {};
|
||||
|
||||
static defaultOptions: Partial<BubbleSetsOptions> = {
|
||||
members: [],
|
||||
avoidMembers: [],
|
||||
/** shape style */
|
||||
fill: 'lightblue',
|
||||
stroke: 'blue',
|
||||
opacity: 0.2,
|
||||
/** bubbleSetJS config */
|
||||
...defaultOptions,
|
||||
};
|
||||
|
||||
constructor(context: RuntimeContext, options: BubbleSetsOptions) {
|
||||
super(context, deepMix({}, BubbleSets.defaultOptions, options));
|
||||
|
||||
this.bindEvents();
|
||||
|
||||
this.bubbleSets = new BubbleSetsJS(this.options);
|
||||
}
|
||||
|
||||
private bindEvents() {
|
||||
this.context.graph.on(GraphEvent.AFTER_RENDER, this.drawBubbleSets);
|
||||
this.context.graph.on(GraphEvent.AFTER_ELEMENT_UPDATE, this.updateBubbleSetsPath);
|
||||
}
|
||||
|
||||
private init() {
|
||||
this.bubbleSets = new BubbleSetsJS(this.options);
|
||||
this.members = new Map();
|
||||
this.avoidMembers = new Map();
|
||||
}
|
||||
|
||||
private parseOptions() {
|
||||
const { type, key, members, avoidMembers, ...rest } = this.options;
|
||||
const res = Object.keys(rest).reduce(
|
||||
(acc: { style: ContourStyleProps; bubbleSetOptions: IBubbleSetOptions }, key: string) => {
|
||||
if (key in defaultOptions) {
|
||||
acc.bubbleSetOptions[key as keyof IBubbleSetOptions] = rest[key];
|
||||
} else {
|
||||
acc.style[key as keyof ContourStyleProps] = rest[key];
|
||||
}
|
||||
return acc;
|
||||
},
|
||||
{ style: {}, bubbleSetOptions: {} },
|
||||
);
|
||||
return { type, key, members, avoidMembers, ...res };
|
||||
}
|
||||
|
||||
private drawBubbleSets = () => {
|
||||
const { style, bubbleSetOptions } = this.parseOptions();
|
||||
if (!isEqual(this.bubbleSetOptions, bubbleSetOptions)) this.init();
|
||||
this.bubbleSetOptions = { ...bubbleSetOptions };
|
||||
|
||||
const finalStyle = { ...style, path: this.getPath() };
|
||||
if (!this.shape) {
|
||||
this.shape = new Contour({ style: finalStyle });
|
||||
this.context.canvas.appendChild(this.shape);
|
||||
} else {
|
||||
this.shape.update(finalStyle);
|
||||
}
|
||||
};
|
||||
|
||||
private updateBubbleSetsPath = (event: ElementLifeCycleEvent) => {
|
||||
if (!this.shape) return;
|
||||
const id = idOf(event.data);
|
||||
if (![...this.options.members, ...this.options.avoidMembers].includes(id)) return;
|
||||
this.shape.update({ ...this.parseOptions().style, path: this.getPath(id) });
|
||||
};
|
||||
|
||||
private getPath = (forceUpdateId?: ID): PathArray => {
|
||||
const { graph } = this.context;
|
||||
|
||||
const currMembers = this.options.members;
|
||||
const prevMembers = [...this.members.keys()];
|
||||
const currAvoidMembers = this.options.avoidMembers;
|
||||
const prevAvoidMembers = [...this.avoidMembers.keys()];
|
||||
|
||||
if (!forceUpdateId && isEqual(currMembers, prevMembers) && isEqual(currAvoidMembers, prevAvoidMembers))
|
||||
return this.path;
|
||||
|
||||
const { enter: membersToEnter = [], exit: membersToExit = [] } = arrayDiff(prevMembers, currMembers, (d) => d);
|
||||
const { enter: avoidMembersToEnter = [], exit: avoidMembersToExit = [] } = arrayDiff(
|
||||
prevAvoidMembers,
|
||||
currAvoidMembers,
|
||||
(d) => d,
|
||||
);
|
||||
|
||||
if (forceUpdateId) {
|
||||
membersToExit.push(forceUpdateId);
|
||||
membersToEnter.push(forceUpdateId);
|
||||
}
|
||||
|
||||
const updateBubbleSets = (ids: ID[], isEntering: boolean, isMember: boolean) => {
|
||||
ids.forEach((id) => {
|
||||
const members = isMember ? this.members : this.avoidMembers;
|
||||
const pushMember = isMember ? 'pushMember' : 'pushNonMember';
|
||||
const removeMember = isMember ? 'removeMember' : 'removeNonMember';
|
||||
if (isEntering) {
|
||||
let area: IRectangle | ILine;
|
||||
if (graph.getElementType(id) === 'edge') {
|
||||
[area] = convertToLine(graph, id);
|
||||
this.bubbleSets.pushEdge(area);
|
||||
} else {
|
||||
[area] = convertToRectangle(graph, id);
|
||||
this.bubbleSets[pushMember](area);
|
||||
}
|
||||
members.set(id, area);
|
||||
} else {
|
||||
const area = members.get(id);
|
||||
if (area) {
|
||||
if (graph.getElementType(id) === 'edge') {
|
||||
this.bubbleSets.removeEdge(area as ILine);
|
||||
} else {
|
||||
this.bubbleSets[removeMember](area as IRectangle);
|
||||
}
|
||||
members.delete(id);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
updateBubbleSets(membersToExit, false, true);
|
||||
updateBubbleSets(membersToEnter, true, true);
|
||||
updateBubbleSets(avoidMembersToExit, false, false);
|
||||
updateBubbleSets(avoidMembersToEnter, true, false);
|
||||
|
||||
const pointPath = this.bubbleSets.compute();
|
||||
const cleanPath = pointPath.sample(8).simplify(0).bSplines().simplify(0);
|
||||
this.path = getClosedSpline(cleanPath.points.map(parsePoint));
|
||||
return this.path;
|
||||
};
|
||||
|
||||
public addMember(members: ID | ID[]) {
|
||||
const membersToAdd = Array.isArray(members) ? members : [members];
|
||||
if (membersToAdd.some((member) => this.options.avoidMembers.includes(member))) {
|
||||
this.options.avoidMembers = this.options.avoidMembers.filter((id) => !membersToAdd.includes(id));
|
||||
}
|
||||
this.options.members = [...new Set([...this.options.members, ...membersToAdd])];
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
|
||||
public removeMember(members: ID | ID[]) {
|
||||
const membersToRemove = Array.isArray(members) ? members : [members];
|
||||
this.options.members = this.options.members.filter((id) => !membersToRemove.includes(id));
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
|
||||
public updateMember(members: CallableValue<ID[]>) {
|
||||
this.options.members = isFunction(members) ? members(this.options.members) : members;
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
|
||||
public getMember() {
|
||||
return this.options.members;
|
||||
}
|
||||
|
||||
public addAvoidMember(avoidMembers: ID | ID[]) {
|
||||
const avoidMembersToAdd = Array.isArray(avoidMembers) ? avoidMembers : [avoidMembers];
|
||||
if (avoidMembersToAdd.some((AvoidMember) => this.options.members.includes(AvoidMember))) {
|
||||
this.options.members = this.options.members.filter((id) => !avoidMembersToAdd.includes(id));
|
||||
}
|
||||
this.options.avoidMembers = [...new Set([...this.options.avoidMembers, ...avoidMembersToAdd])];
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
|
||||
public removeAvoidMember(avoidMembers: ID | ID[]) {
|
||||
const avoidMembersToRemove = Array.isArray(avoidMembers) ? avoidMembers : [avoidMembers];
|
||||
if (this.options.avoidMembers.some((member) => avoidMembersToRemove.includes(member))) {
|
||||
this.options.avoidMembers = this.options.avoidMembers.filter((id) => !avoidMembersToRemove.includes(id));
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
}
|
||||
|
||||
public updateAvoidMember(avoidMembers: ID | ID[]) {
|
||||
this.options.avoidMembers = Array.isArray(avoidMembers) ? avoidMembers : [avoidMembers];
|
||||
this.drawBubbleSets();
|
||||
}
|
||||
|
||||
public getAvoidMember() {
|
||||
return this.options.avoidMembers;
|
||||
}
|
||||
|
||||
public destroy(): void {
|
||||
this.context.graph.off(GraphEvent.AFTER_RENDER, this.drawBubbleSets);
|
||||
this.context.graph.off(GraphEvent.AFTER_ELEMENT_UPDATE, this.updateBubbleSetsPath);
|
||||
this.shape.destroy();
|
||||
super.destroy();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* <zh/> 将节点转换为 BubbleSetJS 支持的矩形
|
||||
*
|
||||
* <en/> Convert nodes to rectangles supported by BubbleSetJS
|
||||
* @param graph - <zh/> 图实例 | <en/> graph instance
|
||||
* @param ids - <zh/> 元素 ID 数组 | <en/> element ID array
|
||||
* @returns <zh/> 矩形数组 | <en/> rectangle array
|
||||
*/
|
||||
const convertToRectangle = (graph: Graph, ids: ID | ID[]): IRectangle[] => {
|
||||
const idArr = Array.isArray(ids) ? ids : [ids];
|
||||
return idArr.map((id) => {
|
||||
const bbox = graph.getElementRenderBounds(id);
|
||||
return new Rectangle(bbox.min[0], bbox.min[1], getBBoxWidth(bbox), getBBoxHeight(bbox));
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* <zh/> 将边转换为 BubbleSetJS 支持的线
|
||||
*
|
||||
* <en/> Convert edges to lines supported by BubbleSetJS
|
||||
* @param graph - <zh/> 图实例 | <en/> graph instance
|
||||
* @param ids - <zh/> 元素 ID 数组 | <en/> element ID array
|
||||
* @returns <zh/> 线数组 | <en/> line array
|
||||
*/
|
||||
const convertToLine = (graph: Graph, ids: ID | ID[]): ILine[] => {
|
||||
const idArr = Array.isArray(ids) ? ids : [ids];
|
||||
return idArr.map((id) => {
|
||||
const data = graph.getEdgeData(id);
|
||||
const source = graph.getElementPosition(data.source);
|
||||
const target = graph.getElementPosition(data.target);
|
||||
return Line.from({ x1: source[0], y1: source[1], x2: target[0], y2: target[1] });
|
||||
});
|
||||
};
|
@ -1,6 +1,8 @@
|
||||
import { PathArray, isEqual, isFunction } from '@antv/util';
|
||||
import hull from 'hull.js';
|
||||
import { GraphEvent } from '../../constants';
|
||||
import type { ContourStyleProps } from '../../elements/shapes';
|
||||
import { Contour } from '../../elements/shapes';
|
||||
import type { RuntimeContext } from '../../runtime/types';
|
||||
import type { CallableValue, ID, Point } from '../../types';
|
||||
import type { ElementLifeCycleEvent } from '../../utils/event';
|
||||
@ -8,11 +10,9 @@ import { idOf } from '../../utils/id';
|
||||
import { positionOf } from '../../utils/position';
|
||||
import type { BasePluginOptions } from '../base-plugin';
|
||||
import { BasePlugin } from '../base-plugin';
|
||||
import type { HullStyleProps } from './shape';
|
||||
import { Hull as HullShape } from './shape';
|
||||
import { computeHullPath } from './util';
|
||||
|
||||
export interface HullOptions extends BasePluginOptions, HullStyleProps {
|
||||
export interface HullOptions extends BasePluginOptions, ContourStyleProps {
|
||||
/**
|
||||
* <zh/> Hull 内的元素
|
||||
* <en/> Elements in Hull
|
||||
@ -36,7 +36,7 @@ export interface HullOptions extends BasePluginOptions, HullStyleProps {
|
||||
}
|
||||
|
||||
export class Hull extends BasePlugin<HullOptions> {
|
||||
private shape!: HullShape;
|
||||
private shape!: Contour;
|
||||
/**
|
||||
* <zh/> 在 Hull 上的元素
|
||||
* <en/> Element Ids on Hull
|
||||
@ -47,11 +47,8 @@ export class Hull extends BasePlugin<HullOptions> {
|
||||
* <en/> Hull path
|
||||
*/
|
||||
private path!: PathArray;
|
||||
/**
|
||||
* <zh> 是否初次渲染完成
|
||||
* <en> Whether the first rendering is completed
|
||||
*/
|
||||
private firstRender = false;
|
||||
|
||||
private optionsCache!: HullOptions;
|
||||
|
||||
static defaultOptions: Partial<HullOptions> = {
|
||||
members: [],
|
||||
@ -75,19 +72,24 @@ export class Hull extends BasePlugin<HullOptions> {
|
||||
this.context.graph.on(GraphEvent.AFTER_ELEMENT_UPDATE, this.updateHullPath);
|
||||
}
|
||||
|
||||
private getHullStyle(forceUpdate?: boolean): HullStyleProps {
|
||||
private getHullStyle(forceUpdate?: boolean): ContourStyleProps {
|
||||
const { members, padding, corner, ...style } = this.options;
|
||||
return { ...style, path: this.getHullPath(forceUpdate) };
|
||||
}
|
||||
|
||||
private drawHull = () => {
|
||||
this.shape = new HullShape({ style: this.getHullStyle() });
|
||||
this.context.canvas.appendChild(this.shape);
|
||||
this.firstRender = true;
|
||||
if (!this.shape) {
|
||||
this.shape = new Contour({ style: this.getHullStyle() });
|
||||
this.context.canvas.appendChild(this.shape);
|
||||
} else {
|
||||
const forceUpdate = !isEqual(this.optionsCache, this.options);
|
||||
this.shape.update(this.getHullStyle(forceUpdate));
|
||||
}
|
||||
this.optionsCache = { ...this.options };
|
||||
};
|
||||
|
||||
private updateHullPath = (event: ElementLifeCycleEvent) => {
|
||||
if (!this.firstRender) return;
|
||||
if (!this.shape) return;
|
||||
if (!this.options.members.includes(idOf(event.data))) return;
|
||||
this.shape.update({ path: this.getHullPath(true) });
|
||||
};
|
||||
@ -115,13 +117,13 @@ export class Hull extends BasePlugin<HullOptions> {
|
||||
return memberPadding + this.options.padding;
|
||||
}
|
||||
|
||||
public addMembers(members: ID | ID[]) {
|
||||
public addMember(members: ID | ID[]) {
|
||||
const membersToAdd = Array.isArray(members) ? members : [members];
|
||||
this.options.members = [...new Set([...this.options.members, ...membersToAdd])];
|
||||
this.shape.update({ path: this.getHullPath() });
|
||||
}
|
||||
|
||||
public removeMembers(members: ID | ID[]) {
|
||||
public removeMember(members: ID | ID[]) {
|
||||
const membersToRemove = Array.isArray(members) ? members : [members];
|
||||
this.options.members = this.options.members.filter((id) => !membersToRemove.includes(id));
|
||||
if (membersToRemove.some((id) => this.hullMemberIds.includes(id))) {
|
||||
@ -129,14 +131,13 @@ export class Hull extends BasePlugin<HullOptions> {
|
||||
}
|
||||
}
|
||||
|
||||
public updateMembers(members: CallableValue<ID[]>) {
|
||||
public updateMember(members: CallableValue<ID[]>) {
|
||||
this.options.members = isFunction(members) ? members(this.options.members) : members;
|
||||
this.shape.update(this.getHullStyle(true));
|
||||
}
|
||||
|
||||
public updateOptions(options: CallableValue<HullOptions>) {
|
||||
this.options = (isFunction(options) ? options(this.options) : options) as Required<HullOptions>;
|
||||
this.shape.update({ ...this.options, path: this.getHullPath(true) });
|
||||
public getMember() {
|
||||
return this.options.members;
|
||||
}
|
||||
|
||||
public destroy(): void {
|
||||
|
@ -1,4 +1,5 @@
|
||||
export { BasePlugin } from './base-plugin';
|
||||
export { BubbleSets } from './bubble-sets';
|
||||
export { CameraSetting } from './camera-setting';
|
||||
export { Contextmenu } from './contextmenu';
|
||||
export { GridLine } from './grid-line';
|
||||
@ -10,6 +11,7 @@ export { Tooltip } from './tooltip';
|
||||
export { Watermark } from './watermark';
|
||||
|
||||
export type { BasePluginOptions } from './base-plugin';
|
||||
export type { BubbleSetsOptions } from './bubble-sets';
|
||||
export type { CameraSettingOptions } from './camera-setting';
|
||||
export type { ContextmenuOptions } from './contextmenu';
|
||||
export type { GridLineOptions } from './grid-line';
|
||||
|
@ -53,7 +53,7 @@ import {
|
||||
mindmap,
|
||||
} from '../layouts';
|
||||
import { blues, greens, oranges, spectral, tableau } from '../palettes';
|
||||
import { Contextmenu, GridLine, History, Hull, Legend, Toolbar, Tooltip, Watermark } from '../plugins';
|
||||
import { BubbleSets, Contextmenu, GridLine, History, Hull, Legend, Toolbar, Tooltip, Watermark } from '../plugins';
|
||||
import { dark, light } from '../themes';
|
||||
import { ArrangeDrawOrder, CollapseExpandCombo, ProcessParallelEdges, UpdateRelatedEdge } from '../transforms';
|
||||
import type { ExtensionRegistry } from './types';
|
||||
@ -137,14 +137,15 @@ export const BUILT_IN_EXTENSIONS: ExtensionRegistry = {
|
||||
light,
|
||||
},
|
||||
plugin: {
|
||||
hull: Hull,
|
||||
'bubble-sets': BubbleSets,
|
||||
'grid-line': GridLine,
|
||||
watermark: Watermark,
|
||||
tooltip: Tooltip,
|
||||
contextmenu: Contextmenu,
|
||||
toolbar: Toolbar,
|
||||
legend: Legend,
|
||||
history: History,
|
||||
hull: Hull,
|
||||
legend: Legend,
|
||||
toolbar: Toolbar,
|
||||
tooltip: Tooltip,
|
||||
watermark: Watermark,
|
||||
},
|
||||
transform: {
|
||||
'update-related-edges': UpdateRelatedEdge,
|
||||
|
@ -83,7 +83,7 @@ Hull style
|
||||
|
||||
**Description**: Add a hull member
|
||||
|
||||
### addHullNonMember
|
||||
### addHullAvoidMember
|
||||
|
||||
**Type**: `(id: ID, member: ID | ID[]) => void;`
|
||||
|
||||
@ -101,7 +101,7 @@ Hull style
|
||||
|
||||
**Description**: Remove a hull member
|
||||
|
||||
### removeHullNonMember
|
||||
### removeHullAvoidMember
|
||||
|
||||
**Type**: `(id: ID, member: ID | ID[]) => void;`
|
||||
|
||||
@ -143,8 +143,8 @@ type BubbleCfg = {
|
||||
edgeInfluenceFactor?: number;
|
||||
/** member influence factor */
|
||||
memberInfluenceFactor?: number;
|
||||
/** nonMember influence factor */
|
||||
nonMemberInfluenceFactor?: number;
|
||||
/** AvoidMember influence factor */
|
||||
AvoidMemberInfluenceFactor?: number;
|
||||
};
|
||||
|
||||
type ComboLabelPosition =
|
||||
@ -162,7 +162,7 @@ type ComboLabelPosition =
|
||||
type HullComponentOptions = {
|
||||
id: string;
|
||||
members?: ID[];
|
||||
nonMembers?: ID[];
|
||||
avoidMembers?: ID[];
|
||||
style?: ShapeStyle;
|
||||
padding?: number;
|
||||
type?: 'bubble' | 'round-convex' | 'smooth-convex';
|
||||
|
@ -81,7 +81,7 @@ type labelShape = ShapeSyle & {
|
||||
|
||||
添加轮廓包裹成员
|
||||
|
||||
### addHullNonMember
|
||||
### addHullAvoidMember
|
||||
|
||||
**类型**:`(id: ID, member: ID | ID[]) => void;`
|
||||
|
||||
@ -99,7 +99,7 @@ type labelShape = ShapeSyle & {
|
||||
|
||||
移除轮廓包裹成员
|
||||
|
||||
### removeHullNonMember
|
||||
### removeHullAvoidMember
|
||||
|
||||
**类型**:`(id: ID, member: ID | ID[]) => void;`
|
||||
|
||||
@ -142,7 +142,7 @@ type BubbleCfg = {
|
||||
/** 成员影响因子 */
|
||||
memberInfluenceFactor?: number;
|
||||
/** 非成员影响因子 */
|
||||
nonMemberInfluenceFactor?: number;
|
||||
AvoidMemberInfluenceFactor?: number;
|
||||
};
|
||||
|
||||
type ComboLabelPosition =
|
||||
@ -160,7 +160,7 @@ type ComboLabelPosition =
|
||||
type HullComponentOptions = {
|
||||
id: string;
|
||||
members?: ID[];
|
||||
nonMembers?: ID[];
|
||||
avoidMembers?: ID[];
|
||||
style?: ShapeStyle;
|
||||
padding?: number;
|
||||
type?: 'bubble' | 'round-convex' | 'smooth-convex';
|
||||
|
@ -219,9 +219,9 @@ graph.render().then(async () => {
|
||||
name: 'Add/Delete Member',
|
||||
action: () => {
|
||||
if (!memberAdded) {
|
||||
hull1.addMembers(['4']);
|
||||
hull1.addMember(['4']);
|
||||
} else {
|
||||
hull1.removeMembers(['4']);
|
||||
hull1.removeMember(['4']);
|
||||
}
|
||||
memberAdded = !memberAdded;
|
||||
},
|
||||
@ -235,7 +235,7 @@ graph.render().then(async () => {
|
||||
corner: 'sharp',
|
||||
labelText: 'Updated Group1',
|
||||
labelPlacement: 'top',
|
||||
labelCloseToHull: false,
|
||||
labelCloseToPath: false,
|
||||
labelBackgroundFill: 'orange',
|
||||
}));
|
||||
},
|
||||
|
@ -636,7 +636,7 @@ const graph = new Graph({
|
||||
stroke: '#D580FF',
|
||||
labelText: 'cluster-d',
|
||||
labelPlacement: 'bottom',
|
||||
labelCloseToHull: false,
|
||||
labelCloseToPath: false,
|
||||
},
|
||||
],
|
||||
autoFit: 'center',
|
||||
|
@ -7,4 +7,4 @@ Use a smooth contour to wrap a specified set of nodes.
|
||||
|
||||
## Usage
|
||||
|
||||
Hull is used for wrapping a set of nodes, to emphasize the sets or groups in the graph and do not affect the original node positions and the layout. There are three types of hull: `round-convex`, `smooth-convex` and `bubble`. The `round-convex` type generates a rounded polygon, the `smooth-convex` configuration generates a closed spline contour and the `bubble` type generates a smooth concave hull that could avoids `nonMembers`. The hulls could be updated interactively. In the first example below, the blue one is of bubble type and green is a rounded convex hull. The two hulls listen for node changes and then be updated, so that they always wrap the nodes. In the second example, the red bubble allows its members to be dragged in and out, and its members could be added by right clicking on the canvas. The blue bubble is updated according to node changes. For the complete configuration, please refer to the API documentation: [createHull](/en/docs/api/graphFunc/hull#createhullcfg-hullcfg).
|
||||
Hull is used for wrapping a set of nodes, to emphasize the sets or groups in the graph and do not affect the original node positions and the layout. There are three types of hull: `round-convex`, `smooth-convex` and `bubble`. The `round-convex` type generates a rounded polygon, the `smooth-convex` configuration generates a closed spline contour and the `bubble` type generates a smooth concave hull that could avoids `avoidMembers`. The hulls could be updated interactively. In the first example below, the blue one is of bubble type and green is a rounded convex hull. The two hulls listen for node changes and then be updated, so that they always wrap the nodes. In the second example, the red bubble allows its members to be dragged in and out, and its members could be added by right clicking on the canvas. The blue bubble is updated according to node changes. For the complete configuration, please refer to the API documentation: [createHull](/en/docs/api/graphFunc/hull#createhullcfg-hullcfg).
|
||||
|
@ -7,4 +7,4 @@ order: 5
|
||||
|
||||
## 何时使用
|
||||
|
||||
节点集轮廓包裹常用语交互过程中,对团伙标记与分析,尤其是在不希望影响原图布局的情况下。轮廓包裹的形状支持 `round-convex` / `smooth-convex` / `bubble` 三种类型,默认为 `round-convex` 类型。`round-convex` 为圆角凸包轮廓,`smooth-convex` 为平滑曲线凸包轮廓,这两种凸包轮廓不可排除配置项中的 nonMembers;`bubble` 为自由凹包轮廓,可以排除 nonMembers。可配合事件监听实现轮廓的动态更新。下面的第一个示例中,蓝色为 bubble 类型轮廓, 绿色为 round-convex 类型轮廓,轮廓监听节点变化进行更新,始终包裹节点。第二个示例中,红色气泡配合节点 drag 事件,实现节点拖进拖出,右击可以增加内部成员;蓝色凸包随节点位置更新,始终包裹节点。完整的配置项请参考 API 文档: [createHull](/zh/docs/api/graphFunc/hull#createhullcfg-hullcfg)。
|
||||
节点集轮廓包裹常用语交互过程中,对团伙标记与分析,尤其是在不希望影响原图布局的情况下。轮廓包裹的形状支持 `round-convex` / `smooth-convex` / `bubble` 三种类型,默认为 `round-convex` 类型。`round-convex` 为圆角凸包轮廓,`smooth-convex` 为平滑曲线凸包轮廓,这两种凸包轮廓不可排除配置项中的 avoidMembers;`bubble` 为自由凹包轮廓,可以排除 avoidMembers。可配合事件监听实现轮廓的动态更新。下面的第一个示例中,蓝色为 bubble 类型轮廓, 绿色为 round-convex 类型轮廓,轮廓监听节点变化进行更新,始终包裹节点。第二个示例中,红色气泡配合节点 drag 事件,实现节点拖进拖出,右击可以增加内部成员;蓝色凸包随节点位置更新,始终包裹节点。完整的配置项请参考 API 文档: [createHull](/zh/docs/api/graphFunc/hull#createhullcfg-hullcfg)。
|
||||
|