reduce distance between actors

This commit is contained in:
Alexander Wang 2022-12-04 20:05:25 -08:00
parent e9c9a80edb
commit 0f5b14c76a
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE
38 changed files with 1238 additions and 1249 deletions

View file

@ -6,7 +6,7 @@ const HORIZONTAL_PAD = 50.
// leaves at least 25 units of space on the top/bottom when computing the space required between messages // leaves at least 25 units of space on the top/bottom when computing the space required between messages
const VERTICAL_PAD = 50. const VERTICAL_PAD = 50.
const MIN_ACTOR_DISTANCE = 250. const MIN_ACTOR_DISTANCE = 70.
const MIN_ACTOR_WIDTH = 150. const MIN_ACTOR_WIDTH = 150.

View file

@ -33,7 +33,6 @@ type sequenceDiagram struct {
lastMessage map[*d2graph.Object]*d2graph.Edge lastMessage map[*d2graph.Object]*d2graph.Edge
yStep float64 yStep float64
actorXStep float64
maxActorHeight float64 maxActorHeight float64
verticalIndices map[string]int verticalIndices map[string]int
@ -140,7 +139,6 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
firstMessage: make(map[*d2graph.Object]*d2graph.Edge), firstMessage: make(map[*d2graph.Object]*d2graph.Edge),
lastMessage: make(map[*d2graph.Object]*d2graph.Edge), lastMessage: make(map[*d2graph.Object]*d2graph.Edge),
yStep: MIN_MESSAGE_DISTANCE, yStep: MIN_MESSAGE_DISTANCE,
actorXStep: MIN_ACTOR_DISTANCE,
maxActorHeight: 0., maxActorHeight: 0.,
verticalIndices: make(map[string]int), verticalIndices: make(map[string]int),
} }
@ -189,15 +187,6 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
sd.verticalIndices[message.AbsID()] = getEdgeEarliestLineNum(message) sd.verticalIndices[message.AbsID()] = getEdgeEarliestLineNum(message)
sd.yStep = math.Max(sd.yStep, float64(message.LabelDimensions.Height)) sd.yStep = math.Max(sd.yStep, float64(message.LabelDimensions.Height))
// ensures that long labels, spanning over multiple actors, don't make for large gaps between actors
// by distributing the label length across the actors rank difference
rankDiff := math.Abs(float64(sd.objectRank[message.Src]) - float64(sd.objectRank[message.Dst]))
if rankDiff != 0 {
// rankDiff = 0 for self edges
distributedLabelWidth := float64(message.LabelDimensions.Width) / rankDiff
sd.actorXStep = math.Max(sd.actorXStep, distributedLabelWidth+HORIZONTAL_PAD)
}
sd.lastMessage[message.Src] = message sd.lastMessage[message.Src] = message
if _, exists := sd.firstMessage[message.Src]; !exists { if _, exists := sd.firstMessage[message.Src]; !exists {
sd.firstMessage[message.Src] = message sd.firstMessage[message.Src] = message
@ -304,7 +293,7 @@ func (sd *sequenceDiagram) placeActors() {
yOffset = sd.maxActorHeight - actor.Height yOffset = sd.maxActorHeight - actor.Height
} }
actor.TopLeft = geo.NewPoint(x, yOffset) actor.TopLeft = geo.NewPoint(x, yOffset)
x += actor.Width + sd.actorXStep x += actor.Width + MIN_ACTOR_DISTANCE
} }
} }

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 410, "x": 223,
"y": 84 "y": 84
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "class", "type": "class",
"pos": { "pos": {
"x": 817, "x": 443,
"y": 50 "y": 50
}, },
"width": 241, "width": 241,
@ -133,7 +133,7 @@
"id": "d", "id": "d",
"type": "cloud", "type": "cloud",
"pos": { "pos": {
"x": 1315, "x": 754,
"y": 108 "y": 108
}, },
"width": 179, "width": 179,
@ -172,7 +172,7 @@
"id": "e", "id": "e",
"type": "code", "type": "code",
"pos": { "pos": {
"x": 1751, "x": 1003,
"y": 164 "y": 164
}, },
"width": 196, "width": 196,
@ -211,7 +211,7 @@
"id": "f", "id": "f",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 2204, "x": 1269,
"y": 84 "y": 84
}, },
"width": 150, "width": 150,
@ -250,7 +250,7 @@
"id": "g", "id": "g",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 2611, "x": 1489,
"y": 85 "y": 85
}, },
"width": 150, "width": 150,
@ -289,7 +289,7 @@
"id": "h", "id": "h",
"type": "document", "type": "document",
"pos": { "pos": {
"x": 3018, "x": 1709,
"y": 97 "y": 97
}, },
"width": 150, "width": 150,
@ -328,7 +328,7 @@
"id": "i", "id": "i",
"type": "hexagon", "type": "hexagon",
"pos": { "pos": {
"x": 3425, "x": 1929,
"y": 108 "y": 108
}, },
"width": 182, "width": 182,
@ -367,7 +367,7 @@
"id": "j", "id": "j",
"type": "image", "type": "image",
"pos": { "pos": {
"x": 3864, "x": 2181,
"y": 63 "y": 63
}, },
"width": 150, "width": 150,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 4271, "x": 2401,
"y": 97 "y": 97
}, },
"width": 150, "width": 150,
@ -456,7 +456,7 @@
"id": "l", "id": "l",
"type": "package", "type": "package",
"pos": { "pos": {
"x": 4678, "x": 2621,
"y": 98 "y": 98
}, },
"width": 150, "width": 150,
@ -495,7 +495,7 @@
"id": "m", "id": "m",
"type": "page", "type": "page",
"pos": { "pos": {
"x": 5085, "x": 2841,
"y": 108 "y": 108
}, },
"width": 175, "width": 175,
@ -534,7 +534,7 @@
"id": "n", "id": "n",
"type": "parallelogram", "type": "parallelogram",
"pos": { "pos": {
"x": 5517, "x": 3086,
"y": 92 "y": 92
}, },
"width": 183, "width": 183,
@ -573,7 +573,7 @@
"id": "o", "id": "o",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 5957, "x": 3339,
"y": 55 "y": 55
}, },
"width": 154, "width": 154,
@ -612,7 +612,7 @@
"id": "p", "id": "p",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 6368, "x": 3563,
"y": 108 "y": 108
}, },
"width": 161, "width": 161,
@ -651,7 +651,7 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 6786, "x": 3794,
"y": 69 "y": 69
}, },
"width": 165, "width": 165,
@ -690,7 +690,7 @@
"id": "r", "id": "r",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 7208, "x": 4029,
"y": 108 "y": 108
}, },
"width": 213, "width": 213,
@ -729,7 +729,7 @@
"id": "s", "id": "s",
"type": "stored_data", "type": "stored_data",
"pos": { "pos": {
"x": 7678, "x": 4312,
"y": 96 "y": 96
}, },
"width": 150, "width": 150,
@ -768,7 +768,7 @@
"id": "t", "id": "t",
"type": "sql_table", "type": "sql_table",
"pos": { "pos": {
"x": 8085, "x": 4532,
"y": 126 "y": 126
}, },
"width": 210, "width": 210,
@ -848,7 +848,7 @@
"y": 364 "y": 364
}, },
{ {
"x": 485, "x": 298,
"y": 364 "y": 364
} }
], ],
@ -883,11 +883,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 298,
"y": 494 "y": 494
}, },
{ {
"x": 937.5, "x": 563.5,
"y": 494 "y": 494
} }
], ],
@ -922,11 +922,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 937.5, "x": 563.5,
"y": 624 "y": 624
}, },
{ {
"x": 1404.5, "x": 843.5,
"y": 624 "y": 624
} }
], ],
@ -961,11 +961,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1404.5, "x": 843.5,
"y": 754 "y": 754
}, },
{ {
"x": 1849, "x": 1101,
"y": 754 "y": 754
} }
], ],
@ -1000,11 +1000,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1849, "x": 1101,
"y": 884 "y": 884
}, },
{ {
"x": 2279, "x": 1344,
"y": 884 "y": 884
} }
], ],
@ -1039,11 +1039,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2279, "x": 1344,
"y": 1014 "y": 1014
}, },
{ {
"x": 2686, "x": 1564,
"y": 1014 "y": 1014
} }
], ],
@ -1078,11 +1078,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2686, "x": 1564,
"y": 1144 "y": 1144
}, },
{ {
"x": 3093, "x": 1784,
"y": 1144 "y": 1144
} }
], ],
@ -1117,11 +1117,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093, "x": 1784,
"y": 1274 "y": 1274
}, },
{ {
"x": 3516, "x": 2020,
"y": 1274 "y": 1274
} }
], ],
@ -1156,11 +1156,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3516, "x": 2020,
"y": 1404 "y": 1404
}, },
{ {
"x": 3939, "x": 2256,
"y": 1404 "y": 1404
} }
], ],
@ -1195,11 +1195,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3939, "x": 2256,
"y": 1534 "y": 1534
}, },
{ {
"x": 4346, "x": 2476,
"y": 1534 "y": 1534
} }
], ],
@ -1234,11 +1234,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4346, "x": 2476,
"y": 1664 "y": 1664
}, },
{ {
"x": 4753, "x": 2696,
"y": 1664 "y": 1664
} }
], ],
@ -1273,11 +1273,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4753, "x": 2696,
"y": 1794 "y": 1794
}, },
{ {
"x": 5172.5, "x": 2928.5,
"y": 1794 "y": 1794
} }
], ],
@ -1312,11 +1312,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5172.5, "x": 2928.5,
"y": 1924 "y": 1924
}, },
{ {
"x": 5608.5, "x": 3177.5,
"y": 1924 "y": 1924
} }
], ],
@ -1351,11 +1351,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5608.5, "x": 3177.5,
"y": 2054 "y": 2054
}, },
{ {
"x": 6034, "x": 3416,
"y": 2054 "y": 2054
} }
], ],
@ -1390,11 +1390,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6034, "x": 3416,
"y": 2184 "y": 2184
}, },
{ {
"x": 6448.5, "x": 3643.5,
"y": 2184 "y": 2184
} }
], ],
@ -1429,11 +1429,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6448.5, "x": 3643.5,
"y": 2314 "y": 2314
}, },
{ {
"x": 6868.5, "x": 3876.5,
"y": 2314 "y": 2314
} }
], ],
@ -1468,11 +1468,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6868.5, "x": 3876.5,
"y": 2444 "y": 2444
}, },
{ {
"x": 7314.5, "x": 4135.5,
"y": 2444 "y": 2444
} }
], ],
@ -1507,11 +1507,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7314.5, "x": 4135.5,
"y": 2574 "y": 2574
}, },
{ {
"x": 7753, "x": 4387,
"y": 2574 "y": 2574
} }
], ],
@ -1546,11 +1546,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7753, "x": 4387,
"y": 2704 "y": 2704
}, },
{ {
"x": 8190, "x": 4637,
"y": 2704 "y": 2704
} }
], ],
@ -1624,11 +1624,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 298,
"y": 234 "y": 234
}, },
{ {
"x": 485, "x": 298,
"y": 2834 "y": 2834
} }
], ],
@ -1663,11 +1663,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 937.5, "x": 563.5,
"y": 234 "y": 234
}, },
{ {
"x": 937.5, "x": 563.5,
"y": 2834 "y": 2834
} }
], ],
@ -1702,11 +1702,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1404.5, "x": 843.5,
"y": 234 "y": 234
}, },
{ {
"x": 1404.5, "x": 843.5,
"y": 2834 "y": 2834
} }
], ],
@ -1741,11 +1741,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1849, "x": 1101,
"y": 234 "y": 234
}, },
{ {
"x": 1849, "x": 1101,
"y": 2834 "y": 2834
} }
], ],
@ -1780,11 +1780,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2279, "x": 1344,
"y": 234 "y": 234
}, },
{ {
"x": 2279, "x": 1344,
"y": 2834 "y": 2834
} }
], ],
@ -1819,11 +1819,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2686, "x": 1564,
"y": 234 "y": 234
}, },
{ {
"x": 2686, "x": 1564,
"y": 2834 "y": 2834
} }
], ],
@ -1858,11 +1858,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093, "x": 1784,
"y": 234 "y": 234
}, },
{ {
"x": 3093, "x": 1784,
"y": 2834 "y": 2834
} }
], ],
@ -1897,11 +1897,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3516, "x": 2020,
"y": 234 "y": 234
}, },
{ {
"x": 3516, "x": 2020,
"y": 2834 "y": 2834
} }
], ],
@ -1936,11 +1936,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3939, "x": 2256,
"y": 239 "y": 239
}, },
{ {
"x": 3939, "x": 2256,
"y": 2834 "y": 2834
} }
], ],
@ -1975,11 +1975,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4346, "x": 2476,
"y": 234 "y": 234
}, },
{ {
"x": 4346, "x": 2476,
"y": 2834 "y": 2834
} }
], ],
@ -2014,11 +2014,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4753, "x": 2696,
"y": 234 "y": 234
}, },
{ {
"x": 4753, "x": 2696,
"y": 2834 "y": 2834
} }
], ],
@ -2053,11 +2053,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5172.5, "x": 2928.5,
"y": 234 "y": 234
}, },
{ {
"x": 5172.5, "x": 2928.5,
"y": 2834 "y": 2834
} }
], ],
@ -2092,11 +2092,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5608.5, "x": 3177.5,
"y": 234 "y": 234
}, },
{ {
"x": 5608.5, "x": 3177.5,
"y": 2834 "y": 2834
} }
], ],
@ -2131,11 +2131,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6034, "x": 3416,
"y": 239 "y": 239
}, },
{ {
"x": 6034, "x": 3416,
"y": 2834 "y": 2834
} }
], ],
@ -2170,11 +2170,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6448.5, "x": 3643.5,
"y": 234 "y": 234
}, },
{ {
"x": 6448.5, "x": 3643.5,
"y": 2834 "y": 2834
} }
], ],
@ -2209,11 +2209,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6868.5, "x": 3876.5,
"y": 234 "y": 234
}, },
{ {
"x": 6868.5, "x": 3876.5,
"y": 2834 "y": 2834
} }
], ],
@ -2248,11 +2248,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7314.5, "x": 4135.5,
"y": 234 "y": 234
}, },
{ {
"x": 7314.5, "x": 4135.5,
"y": 2834 "y": 2834
} }
], ],
@ -2287,11 +2287,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7753, "x": 4387,
"y": 234 "y": 234
}, },
{ {
"x": 7753, "x": 4387,
"y": 2834 "y": 2834
} }
], ],
@ -2326,11 +2326,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 8190, "x": 4637,
"y": 234 "y": 234
}, },
{ {
"x": 8190, "x": 4637,
"y": 2834 "y": 2834
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 992 KiB

After

Width:  |  Height:  |  Size: 992 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 410, "x": 223,
"y": 84 "y": 84
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "class", "type": "class",
"pos": { "pos": {
"x": 817, "x": 443,
"y": 50 "y": 50
}, },
"width": 241, "width": 241,
@ -133,7 +133,7 @@
"id": "d", "id": "d",
"type": "cloud", "type": "cloud",
"pos": { "pos": {
"x": 1315, "x": 754,
"y": 108 "y": 108
}, },
"width": 179, "width": 179,
@ -172,7 +172,7 @@
"id": "e", "id": "e",
"type": "code", "type": "code",
"pos": { "pos": {
"x": 1751, "x": 1003,
"y": 164 "y": 164
}, },
"width": 196, "width": 196,
@ -211,7 +211,7 @@
"id": "f", "id": "f",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 2204, "x": 1269,
"y": 84 "y": 84
}, },
"width": 150, "width": 150,
@ -250,7 +250,7 @@
"id": "g", "id": "g",
"type": "diamond", "type": "diamond",
"pos": { "pos": {
"x": 2611, "x": 1489,
"y": 85 "y": 85
}, },
"width": 150, "width": 150,
@ -289,7 +289,7 @@
"id": "h", "id": "h",
"type": "document", "type": "document",
"pos": { "pos": {
"x": 3018, "x": 1709,
"y": 97 "y": 97
}, },
"width": 150, "width": 150,
@ -328,7 +328,7 @@
"id": "i", "id": "i",
"type": "hexagon", "type": "hexagon",
"pos": { "pos": {
"x": 3425, "x": 1929,
"y": 108 "y": 108
}, },
"width": 182, "width": 182,
@ -367,7 +367,7 @@
"id": "j", "id": "j",
"type": "image", "type": "image",
"pos": { "pos": {
"x": 3864, "x": 2181,
"y": 63 "y": 63
}, },
"width": 150, "width": 150,
@ -417,7 +417,7 @@
"id": "k", "id": "k",
"type": "oval", "type": "oval",
"pos": { "pos": {
"x": 4271, "x": 2401,
"y": 97 "y": 97
}, },
"width": 150, "width": 150,
@ -456,7 +456,7 @@
"id": "l", "id": "l",
"type": "package", "type": "package",
"pos": { "pos": {
"x": 4678, "x": 2621,
"y": 98 "y": 98
}, },
"width": 150, "width": 150,
@ -495,7 +495,7 @@
"id": "m", "id": "m",
"type": "page", "type": "page",
"pos": { "pos": {
"x": 5085, "x": 2841,
"y": 108 "y": 108
}, },
"width": 175, "width": 175,
@ -534,7 +534,7 @@
"id": "n", "id": "n",
"type": "parallelogram", "type": "parallelogram",
"pos": { "pos": {
"x": 5517, "x": 3086,
"y": 92 "y": 92
}, },
"width": 183, "width": 183,
@ -573,7 +573,7 @@
"id": "o", "id": "o",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 5957, "x": 3339,
"y": 55 "y": 55
}, },
"width": 154, "width": 154,
@ -612,7 +612,7 @@
"id": "p", "id": "p",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 6368, "x": 3563,
"y": 108 "y": 108
}, },
"width": 161, "width": 161,
@ -651,7 +651,7 @@
"id": "q", "id": "q",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 6786, "x": 3794,
"y": 69 "y": 69
}, },
"width": 165, "width": 165,
@ -690,7 +690,7 @@
"id": "r", "id": "r",
"type": "step", "type": "step",
"pos": { "pos": {
"x": 7208, "x": 4029,
"y": 108 "y": 108
}, },
"width": 213, "width": 213,
@ -729,7 +729,7 @@
"id": "s", "id": "s",
"type": "stored_data", "type": "stored_data",
"pos": { "pos": {
"x": 7678, "x": 4312,
"y": 96 "y": 96
}, },
"width": 150, "width": 150,
@ -768,7 +768,7 @@
"id": "t", "id": "t",
"type": "sql_table", "type": "sql_table",
"pos": { "pos": {
"x": 8085, "x": 4532,
"y": 126 "y": 126
}, },
"width": 210, "width": 210,
@ -848,7 +848,7 @@
"y": 364 "y": 364
}, },
{ {
"x": 485, "x": 298,
"y": 364 "y": 364
} }
], ],
@ -883,11 +883,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 298,
"y": 494 "y": 494
}, },
{ {
"x": 937.5, "x": 563.5,
"y": 494 "y": 494
} }
], ],
@ -922,11 +922,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 937.5, "x": 563.5,
"y": 624 "y": 624
}, },
{ {
"x": 1404.5, "x": 843.5,
"y": 624 "y": 624
} }
], ],
@ -961,11 +961,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1404.5, "x": 843.5,
"y": 754 "y": 754
}, },
{ {
"x": 1849, "x": 1101,
"y": 754 "y": 754
} }
], ],
@ -1000,11 +1000,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1849, "x": 1101,
"y": 884 "y": 884
}, },
{ {
"x": 2279, "x": 1344,
"y": 884 "y": 884
} }
], ],
@ -1039,11 +1039,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2279, "x": 1344,
"y": 1014 "y": 1014
}, },
{ {
"x": 2686, "x": 1564,
"y": 1014 "y": 1014
} }
], ],
@ -1078,11 +1078,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2686, "x": 1564,
"y": 1144 "y": 1144
}, },
{ {
"x": 3093, "x": 1784,
"y": 1144 "y": 1144
} }
], ],
@ -1117,11 +1117,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093, "x": 1784,
"y": 1274 "y": 1274
}, },
{ {
"x": 3516, "x": 2020,
"y": 1274 "y": 1274
} }
], ],
@ -1156,11 +1156,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3516, "x": 2020,
"y": 1404 "y": 1404
}, },
{ {
"x": 3939, "x": 2256,
"y": 1404 "y": 1404
} }
], ],
@ -1195,11 +1195,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3939, "x": 2256,
"y": 1534 "y": 1534
}, },
{ {
"x": 4346, "x": 2476,
"y": 1534 "y": 1534
} }
], ],
@ -1234,11 +1234,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4346, "x": 2476,
"y": 1664 "y": 1664
}, },
{ {
"x": 4753, "x": 2696,
"y": 1664 "y": 1664
} }
], ],
@ -1273,11 +1273,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4753, "x": 2696,
"y": 1794 "y": 1794
}, },
{ {
"x": 5172.5, "x": 2928.5,
"y": 1794 "y": 1794
} }
], ],
@ -1312,11 +1312,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5172.5, "x": 2928.5,
"y": 1924 "y": 1924
}, },
{ {
"x": 5608.5, "x": 3177.5,
"y": 1924 "y": 1924
} }
], ],
@ -1351,11 +1351,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5608.5, "x": 3177.5,
"y": 2054 "y": 2054
}, },
{ {
"x": 6034, "x": 3416,
"y": 2054 "y": 2054
} }
], ],
@ -1390,11 +1390,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6034, "x": 3416,
"y": 2184 "y": 2184
}, },
{ {
"x": 6448.5, "x": 3643.5,
"y": 2184 "y": 2184
} }
], ],
@ -1429,11 +1429,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6448.5, "x": 3643.5,
"y": 2314 "y": 2314
}, },
{ {
"x": 6868.5, "x": 3876.5,
"y": 2314 "y": 2314
} }
], ],
@ -1468,11 +1468,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6868.5, "x": 3876.5,
"y": 2444 "y": 2444
}, },
{ {
"x": 7314.5, "x": 4135.5,
"y": 2444 "y": 2444
} }
], ],
@ -1507,11 +1507,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7314.5, "x": 4135.5,
"y": 2574 "y": 2574
}, },
{ {
"x": 7753, "x": 4387,
"y": 2574 "y": 2574
} }
], ],
@ -1546,11 +1546,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7753, "x": 4387,
"y": 2704 "y": 2704
}, },
{ {
"x": 8190, "x": 4637,
"y": 2704 "y": 2704
} }
], ],
@ -1624,11 +1624,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 298,
"y": 234 "y": 234
}, },
{ {
"x": 485, "x": 298,
"y": 2834 "y": 2834
} }
], ],
@ -1663,11 +1663,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 937.5, "x": 563.5,
"y": 234 "y": 234
}, },
{ {
"x": 937.5, "x": 563.5,
"y": 2834 "y": 2834
} }
], ],
@ -1702,11 +1702,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1404.5, "x": 843.5,
"y": 234 "y": 234
}, },
{ {
"x": 1404.5, "x": 843.5,
"y": 2834 "y": 2834
} }
], ],
@ -1741,11 +1741,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1849, "x": 1101,
"y": 234 "y": 234
}, },
{ {
"x": 1849, "x": 1101,
"y": 2834 "y": 2834
} }
], ],
@ -1780,11 +1780,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2279, "x": 1344,
"y": 234 "y": 234
}, },
{ {
"x": 2279, "x": 1344,
"y": 2834 "y": 2834
} }
], ],
@ -1819,11 +1819,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2686, "x": 1564,
"y": 234 "y": 234
}, },
{ {
"x": 2686, "x": 1564,
"y": 2834 "y": 2834
} }
], ],
@ -1858,11 +1858,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3093, "x": 1784,
"y": 234 "y": 234
}, },
{ {
"x": 3093, "x": 1784,
"y": 2834 "y": 2834
} }
], ],
@ -1897,11 +1897,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3516, "x": 2020,
"y": 234 "y": 234
}, },
{ {
"x": 3516, "x": 2020,
"y": 2834 "y": 2834
} }
], ],
@ -1936,11 +1936,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3939, "x": 2256,
"y": 239 "y": 239
}, },
{ {
"x": 3939, "x": 2256,
"y": 2834 "y": 2834
} }
], ],
@ -1975,11 +1975,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4346, "x": 2476,
"y": 234 "y": 234
}, },
{ {
"x": 4346, "x": 2476,
"y": 2834 "y": 2834
} }
], ],
@ -2014,11 +2014,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 4753, "x": 2696,
"y": 234 "y": 234
}, },
{ {
"x": 4753, "x": 2696,
"y": 2834 "y": 2834
} }
], ],
@ -2053,11 +2053,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5172.5, "x": 2928.5,
"y": 234 "y": 234
}, },
{ {
"x": 5172.5, "x": 2928.5,
"y": 2834 "y": 2834
} }
], ],
@ -2092,11 +2092,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 5608.5, "x": 3177.5,
"y": 234 "y": 234
}, },
{ {
"x": 5608.5, "x": 3177.5,
"y": 2834 "y": 2834
} }
], ],
@ -2131,11 +2131,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6034, "x": 3416,
"y": 239 "y": 239
}, },
{ {
"x": 6034, "x": 3416,
"y": 2834 "y": 2834
} }
], ],
@ -2170,11 +2170,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6448.5, "x": 3643.5,
"y": 234 "y": 234
}, },
{ {
"x": 6448.5, "x": 3643.5,
"y": 2834 "y": 2834
} }
], ],
@ -2209,11 +2209,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 6868.5, "x": 3876.5,
"y": 234 "y": 234
}, },
{ {
"x": 6868.5, "x": 3876.5,
"y": 2834 "y": 2834
} }
], ],
@ -2248,11 +2248,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7314.5, "x": 4135.5,
"y": 234 "y": 234
}, },
{ {
"x": 7314.5, "x": 4135.5,
"y": 2834 "y": 2834
} }
], ],
@ -2287,11 +2287,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 7753, "x": 4387,
"y": 234 "y": 234
}, },
{ {
"x": 7753, "x": 4387,
"y": 2834 "y": 2834
} }
], ],
@ -2326,11 +2326,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 8190, "x": 4637,
"y": 234 "y": 234
}, },
{ {
"x": 8190, "x": 4637,
"y": 2834 "y": 2834
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 992 KiB

After

Width:  |  Height:  |  Size: 992 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 800, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 1200, "x": 660,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -164,7 +164,7 @@
"x": 25, "x": 25,
"y": 439 "y": 439
}, },
"width": 500, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -199,10 +199,10 @@
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 569 "y": 569
}, },
"width": 500, "width": 320,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -237,10 +237,10 @@
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 829 "y": 829
}, },
"width": 500, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -275,10 +275,10 @@
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 1349 "y": 1349
}, },
"width": 633, "width": 453,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -313,7 +313,7 @@
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 742, "x": 382,
"y": 1519 "y": 1519
}, },
"width": 266, "width": 266,
@ -352,7 +352,7 @@
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 1141, "x": 601,
"y": 1865 "y": 1865
}, },
"width": 268, "width": 268,
@ -390,7 +390,7 @@
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1191, "x": 651,
"y": 1905 "y": 1905
}, },
"width": 168, "width": 168,
@ -429,7 +429,7 @@
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 983 "y": 983
}, },
"width": 12, "width": 12,
@ -467,7 +467,7 @@
"id": "c.t1", "id": "c.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 869, "x": 509,
"y": 983 "y": 983
}, },
"width": 12, "width": 12,
@ -505,7 +505,7 @@
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 465, "x": 285,
"y": 1113 "y": 1113
}, },
"width": 20, "width": 20,
@ -571,7 +571,7 @@
"y": 349 "y": 349
}, },
{ {
"x": 475, "x": 295,
"y": 349 "y": 349
} }
], ],
@ -610,7 +610,7 @@
"y": 479 "y": 479
}, },
{ {
"x": 475, "x": 295,
"y": 479 "y": 479
} }
], ],
@ -645,11 +645,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 609 "y": 609
}, },
{ {
"x": 875, "x": 515,
"y": 609 "y": 609
} }
], ],
@ -684,11 +684,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 739 "y": 739
}, },
{ {
"x": 475, "x": 295,
"y": 739 "y": 739
} }
], ],
@ -723,11 +723,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 869 "y": 869
}, },
{ {
"x": 475, "x": 295,
"y": 869 "y": 869
} }
], ],
@ -762,11 +762,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 481, "x": 301,
"y": 999 "y": 999
}, },
{ {
"x": 869, "x": 509,
"y": 999 "y": 999
} }
], ],
@ -801,11 +801,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 305,
"y": 1129 "y": 1129
}, },
{ {
"x": 869, "x": 509,
"y": 1129 "y": 1129
} }
], ],
@ -840,11 +840,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 869, "x": 509,
"y": 1259 "y": 1259
}, },
{ {
"x": 481, "x": 301,
"y": 1259 "y": 1259
} }
], ],
@ -879,11 +879,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 1389 "y": 1389
}, },
{ {
"x": 875, "x": 515,
"y": 1389 "y": 1389
} }
], ],
@ -918,11 +918,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 1775 "y": 1775
}, },
{ {
"x": 475, "x": 295,
"y": 1775 "y": 1775
} }
], ],
@ -996,11 +996,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 2161 "y": 2161
} }
], ],
@ -1035,11 +1035,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 219 "y": 219
}, },
{ {
"x": 875, "x": 515,
"y": 2161 "y": 2161
} }
], ],
@ -1074,11 +1074,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1275, "x": 735,
"y": 219 "y": 219
}, },
{ {
"x": 1275, "x": 735,
"y": 2161 "y": 2161
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 474 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 800, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 1200, "x": 660,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -164,7 +164,7 @@
"x": 25, "x": 25,
"y": 439 "y": 439
}, },
"width": 500, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -199,10 +199,10 @@
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 569 "y": 569
}, },
"width": 500, "width": 320,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -237,10 +237,10 @@
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 829 "y": 829
}, },
"width": 500, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -275,10 +275,10 @@
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 425, "x": 245,
"y": 1349 "y": 1349
}, },
"width": 633, "width": 453,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -313,7 +313,7 @@
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 742, "x": 382,
"y": 1519 "y": 1519
}, },
"width": 266, "width": 266,
@ -352,7 +352,7 @@
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 1141, "x": 601,
"y": 1865 "y": 1865
}, },
"width": 268, "width": 268,
@ -390,7 +390,7 @@
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1191, "x": 651,
"y": 1905 "y": 1905
}, },
"width": 168, "width": 168,
@ -429,7 +429,7 @@
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 983 "y": 983
}, },
"width": 12, "width": 12,
@ -467,7 +467,7 @@
"id": "c.t1", "id": "c.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 869, "x": 509,
"y": 983 "y": 983
}, },
"width": 12, "width": 12,
@ -505,7 +505,7 @@
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 465, "x": 285,
"y": 1113 "y": 1113
}, },
"width": 20, "width": 20,
@ -571,7 +571,7 @@
"y": 349 "y": 349
}, },
{ {
"x": 475, "x": 295,
"y": 349 "y": 349
} }
], ],
@ -610,7 +610,7 @@
"y": 479 "y": 479
}, },
{ {
"x": 475, "x": 295,
"y": 479 "y": 479
} }
], ],
@ -645,11 +645,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 609 "y": 609
}, },
{ {
"x": 875, "x": 515,
"y": 609 "y": 609
} }
], ],
@ -684,11 +684,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 739 "y": 739
}, },
{ {
"x": 475, "x": 295,
"y": 739 "y": 739
} }
], ],
@ -723,11 +723,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 869 "y": 869
}, },
{ {
"x": 475, "x": 295,
"y": 869 "y": 869
} }
], ],
@ -762,11 +762,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 481, "x": 301,
"y": 999 "y": 999
}, },
{ {
"x": 869, "x": 509,
"y": 999 "y": 999
} }
], ],
@ -801,11 +801,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 305,
"y": 1129 "y": 1129
}, },
{ {
"x": 869, "x": 509,
"y": 1129 "y": 1129
} }
], ],
@ -840,11 +840,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 869, "x": 509,
"y": 1259 "y": 1259
}, },
{ {
"x": 481, "x": 301,
"y": 1259 "y": 1259
} }
], ],
@ -879,11 +879,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 1389 "y": 1389
}, },
{ {
"x": 875, "x": 515,
"y": 1389 "y": 1389
} }
], ],
@ -918,11 +918,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 1775 "y": 1775
}, },
{ {
"x": 475, "x": 295,
"y": 1775 "y": 1775
} }
], ],
@ -996,11 +996,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 2161 "y": 2161
} }
], ],
@ -1035,11 +1035,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 219 "y": 219
}, },
{ {
"x": 875, "x": 515,
"y": 2161 "y": 2161
} }
], ],
@ -1074,11 +1074,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1275, "x": 735,
"y": 219 "y": 219
}, },
{ {
"x": 1275, "x": 735,
"y": 2161 "y": 2161
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 474 KiB

After

Width:  |  Height:  |  Size: 474 KiB

View file

@ -82,7 +82,7 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 64 "y": 64
}, },
"width": 200, "width": 200,
@ -121,7 +121,7 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 304 "y": 304
}, },
"width": 12, "width": 12,
@ -159,7 +159,7 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 850, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -198,7 +198,7 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 418 "y": 418
}, },
"width": 12, "width": 12,
@ -236,7 +236,7 @@
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 915, "x": 555,
"y": 434 "y": 434
}, },
"width": 20, "width": 20,
@ -274,7 +274,7 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1250, "x": 710,
"y": 64 "y": 64
}, },
"width": 186, "width": 186,
@ -313,7 +313,7 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1337, "x": 797,
"y": 532 "y": 532
}, },
"width": 12, "width": 12,
@ -351,7 +351,7 @@
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1333, "x": 793,
"y": 548 "y": 548
}, },
"width": 20, "width": 20,
@ -389,7 +389,7 @@
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1329, "x": 789,
"y": 564 "y": 564
}, },
"width": 28, "width": 28,
@ -427,7 +427,7 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1686, "x": 966,
"y": 64 "y": 64
}, },
"width": 160, "width": 160,
@ -466,7 +466,7 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1760, "x": 1040,
"y": 646 "y": 646
}, },
"width": 12, "width": 12,
@ -504,7 +504,7 @@
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1756, "x": 1036,
"y": 662 "y": 662
}, },
"width": 20, "width": 20,
@ -542,7 +542,7 @@
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1752, "x": 1032,
"y": 678 "y": 678
}, },
"width": 28, "width": 28,
@ -580,7 +580,7 @@
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1748, "x": 1028,
"y": 694 "y": 694
}, },
"width": 36, "width": 36,
@ -618,7 +618,7 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2096, "x": 1196,
"y": 64 "y": 64
}, },
"width": 197, "width": 197,
@ -657,7 +657,7 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 890 "y": 890
}, },
"width": 12, "width": 12,
@ -695,7 +695,7 @@
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2184, "x": 1284,
"y": 906 "y": 906
}, },
"width": 20, "width": 20,
@ -733,7 +733,7 @@
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2180, "x": 1280,
"y": 922 "y": 922
}, },
"width": 28, "width": 28,
@ -771,7 +771,7 @@
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2176, "x": 1276,
"y": 938 "y": 938
}, },
"width": 36, "width": 36,
@ -809,7 +809,7 @@
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2172, "x": 1272,
"y": 954 "y": 954
}, },
"width": 44, "width": 44,
@ -847,7 +847,7 @@
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 1344 "y": 1344
}, },
"width": 12, "width": 12,
@ -913,7 +913,7 @@
"y": 320 "y": 320
}, },
{ {
"x": 494, "x": 314,
"y": 320 "y": 320
} }
], ],
@ -948,11 +948,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 506, "x": 326,
"y": 450 "y": 450
}, },
{ {
"x": 915, "x": 555,
"y": 450 "y": 450
} }
], ],
@ -987,11 +987,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 935, "x": 575,
"y": 580 "y": 580
}, },
{ {
"x": 1329, "x": 789,
"y": 580 "y": 580
} }
], ],
@ -1026,11 +1026,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1357, "x": 817,
"y": 710 "y": 710
}, },
{ {
"x": 1748, "x": 1028,
"y": 710 "y": 710
} }
], ],
@ -1065,11 +1065,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 931, "x": 571,
"y": 840 "y": 840
}, },
{ {
"x": 1333, "x": 793,
"y": 840 "y": 840
} }
], ],
@ -1104,11 +1104,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1784, "x": 1064,
"y": 970 "y": 970
}, },
{ {
"x": 2172.5, "x": 1272.5,
"y": 970 "y": 970
} }
], ],
@ -1147,7 +1147,7 @@
"y": 1100 "y": 1100
}, },
{ {
"x": 919, "x": 559,
"y": 1100 "y": 1100
} }
], ],
@ -1182,7 +1182,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2172.5, "x": 1272.5,
"y": 1230 "y": 1230
}, },
{ {
@ -1225,7 +1225,7 @@
"y": 1360 "y": 1360
}, },
{ {
"x": 494, "x": 314,
"y": 1360 "y": 1360
} }
], ],
@ -1299,11 +1299,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 190 "y": 190
}, },
{ {
"x": 500, "x": 320,
"y": 1490 "y": 1490
} }
], ],
@ -1338,11 +1338,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 925, "x": 565,
"y": 190 "y": 190
}, },
{ {
"x": 925, "x": 565,
"y": 1490 "y": 1490
} }
], ],
@ -1377,11 +1377,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1343, "x": 803,
"y": 190 "y": 190
}, },
{ {
"x": 1343, "x": 803,
"y": 1490 "y": 1490
} }
], ],
@ -1416,11 +1416,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1766, "x": 1046,
"y": 190 "y": 190
}, },
{ {
"x": 1766, "x": 1046,
"y": 1490 "y": 1490
} }
], ],
@ -1455,11 +1455,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2194.5, "x": 1294.5,
"y": 190 "y": 190
}, },
{ {
"x": 2194.5, "x": 1294.5,
"y": 1490 "y": 1490
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -82,7 +82,7 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 64 "y": 64
}, },
"width": 200, "width": 200,
@ -121,7 +121,7 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 304 "y": 304
}, },
"width": 12, "width": 12,
@ -159,7 +159,7 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 850, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -198,7 +198,7 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 418 "y": 418
}, },
"width": 12, "width": 12,
@ -236,7 +236,7 @@
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 915, "x": 555,
"y": 434 "y": 434
}, },
"width": 20, "width": 20,
@ -274,7 +274,7 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1250, "x": 710,
"y": 64 "y": 64
}, },
"width": 186, "width": 186,
@ -313,7 +313,7 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1337, "x": 797,
"y": 532 "y": 532
}, },
"width": 12, "width": 12,
@ -351,7 +351,7 @@
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1333, "x": 793,
"y": 548 "y": 548
}, },
"width": 20, "width": 20,
@ -389,7 +389,7 @@
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1329, "x": 789,
"y": 564 "y": 564
}, },
"width": 28, "width": 28,
@ -427,7 +427,7 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1686, "x": 966,
"y": 64 "y": 64
}, },
"width": 160, "width": 160,
@ -466,7 +466,7 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1760, "x": 1040,
"y": 646 "y": 646
}, },
"width": 12, "width": 12,
@ -504,7 +504,7 @@
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1756, "x": 1036,
"y": 662 "y": 662
}, },
"width": 20, "width": 20,
@ -542,7 +542,7 @@
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1752, "x": 1032,
"y": 678 "y": 678
}, },
"width": 28, "width": 28,
@ -580,7 +580,7 @@
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1748, "x": 1028,
"y": 694 "y": 694
}, },
"width": 36, "width": 36,
@ -618,7 +618,7 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2096, "x": 1196,
"y": 64 "y": 64
}, },
"width": 197, "width": 197,
@ -657,7 +657,7 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 890 "y": 890
}, },
"width": 12, "width": 12,
@ -695,7 +695,7 @@
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2184, "x": 1284,
"y": 906 "y": 906
}, },
"width": 20, "width": 20,
@ -733,7 +733,7 @@
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2180, "x": 1280,
"y": 922 "y": 922
}, },
"width": 28, "width": 28,
@ -771,7 +771,7 @@
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2176, "x": 1276,
"y": 938 "y": 938
}, },
"width": 36, "width": 36,
@ -809,7 +809,7 @@
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2172, "x": 1272,
"y": 954 "y": 954
}, },
"width": 44, "width": 44,
@ -847,7 +847,7 @@
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 1344 "y": 1344
}, },
"width": 12, "width": 12,
@ -913,7 +913,7 @@
"y": 320 "y": 320
}, },
{ {
"x": 494, "x": 314,
"y": 320 "y": 320
} }
], ],
@ -948,11 +948,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 506, "x": 326,
"y": 450 "y": 450
}, },
{ {
"x": 915, "x": 555,
"y": 450 "y": 450
} }
], ],
@ -987,11 +987,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 935, "x": 575,
"y": 580 "y": 580
}, },
{ {
"x": 1329, "x": 789,
"y": 580 "y": 580
} }
], ],
@ -1026,11 +1026,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1357, "x": 817,
"y": 710 "y": 710
}, },
{ {
"x": 1748, "x": 1028,
"y": 710 "y": 710
} }
], ],
@ -1065,11 +1065,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 931, "x": 571,
"y": 840 "y": 840
}, },
{ {
"x": 1333, "x": 793,
"y": 840 "y": 840
} }
], ],
@ -1104,11 +1104,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1784, "x": 1064,
"y": 970 "y": 970
}, },
{ {
"x": 2172.5, "x": 1272.5,
"y": 970 "y": 970
} }
], ],
@ -1147,7 +1147,7 @@
"y": 1100 "y": 1100
}, },
{ {
"x": 919, "x": 559,
"y": 1100 "y": 1100
} }
], ],
@ -1182,7 +1182,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2172.5, "x": 1272.5,
"y": 1230 "y": 1230
}, },
{ {
@ -1225,7 +1225,7 @@
"y": 1360 "y": 1360
}, },
{ {
"x": 494, "x": 314,
"y": 1360 "y": 1360
} }
], ],
@ -1299,11 +1299,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 190 "y": 190
}, },
{ {
"x": 500, "x": 320,
"y": 1490 "y": 1490
} }
], ],
@ -1338,11 +1338,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 925, "x": 565,
"y": 190 "y": 190
}, },
{ {
"x": 925, "x": 565,
"y": 1490 "y": 1490
} }
], ],
@ -1377,11 +1377,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1343, "x": 803,
"y": 190 "y": 190
}, },
{ {
"x": 1343, "x": 803,
"y": 1490 "y": 1490
} }
], ],
@ -1416,11 +1416,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1766, "x": 1046,
"y": 190 "y": 190
}, },
{ {
"x": 1766, "x": 1046,
"y": 1490 "y": 1490
} }
], ],
@ -1455,11 +1455,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2194.5, "x": 1294.5,
"y": 190 "y": 190
}, },
{ {
"x": 2194.5, "x": 1294.5,
"y": 1490 "y": 1490
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 800, "x": 440,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 1200, "x": 660,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -239,7 +239,7 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"", "id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 278, "x": 98,
"y": 1121 "y": 1121
}, },
"width": 393, "width": 393,
@ -278,7 +278,7 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier", "id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1004, "x": 464,
"y": 1523 "y": 1523
}, },
"width": 541, "width": 541,
@ -345,7 +345,7 @@
"y": 349 "y": 349
}, },
{ {
"x": 475, "x": 295,
"y": 349 "y": 349
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 991 "y": 991
}, },
{ {
"x": 875, "x": 515,
"y": 991 "y": 991
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 1393 "y": 1393
}, },
{ {
"x": 475, "x": 295,
"y": 1393 "y": 1393
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 1779 "y": 1779
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 219 "y": 219
}, },
{ {
"x": 875, "x": 515,
"y": 1779 "y": 1779
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1275, "x": 735,
"y": 219 "y": 219
}, },
{ {
"x": 1275, "x": 735,
"y": 1779 "y": 1779
} }
], ],

View file

@ -2,7 +2,7 @@
<svg <svg
style="background: white;" style="background: white;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css"> width="1255" height="1929" viewBox="-150 -50 1255 1929"><style type="text/css">
<![CDATA[ <![CDATA[
.shape { .shape {
shape-rendering: geometricPrecision; shape-rendering: geometricPrecision;
@ -14,9 +14,9 @@ width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
} }
]]> ]]>
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="400" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="475.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="800" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="875.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="1200" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1275.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 475.000000 221.000000 L 475.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 875.000000 221.000000 L 875.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 1275.000000 221.000000 L 1275.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b.&#34;Some one who believes imaginary things\n appear right before your i&#39;s.&#34;"><g class="shape" ><rect x="278" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="474.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="474.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="474.500000" dy="21.000000"> appear right before your i&#39;s.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="1004" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1274.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -&gt; b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 471.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -&gt; c)[0]"><path d="M 477.000000 991.000000 L 871.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -&gt; b)[0]"><path d="M 873.000000 1393.000000 L 479.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="675.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1795" height="1929"> </style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="220" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="295.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="515.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="735.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 295.000000 221.000000 L 295.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 515.000000 221.000000 L 515.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 735.000000 221.000000 L 735.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b.&#34;Some one who believes imaginary things\n appear right before your i&#39;s.&#34;"><g class="shape" ><rect x="98" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="294.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="294.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="294.500000" dy="21.000000"> appear right before your i&#39;s.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="464" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="734.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -&gt; b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 291.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -&gt; c)[0]"><path d="M 297.000000 991.000000 L 511.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -&gt; b)[0]"><path d="M 513.000000 1393.000000 L 299.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="405.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1255" height="1929">
<rect x="0" y="0" width="1795" height="1929" fill="white"></rect> <rect x="0" y="0" width="1255" height="1929" fill="white"></rect>
<rect x="659.000000" y="1383.000000" width="33" height="21" fill="black"></rect> <rect x="389.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
</mask><style type="text/css"><![CDATA[ </mask><style type="text/css"><![CDATA[
.text-bold { .text-bold {
font-family: "font-bold"; font-family: "font-bold";

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 800, "x": 440,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 1200, "x": 660,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -239,7 +239,7 @@
"id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"", "id": "b.\"Some one who believes imaginary things\\n appear right before your i's.\"",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 278, "x": 98,
"y": 1121 "y": 1121
}, },
"width": 393, "width": 393,
@ -278,7 +278,7 @@
"id": "d.The earth is like a tiny grain of sand, only much, much heavier", "id": "d.The earth is like a tiny grain of sand, only much, much heavier",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1004, "x": 464,
"y": 1523 "y": 1523
}, },
"width": 541, "width": 541,
@ -345,7 +345,7 @@
"y": 349 "y": 349
}, },
{ {
"x": 475, "x": 295,
"y": 349 "y": 349
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 991 "y": 991
}, },
{ {
"x": 875, "x": 515,
"y": 991 "y": 991
} }
], ],
@ -419,11 +419,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 1393 "y": 1393
}, },
{ {
"x": 475, "x": 295,
"y": 1393 "y": 1393
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 1779 "y": 1779
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 875, "x": 515,
"y": 219 "y": 219
}, },
{ {
"x": 875, "x": 515,
"y": 1779 "y": 1779
} }
], ],
@ -575,11 +575,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1275, "x": 735,
"y": 219 "y": 219
}, },
{ {
"x": 1275, "x": 735,
"y": 1779 "y": 1779
} }
], ],

View file

@ -2,7 +2,7 @@
<svg <svg
style="background: white;" style="background: white;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css"> width="1255" height="1929" viewBox="-150 -50 1255 1929"><style type="text/css">
<![CDATA[ <![CDATA[
.shape { .shape {
shape-rendering: geometricPrecision; shape-rendering: geometricPrecision;
@ -14,9 +14,9 @@ width="1795" height="1929" viewBox="-150 -50 1795 1929"><style type="text/css">
} }
]]> ]]>
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="400" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="475.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="800" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="875.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="1200" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1275.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 475.000000 221.000000 L 475.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 875.000000 221.000000 L 875.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 1275.000000 221.000000 L 1275.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b.&#34;Some one who believes imaginary things\n appear right before your i&#39;s.&#34;"><g class="shape" ><rect x="278" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="474.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="474.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="474.500000" dy="21.000000"> appear right before your i&#39;s.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="1004" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="1274.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -&gt; b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 471.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -&gt; c)[0]"><path d="M 477.000000 991.000000 L 871.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -&gt; b)[0]"><path d="M 873.000000 1393.000000 L 479.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="675.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1795" height="1929"> </style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="137.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="220" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="295.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="515.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="52" width="150" height="167" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="735.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 221.000000 L 75.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(b -- )[0]"><path d="M 295.000000 221.000000 L 295.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(c -- )[0]"><path d="M 515.000000 221.000000 L 515.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="(d -- )[0]"><path d="M 735.000000 221.000000 L 735.000000 1778.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;stroke-dasharray:12.000000,11.838767;" mask="url(#labels)"/></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="479" width="190" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="545.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">explanation</text></g><g id="a.another explanation"><g class="shape" ><rect x="-50" y="735" width="250" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="801.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">another explanation</text></g><g id="b.&#34;Some one who believes imaginary things\n appear right before your i&#39;s.&#34;"><g class="shape" ><rect x="98" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="294.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="294.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="294.500000" dy="21.000000"> appear right before your i&#39;s.</tspan></text></g><g id="d.The earth is like a tiny grain of sand, only much, much heavier"><g class="shape" ><rect x="464" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="734.500000" y="1589.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">The earth is like a tiny grain of sand, only much, much heavier</text></g><g id="(a -&gt; b)[0]"><marker id="mk-3990223579" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon class="connection" fill="#0D32B2" stroke-width="2" points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" /> </marker><path d="M 77.000000 349.000000 L 291.000000 349.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(b -&gt; c)[0]"><path d="M 297.000000 991.000000 L 511.000000 991.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/></g><g id="(c -&gt; b)[0]"><path d="M 513.000000 1393.000000 L 299.000000 1393.000000" class="connection" style="fill:none;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" marker-end="url(#mk-3990223579)" mask="url(#labels)"/><text class="text-italic" x="405.500000" y="1399.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1255" height="1929">
<rect x="0" y="0" width="1795" height="1929" fill="white"></rect> <rect x="0" y="0" width="1255" height="1929" fill="white"></rect>
<rect x="659.000000" y="1383.000000" width="33" height="21" fill="black"></rect> <rect x="389.000000" y="1383.000000" width="33" height="21" fill="black"></rect>
</mask><style type="text/css"><![CDATA[ </mask><style type="text/css"><![CDATA[
.text-bold { .text-bold {
font-family: "font-bold"; font-family: "font-bold";

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -8,7 +8,7 @@
"x": 0, "x": 0,
"y": 0 "y": 0
}, },
"width": 3633, "width": 2193,
"height": 2311, "height": 2311,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -83,7 +83,7 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 105 "y": 105
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 800, "x": 440,
"y": 109 "y": 109
}, },
"width": 182, "width": 182,
@ -161,7 +161,7 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1232, "x": 692,
"y": 109 "y": 109
}, },
"width": 165, "width": 165,
@ -200,7 +200,7 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 1647, "x": 927,
"y": 109 "y": 109
}, },
"width": 180, "width": 180,
@ -239,7 +239,7 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 2077, "x": 1177,
"y": 109 "y": 109
}, },
"width": 176, "width": 176,
@ -278,7 +278,7 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 2503, "x": 1423,
"y": 109 "y": 109
}, },
"width": 186, "width": 186,
@ -317,7 +317,7 @@
"id": "How this is rendered.d2compiler.measurements also take place", "id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 732, "x": 372,
"y": 755 "y": 755
}, },
"width": 318, "width": 318,
@ -356,7 +356,7 @@
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1304, "x": 764,
"y": 1125 "y": 1125
}, },
"width": 20, "width": 20,
@ -394,7 +394,7 @@
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 2939, "x": 1679,
"y": 109 "y": 109
}, },
"width": 235, "width": 235,
@ -433,7 +433,7 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 3424, "x": 1984,
"y": 109 "y": 109
}, },
"width": 209, "width": 209,
@ -472,7 +472,7 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1727, "x": 1007,
"y": 1905 "y": 1905
}, },
"width": 20, "width": 20,
@ -538,7 +538,7 @@
"y": 365 "y": 365
}, },
{ {
"x": 475, "x": 295,
"y": 365 "y": 365
} }
], ],
@ -573,7 +573,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 495 "y": 495
}, },
{ {
@ -616,7 +616,7 @@
"y": 625 "y": 625
}, },
{ {
"x": 891, "x": 531,
"y": 625 "y": 625
} }
], ],
@ -651,7 +651,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 891, "x": 531,
"y": 1011 "y": 1011
}, },
{ {
@ -694,7 +694,7 @@
"y": 1141 "y": 1141
}, },
{ {
"x": 1304.5, "x": 764.5,
"y": 1141 "y": 1141
} }
], ],
@ -729,11 +729,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1324.5, "x": 784.5,
"y": 1271 "y": 1271
}, },
{ {
"x": 3056.5, "x": 1796.5,
"y": 1271 "y": 1271
} }
], ],
@ -768,11 +768,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1324.5, "x": 784.5,
"y": 1401 "y": 1401
}, },
{ {
"x": 3528.5, "x": 2088.5,
"y": 1401 "y": 1401
} }
], ],
@ -807,11 +807,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1324.5, "x": 784.5,
"y": 1531 "y": 1531
}, },
{ {
"x": 3056.5, "x": 1796.5,
"y": 1531 "y": 1531
} }
], ],
@ -846,7 +846,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1314.5, "x": 774.5,
"y": 1661 "y": 1661
}, },
{ {
@ -889,7 +889,7 @@
"y": 1791 "y": 1791
}, },
{ {
"x": 1737, "x": 1017,
"y": 1791 "y": 1791
} }
], ],
@ -924,11 +924,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1747, "x": 1027,
"y": 1921 "y": 1921
}, },
{ {
"x": 2165, "x": 1265,
"y": 1921 "y": 1921
} }
], ],
@ -963,11 +963,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1747, "x": 1027,
"y": 2051 "y": 2051
}, },
{ {
"x": 2596, "x": 1516,
"y": 2051 "y": 2051
} }
], ],
@ -1002,7 +1002,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1727, "x": 1007,
"y": 2181 "y": 2181
}, },
{ {
@ -1080,11 +1080,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 235 "y": 235
}, },
{ {
"x": 475, "x": 295,
"y": 2311 "y": 2311
} }
], ],
@ -1119,11 +1119,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 891, "x": 531,
"y": 235 "y": 235
}, },
{ {
"x": 891, "x": 531,
"y": 2311 "y": 2311
} }
], ],
@ -1158,11 +1158,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1314.5, "x": 774.5,
"y": 235 "y": 235
}, },
{ {
"x": 1314.5, "x": 774.5,
"y": 2311 "y": 2311
} }
], ],
@ -1197,11 +1197,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1737, "x": 1017,
"y": 235 "y": 235
}, },
{ {
"x": 1737, "x": 1017,
"y": 2311 "y": 2311
} }
], ],
@ -1236,11 +1236,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2165, "x": 1265,
"y": 235 "y": 235
}, },
{ {
"x": 2165, "x": 1265,
"y": 2311 "y": 2311
} }
], ],
@ -1275,11 +1275,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2596, "x": 1516,
"y": 235 "y": 235
}, },
{ {
"x": 2596, "x": 1516,
"y": 2311 "y": 2311
} }
], ],
@ -1314,11 +1314,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3056.5, "x": 1796.5,
"y": 235 "y": 235
}, },
{ {
"x": 3056.5, "x": 1796.5,
"y": 2311 "y": 2311
} }
], ],
@ -1353,11 +1353,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3528.5, "x": 2088.5,
"y": 235 "y": 235
}, },
{ {
"x": 3528.5, "x": 2088.5,
"y": 2311 "y": 2311
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 479 KiB

After

Width:  |  Height:  |  Size: 479 KiB

View file

@ -8,7 +8,7 @@
"x": 12, "x": 12,
"y": 12 "y": 12
}, },
"width": 3633, "width": 2193,
"height": 2311, "height": 2311,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -83,7 +83,7 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 412, "x": 232,
"y": 117 "y": 117
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 812, "x": 452,
"y": 121 "y": 121
}, },
"width": 182, "width": 182,
@ -161,7 +161,7 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1244, "x": 704,
"y": 121 "y": 121
}, },
"width": 165, "width": 165,
@ -200,7 +200,7 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 1659, "x": 939,
"y": 121 "y": 121
}, },
"width": 180, "width": 180,
@ -239,7 +239,7 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 2089, "x": 1189,
"y": 121 "y": 121
}, },
"width": 176, "width": 176,
@ -278,7 +278,7 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 2515, "x": 1435,
"y": 121 "y": 121
}, },
"width": 186, "width": 186,
@ -317,7 +317,7 @@
"id": "How this is rendered.d2compiler.measurements also take place", "id": "How this is rendered.d2compiler.measurements also take place",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 732, "x": 372,
"y": 755 "y": 755
}, },
"width": 318, "width": 318,
@ -356,7 +356,7 @@
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1316, "x": 776,
"y": 1137 "y": 1137
}, },
"width": 20, "width": 20,
@ -394,7 +394,7 @@
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 2951, "x": 1691,
"y": 121 "y": 121
}, },
"width": 235, "width": 235,
@ -433,7 +433,7 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 3436, "x": 1996,
"y": 121 "y": 121
}, },
"width": 209, "width": 209,
@ -472,7 +472,7 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1739, "x": 1019,
"y": 1917 "y": 1917
}, },
"width": 20, "width": 20,
@ -538,7 +538,7 @@
"y": 377 "y": 377
}, },
{ {
"x": 487, "x": 307,
"y": 377 "y": 377
} }
], ],
@ -573,7 +573,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 487, "x": 307,
"y": 507 "y": 507
}, },
{ {
@ -616,7 +616,7 @@
"y": 637 "y": 637
}, },
{ {
"x": 903, "x": 543,
"y": 637 "y": 637
} }
], ],
@ -651,7 +651,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 903, "x": 543,
"y": 1023 "y": 1023
}, },
{ {
@ -694,7 +694,7 @@
"y": 1153 "y": 1153
}, },
{ {
"x": 1316.5, "x": 776.5,
"y": 1153 "y": 1153
} }
], ],
@ -729,11 +729,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1336.5, "x": 796.5,
"y": 1283 "y": 1283
}, },
{ {
"x": 3068.5, "x": 1808.5,
"y": 1283 "y": 1283
} }
], ],
@ -768,11 +768,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1336.5, "x": 796.5,
"y": 1413 "y": 1413
}, },
{ {
"x": 3540.5, "x": 2100.5,
"y": 1413 "y": 1413
} }
], ],
@ -807,11 +807,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1336.5, "x": 796.5,
"y": 1543 "y": 1543
}, },
{ {
"x": 3068.5, "x": 1808.5,
"y": 1543 "y": 1543
} }
], ],
@ -846,7 +846,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1326.5, "x": 786.5,
"y": 1673 "y": 1673
}, },
{ {
@ -889,7 +889,7 @@
"y": 1803 "y": 1803
}, },
{ {
"x": 1749, "x": 1029,
"y": 1803 "y": 1803
} }
], ],
@ -924,11 +924,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1759, "x": 1039,
"y": 1933 "y": 1933
}, },
{ {
"x": 2177, "x": 1277,
"y": 1933 "y": 1933
} }
], ],
@ -963,11 +963,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1759, "x": 1039,
"y": 2063 "y": 2063
}, },
{ {
"x": 2608, "x": 1528,
"y": 2063 "y": 2063
} }
], ],
@ -1002,7 +1002,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1739, "x": 1019,
"y": 2193 "y": 2193
}, },
{ {
@ -1080,11 +1080,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 487, "x": 307,
"y": 247 "y": 247
}, },
{ {
"x": 487, "x": 307,
"y": 2323 "y": 2323
} }
], ],
@ -1119,11 +1119,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 903, "x": 543,
"y": 247 "y": 247
}, },
{ {
"x": 903, "x": 543,
"y": 2323 "y": 2323
} }
], ],
@ -1158,11 +1158,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1326.5, "x": 786.5,
"y": 247 "y": 247
}, },
{ {
"x": 1326.5, "x": 786.5,
"y": 2323 "y": 2323
} }
], ],
@ -1197,11 +1197,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1749, "x": 1029,
"y": 247 "y": 247
}, },
{ {
"x": 1749, "x": 1029,
"y": 2323 "y": 2323
} }
], ],
@ -1236,11 +1236,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2177, "x": 1277,
"y": 247 "y": 247
}, },
{ {
"x": 2177, "x": 1277,
"y": 2323 "y": 2323
} }
], ],
@ -1275,11 +1275,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2608, "x": 1528,
"y": 247 "y": 247
}, },
{ {
"x": 2608, "x": 1528,
"y": 2323 "y": 2323
} }
], ],
@ -1314,11 +1314,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3068.5, "x": 1808.5,
"y": 247 "y": 247
}, },
{ {
"x": 3068.5, "x": 1808.5,
"y": 2323 "y": 2323
} }
], ],
@ -1353,11 +1353,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 3540.5, "x": 2100.5,
"y": 247 "y": 247
}, },
{ {
"x": 3540.5, "x": 2100.5,
"y": 2323 "y": 2323
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 479 KiB

After

Width:  |  Height:  |  Size: 479 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "b.1", "id": "b.1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 673 "y": 673
}, },
"width": 12, "width": 12,
@ -121,7 +121,7 @@
"id": "b.1.2", "id": "b.1.2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 465, "x": 285,
"y": 803 "y": 803
}, },
"width": 20, "width": 20,
@ -235,7 +235,7 @@
"id": "b.3", "id": "b.3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 1113 "y": 1113
}, },
"width": 12, "width": 12,
@ -348,7 +348,7 @@
"y": 479 "y": 479
}, },
{ {
"x": 475, "x": 295,
"y": 479 "y": 479
} }
], ],
@ -383,19 +383,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 609 "y": 609
}, },
{ {
"x": 555, "x": 375,
"y": 609 "y": 609
}, },
{ {
"x": 555, "x": 375,
"y": 689 "y": 689
}, },
{ {
"x": 481, "x": 301,
"y": 689 "y": 689
} }
], ],
@ -430,19 +430,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 481, "x": 301,
"y": 739 "y": 739
}, },
{ {
"x": 555, "x": 375,
"y": 739 "y": 739
}, },
{ {
"x": 555, "x": 375,
"y": 819 "y": 819
}, },
{ {
"x": 485, "x": 305,
"y": 819 "y": 819
} }
], ],
@ -477,19 +477,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 305,
"y": 869 "y": 869
}, },
{ {
"x": 555, "x": 375,
"y": 869 "y": 869
}, },
{ {
"x": 555, "x": 375,
"y": 949 "y": 949
}, },
{ {
"x": 475, "x": 295,
"y": 949 "y": 949
} }
], ],
@ -524,7 +524,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 999 "y": 999
}, },
{ {
@ -567,7 +567,7 @@
"y": 1129 "y": 1129
}, },
{ {
"x": 469, "x": 289,
"y": 1129 "y": 1129
} }
], ],
@ -641,11 +641,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 1259 "y": 1259
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -44,7 +44,7 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 52 "y": 52
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "b.1", "id": "b.1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 673 "y": 673
}, },
"width": 12, "width": 12,
@ -121,7 +121,7 @@
"id": "b.1.2", "id": "b.1.2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 465, "x": 285,
"y": 803 "y": 803
}, },
"width": 20, "width": 20,
@ -235,7 +235,7 @@
"id": "b.3", "id": "b.3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 469, "x": 289,
"y": 1113 "y": 1113
}, },
"width": 12, "width": 12,
@ -348,7 +348,7 @@
"y": 479 "y": 479
}, },
{ {
"x": 475, "x": 295,
"y": 479 "y": 479
} }
], ],
@ -383,19 +383,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 609 "y": 609
}, },
{ {
"x": 555, "x": 375,
"y": 609 "y": 609
}, },
{ {
"x": 555, "x": 375,
"y": 689 "y": 689
}, },
{ {
"x": 481, "x": 301,
"y": 689 "y": 689
} }
], ],
@ -430,19 +430,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 481, "x": 301,
"y": 739 "y": 739
}, },
{ {
"x": 555, "x": 375,
"y": 739 "y": 739
}, },
{ {
"x": 555, "x": 375,
"y": 819 "y": 819
}, },
{ {
"x": 485, "x": 305,
"y": 819 "y": 819
} }
], ],
@ -477,19 +477,19 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 485, "x": 305,
"y": 869 "y": 869
}, },
{ {
"x": 555, "x": 375,
"y": 869 "y": 869
}, },
{ {
"x": 555, "x": 375,
"y": 949 "y": 949
}, },
{ {
"x": 475, "x": 295,
"y": 949 "y": 949
} }
], ],
@ -524,7 +524,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 999 "y": 999
}, },
{ {
@ -567,7 +567,7 @@
"y": 1129 "y": 1129
}, },
{ {
"x": 469, "x": 289,
"y": 1129 "y": 1129
} }
], ],
@ -641,11 +641,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 475, "x": 295,
"y": 219 "y": 219
}, },
{ {
"x": 475, "x": 295,
"y": 1259 "y": 1259
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -44,7 +44,7 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 480, "x": 233,
"y": 124 "y": 124
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 947, "x": 453,
"y": 136 "y": 136
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 1414, "x": 673,
"y": 161 "y": 161
}, },
"width": 150, "width": 150,
@ -161,7 +161,7 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1881, "x": 893,
"y": 50 "y": 50
}, },
"width": 202, "width": 202,
@ -228,7 +228,7 @@
"y": 418 "y": 418
}, },
{ {
"x": 555, "x": 308,
"y": 418 "y": 418
} }
], ],
@ -263,11 +263,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 548 "y": 548
}, },
{ {
"x": 1982, "x": 994,
"y": 548 "y": 548
} }
], ],
@ -302,11 +302,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 678 "y": 678
}, },
{ {
"x": 1022, "x": 528,
"y": 678 "y": 678
} }
], ],
@ -341,11 +341,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1022, "x": 528,
"y": 808 "y": 808
}, },
{ {
"x": 1982, "x": 994,
"y": 808 "y": 808
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 938 "y": 938
}, },
{ {
"x": 555, "x": 308,
"y": 938 "y": 938
} }
], ],
@ -419,7 +419,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1068 "y": 1068
}, },
{ {
@ -462,7 +462,7 @@
"y": 1198 "y": 1198
}, },
{ {
"x": 555, "x": 308,
"y": 1198 "y": 1198
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1328 "y": 1328
}, },
{ {
"x": 1489, "x": 748,
"y": 1328 "y": 1328
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1489, "x": 748,
"y": 1458 "y": 1458
}, },
{ {
"x": 555, "x": 308,
"y": 1458 "y": 1458
} }
], ],
@ -575,7 +575,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1588 "y": 1588
}, },
{ {
@ -653,11 +653,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 293 "y": 293
}, },
{ {
"x": 555, "x": 308,
"y": 1718 "y": 1718
} }
], ],
@ -692,11 +692,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1022, "x": 528,
"y": 288 "y": 288
}, },
{ {
"x": 1022, "x": 528,
"y": 1718 "y": 1718
} }
], ],
@ -731,11 +731,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1489, "x": 748,
"y": 288 "y": 288
}, },
{ {
"x": 1489, "x": 748,
"y": 1718 "y": 1718
} }
], ],
@ -770,11 +770,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 288 "y": 288
}, },
{ {
"x": 1982, "x": 994,
"y": 1718 "y": 1718
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 475 KiB

After

Width:  |  Height:  |  Size: 475 KiB

View file

@ -44,7 +44,7 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 480, "x": 233,
"y": 124 "y": 124
}, },
"width": 150, "width": 150,
@ -83,7 +83,7 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 947, "x": 453,
"y": 136 "y": 136
}, },
"width": 150, "width": 150,
@ -122,7 +122,7 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 1414, "x": 673,
"y": 161 "y": 161
}, },
"width": 150, "width": 150,
@ -161,7 +161,7 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1881, "x": 893,
"y": 50 "y": 50
}, },
"width": 202, "width": 202,
@ -228,7 +228,7 @@
"y": 418 "y": 418
}, },
{ {
"x": 555, "x": 308,
"y": 418 "y": 418
} }
], ],
@ -263,11 +263,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 548 "y": 548
}, },
{ {
"x": 1982, "x": 994,
"y": 548 "y": 548
} }
], ],
@ -302,11 +302,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 678 "y": 678
}, },
{ {
"x": 1022, "x": 528,
"y": 678 "y": 678
} }
], ],
@ -341,11 +341,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1022, "x": 528,
"y": 808 "y": 808
}, },
{ {
"x": 1982, "x": 994,
"y": 808 "y": 808
} }
], ],
@ -380,11 +380,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 938 "y": 938
}, },
{ {
"x": 555, "x": 308,
"y": 938 "y": 938
} }
], ],
@ -419,7 +419,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1068 "y": 1068
}, },
{ {
@ -462,7 +462,7 @@
"y": 1198 "y": 1198
}, },
{ {
"x": 555, "x": 308,
"y": 1198 "y": 1198
} }
], ],
@ -497,11 +497,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1328 "y": 1328
}, },
{ {
"x": 1489, "x": 748,
"y": 1328 "y": 1328
} }
], ],
@ -536,11 +536,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1489, "x": 748,
"y": 1458 "y": 1458
}, },
{ {
"x": 555, "x": 308,
"y": 1458 "y": 1458
} }
], ],
@ -575,7 +575,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 1588 "y": 1588
}, },
{ {
@ -653,11 +653,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 555, "x": 308,
"y": 293 "y": 293
}, },
{ {
"x": 555, "x": 308,
"y": 1718 "y": 1718
} }
], ],
@ -692,11 +692,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1022, "x": 528,
"y": 288 "y": 288
}, },
{ {
"x": 1022, "x": 528,
"y": 1718 "y": 1718
} }
], ],
@ -731,11 +731,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1489, "x": 748,
"y": 288 "y": 288
}, },
{ {
"x": 1489, "x": 748,
"y": 1718 "y": 1718
} }
], ],
@ -770,11 +770,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1982, "x": 994,
"y": 288 "y": 288
}, },
{ {
"x": 1982, "x": 994,
"y": 1718 "y": 1718
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 475 KiB

After

Width:  |  Height:  |  Size: 475 KiB

View file

@ -82,7 +82,7 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 64 "y": 64
}, },
"width": 200, "width": 200,
@ -121,7 +121,7 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 304 "y": 304
}, },
"width": 12, "width": 12,
@ -159,7 +159,7 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 850, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -198,7 +198,7 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 564 "y": 564
}, },
"width": 12, "width": 12,
@ -236,7 +236,7 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1250, "x": 710,
"y": 64 "y": 64
}, },
"width": 186, "width": 186,
@ -275,7 +275,7 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1337, "x": 797,
"y": 824 "y": 824
}, },
"width": 12, "width": 12,
@ -313,7 +313,7 @@
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1333, "x": 793,
"y": 954 "y": 954
}, },
"width": 20, "width": 20,
@ -351,7 +351,7 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1686, "x": 966,
"y": 64 "y": 64
}, },
"width": 160, "width": 160,
@ -390,7 +390,7 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1760, "x": 1040,
"y": 1084 "y": 1084
}, },
"width": 12, "width": 12,
@ -428,7 +428,7 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2096, "x": 1196,
"y": 64 "y": 64
}, },
"width": 197, "width": 197,
@ -467,7 +467,7 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1344 "y": 1344
}, },
"width": 12, "width": 12,
@ -505,7 +505,7 @@
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 1474 "y": 1474
}, },
"width": 12, "width": 12,
@ -543,7 +543,7 @@
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 1604 "y": 1604
}, },
"width": 12, "width": 12,
@ -581,7 +581,7 @@
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1734 "y": 1734
}, },
"width": 12, "width": 12,
@ -619,7 +619,7 @@
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1864 "y": 1864
}, },
"width": 12, "width": 12,
@ -685,7 +685,7 @@
"y": 320 "y": 320
}, },
{ {
"x": 494, "x": 314,
"y": 320 "y": 320
} }
], ],
@ -724,7 +724,7 @@
"y": 450 "y": 450
}, },
{ {
"x": 494, "x": 314,
"y": 450 "y": 450
} }
], ],
@ -763,7 +763,7 @@
"y": 580 "y": 580
}, },
{ {
"x": 919, "x": 559,
"y": 580 "y": 580
} }
], ],
@ -802,7 +802,7 @@
"y": 710 "y": 710
}, },
{ {
"x": 919, "x": 559,
"y": 710 "y": 710
} }
], ],
@ -841,7 +841,7 @@
"y": 840 "y": 840
}, },
{ {
"x": 1337, "x": 797,
"y": 840 "y": 840
} }
], ],
@ -876,11 +876,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 970 "y": 970
}, },
{ {
"x": 1333, "x": 793,
"y": 970 "y": 970
} }
], ],
@ -915,11 +915,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1353, "x": 813,
"y": 1100 "y": 1100
}, },
{ {
"x": 1760, "x": 1040,
"y": 1100 "y": 1100
} }
], ],
@ -958,7 +958,7 @@
"y": 1230 "y": 1230
}, },
{ {
"x": 1337, "x": 797,
"y": 1230 "y": 1230
} }
], ],
@ -997,7 +997,7 @@
"y": 1360 "y": 1360
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1360 "y": 1360
} }
], ],
@ -1036,7 +1036,7 @@
"y": 1490 "y": 1490
}, },
{ {
"x": 919, "x": 559,
"y": 1490 "y": 1490
} }
], ],
@ -1075,7 +1075,7 @@
"y": 1620 "y": 1620
}, },
{ {
"x": 919, "x": 559,
"y": 1620 "y": 1620
} }
], ],
@ -1114,7 +1114,7 @@
"y": 1750 "y": 1750
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1750 "y": 1750
} }
], ],
@ -1153,7 +1153,7 @@
"y": 1880 "y": 1880
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1880 "y": 1880
} }
], ],
@ -1227,11 +1227,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 190 "y": 190
}, },
{ {
"x": 500, "x": 320,
"y": 2010 "y": 2010
} }
], ],
@ -1266,11 +1266,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 925, "x": 565,
"y": 190 "y": 190
}, },
{ {
"x": 925, "x": 565,
"y": 2010 "y": 2010
} }
], ],
@ -1305,11 +1305,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1343, "x": 803,
"y": 190 "y": 190
}, },
{ {
"x": 1343, "x": 803,
"y": 2010 "y": 2010
} }
], ],
@ -1344,11 +1344,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1766, "x": 1046,
"y": 190 "y": 190
}, },
{ {
"x": 1766, "x": 1046,
"y": 2010 "y": 2010
} }
], ],
@ -1383,11 +1383,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2194.5, "x": 1294.5,
"y": 190 "y": 190
}, },
{ {
"x": 2194.5, "x": 1294.5,
"y": 2010 "y": 2010
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 477 KiB

After

Width:  |  Height:  |  Size: 477 KiB

View file

@ -82,7 +82,7 @@
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 400, "x": 220,
"y": 64 "y": 64
}, },
"width": 200, "width": 200,
@ -121,7 +121,7 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 494, "x": 314,
"y": 304 "y": 304
}, },
"width": 12, "width": 12,
@ -159,7 +159,7 @@
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 850, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
@ -198,7 +198,7 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 564 "y": 564
}, },
"width": 12, "width": 12,
@ -236,7 +236,7 @@
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 1250, "x": 710,
"y": 64 "y": 64
}, },
"width": 186, "width": 186,
@ -275,7 +275,7 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1337, "x": 797,
"y": 824 "y": 824
}, },
"width": 12, "width": 12,
@ -313,7 +313,7 @@
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1333, "x": 793,
"y": 954 "y": 954
}, },
"width": 20, "width": 20,
@ -351,7 +351,7 @@
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 1686, "x": 966,
"y": 64 "y": 64
}, },
"width": 160, "width": 160,
@ -390,7 +390,7 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1760, "x": 1040,
"y": 1084 "y": 1084
}, },
"width": 12, "width": 12,
@ -428,7 +428,7 @@
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 2096, "x": 1196,
"y": 64 "y": 64
}, },
"width": 197, "width": 197,
@ -467,7 +467,7 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1344 "y": 1344
}, },
"width": 12, "width": 12,
@ -505,7 +505,7 @@
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 1474 "y": 1474
}, },
"width": 12, "width": 12,
@ -543,7 +543,7 @@
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 919, "x": 559,
"y": 1604 "y": 1604
}, },
"width": 12, "width": 12,
@ -581,7 +581,7 @@
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1734 "y": 1734
}, },
"width": 12, "width": 12,
@ -619,7 +619,7 @@
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 2188, "x": 1288,
"y": 1864 "y": 1864
}, },
"width": 12, "width": 12,
@ -685,7 +685,7 @@
"y": 320 "y": 320
}, },
{ {
"x": 494, "x": 314,
"y": 320 "y": 320
} }
], ],
@ -724,7 +724,7 @@
"y": 450 "y": 450
}, },
{ {
"x": 494, "x": 314,
"y": 450 "y": 450
} }
], ],
@ -763,7 +763,7 @@
"y": 580 "y": 580
}, },
{ {
"x": 919, "x": 559,
"y": 580 "y": 580
} }
], ],
@ -802,7 +802,7 @@
"y": 710 "y": 710
}, },
{ {
"x": 919, "x": 559,
"y": 710 "y": 710
} }
], ],
@ -841,7 +841,7 @@
"y": 840 "y": 840
}, },
{ {
"x": 1337, "x": 797,
"y": 840 "y": 840
} }
], ],
@ -876,11 +876,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 970 "y": 970
}, },
{ {
"x": 1333, "x": 793,
"y": 970 "y": 970
} }
], ],
@ -915,11 +915,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1353, "x": 813,
"y": 1100 "y": 1100
}, },
{ {
"x": 1760, "x": 1040,
"y": 1100 "y": 1100
} }
], ],
@ -958,7 +958,7 @@
"y": 1230 "y": 1230
}, },
{ {
"x": 1337, "x": 797,
"y": 1230 "y": 1230
} }
], ],
@ -997,7 +997,7 @@
"y": 1360 "y": 1360
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1360 "y": 1360
} }
], ],
@ -1036,7 +1036,7 @@
"y": 1490 "y": 1490
}, },
{ {
"x": 919, "x": 559,
"y": 1490 "y": 1490
} }
], ],
@ -1075,7 +1075,7 @@
"y": 1620 "y": 1620
}, },
{ {
"x": 919, "x": 559,
"y": 1620 "y": 1620
} }
], ],
@ -1114,7 +1114,7 @@
"y": 1750 "y": 1750
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1750 "y": 1750
} }
], ],
@ -1153,7 +1153,7 @@
"y": 1880 "y": 1880
}, },
{ {
"x": 2188.5, "x": 1288.5,
"y": 1880 "y": 1880
} }
], ],
@ -1227,11 +1227,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 500, "x": 320,
"y": 190 "y": 190
}, },
{ {
"x": 500, "x": 320,
"y": 2010 "y": 2010
} }
], ],
@ -1266,11 +1266,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 925, "x": 565,
"y": 190 "y": 190
}, },
{ {
"x": 925, "x": 565,
"y": 2010 "y": 2010
} }
], ],
@ -1305,11 +1305,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1343, "x": 803,
"y": 190 "y": 190
}, },
{ {
"x": 1343, "x": 803,
"y": 2010 "y": 2010
} }
], ],
@ -1344,11 +1344,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1766, "x": 1046,
"y": 190 "y": 190
}, },
{ {
"x": 1766, "x": 1046,
"y": 2010 "y": 2010
} }
], ],
@ -1383,11 +1383,11 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2194.5, "x": 1294.5,
"y": 190 "y": 190
}, },
{ {
"x": 2194.5, "x": 1294.5,
"y": 2010 "y": 2010
} }
], ],

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 477 KiB

After

Width:  |  Height:  |  Size: 477 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 501 KiB

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 501 KiB

After

Width:  |  Height:  |  Size: 501 KiB