Merge branch 'master' into actors-distance

This commit is contained in:
Júlio César Batista 2022-12-05 10:36:00 -08:00
commit c2f516b490
No known key found for this signature in database
GPG key ID: 10C4B861BF314878
50 changed files with 3297 additions and 3106 deletions

View file

@ -331,6 +331,20 @@ func (l ContainerLevel) LabelSize() int {
func (obj *Object) GetFill(theme *d2themes.Theme) string { func (obj *Object) GetFill(theme *d2themes.Theme) string {
level := int(obj.Level()) level := int(obj.Level())
if obj.Parent.IsSequenceDiagram() {
return theme.Colors.B5
} else if obj.IsSequenceDiagramNote() {
return theme.Colors.Neutrals.N7
} else if obj.IsSequenceDiagramGroup() {
sd := obj.outerSequenceDiagram()
// Alternate
if (level-int(sd.Level()))%2 == 0 {
return theme.Colors.Neutrals.N7
} else {
return theme.Colors.Neutrals.N6
}
}
shape := obj.Attributes.Shape.Value shape := obj.Attributes.Shape.Value
if shape == "" || strings.EqualFold(shape, d2target.ShapeSquare) || strings.EqualFold(shape, d2target.ShapeCircle) || strings.EqualFold(shape, d2target.ShapeOval) || strings.EqualFold(shape, d2target.ShapeRectangle) { if shape == "" || strings.EqualFold(shape, d2target.ShapeSquare) || strings.EqualFold(shape, d2target.ShapeCircle) || strings.EqualFold(shape, d2target.ShapeOval) || strings.EqualFold(shape, d2target.ShapeRectangle) {
@ -399,10 +413,6 @@ func (obj *Object) IsContainer() bool {
return len(obj.Children) > 0 return len(obj.Children) > 0
} }
func (obj *Object) IsSequenceDiagram() bool {
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
}
func (obj *Object) AbsID() string { func (obj *Object) AbsID() string {
if obj.Parent != nil && obj.Parent.ID != "" { if obj.Parent != nil && obj.Parent.ID != "" {
return obj.Parent.AbsID() + "." + obj.ID return obj.Parent.AbsID() + "." + obj.ID
@ -711,16 +721,6 @@ func (e *Edge) AbsID() string {
return fmt.Sprintf("%s(%s %s %s)[%d]", commonKey, strings.Join(srcIDA, "."), e.ArrowString(), strings.Join(dstIDA, "."), e.Index) return fmt.Sprintf("%s(%s %s %s)[%d]", commonKey, strings.Join(srcIDA, "."), e.ArrowString(), strings.Join(dstIDA, "."), e.Index)
} }
func (obj *Object) outerSequenceDiagram() *Object {
for obj != nil {
obj = obj.Parent
if obj.IsSequenceDiagram() {
return obj
}
}
return nil
}
func (obj *Object) Connect(srcID, dstID []string, srcArrow, dstArrow bool, label string) (*Edge, error) { func (obj *Object) Connect(srcID, dstID []string, srcArrow, dstArrow bool, label string) (*Edge, error) {
srcObj, srcID, err := ResolveUnderscoreKey(srcID, obj) srcObj, srcID, err := ResolveUnderscoreKey(srcID, obj)
if err != nil { if err != nil {

77
d2graph/seqdiagram.go Normal file
View file

@ -0,0 +1,77 @@
package d2graph
import "oss.terrastruct.com/d2/d2target"
func (obj *Object) IsSequenceDiagram() bool {
return obj != nil && obj.Attributes.Shape.Value == d2target.ShapeSequenceDiagram
}
func (obj *Object) outerSequenceDiagram() *Object {
for obj != nil {
obj = obj.Parent
if obj.IsSequenceDiagram() {
return obj
}
}
return nil
}
// groups are objects in sequence diagrams that have no messages connected
// and does not have a note as a child (a note can appear within a group, but it's a child of an actor)
func (obj *Object) IsSequenceDiagramGroup() bool {
if obj.outerSequenceDiagram() == nil {
return false
}
for _, e := range obj.Graph.Edges {
if e.Src == obj || e.Dst == obj {
return false
}
}
for _, ch := range obj.ChildrenArray {
// if the child contains a message, it's a span, not a note
if !ch.ContainsAnyEdge(obj.Graph.Edges) {
return false
}
}
return true
}
// notes are descendant of actors with no edges and no children
func (obj *Object) IsSequenceDiagramNote() bool {
if obj.outerSequenceDiagram() == nil {
return false
}
return !obj.hasEdgeRef() && !obj.ContainsAnyEdge(obj.Graph.Edges) && len(obj.ChildrenArray) == 0
}
func (obj *Object) hasEdgeRef() bool {
for _, ref := range obj.References {
if ref.MapKey != nil && len(ref.MapKey.Edges) > 0 {
return true
}
}
return false
}
func (obj *Object) ContainsAnyEdge(edges []*Edge) bool {
for _, e := range edges {
if e.ContainedBy(obj) {
return true
}
}
return false
}
func (e *Edge) ContainedBy(obj *Object) bool {
for _, ref := range e.References {
curr := ref.ScopeObj
for curr != nil {
if curr == obj {
return true
}
curr = curr.Parent
}
}
return false
}

View file

@ -6,10 +6,14 @@ 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.
const SELF_MESSAGE_HORIZONTAL_TRAVEL = 100.
const GROUP_CONTAINER_PADDING = 24.
// min vertical distance between messages // min vertical distance between messages
const MIN_MESSAGE_DISTANCE = 80. const MIN_MESSAGE_DISTANCE = 80.
@ -30,3 +34,11 @@ const LIFELINE_STROKE_DASH int = 6
// pad when the actor has the label placed OutsideMiddleBottom so that the lifeline is not so close to the text // pad when the actor has the label placed OutsideMiddleBottom so that the lifeline is not so close to the text
const LIFELINE_LABEL_PAD = 5. const LIFELINE_LABEL_PAD = 5.
const (
GROUP_Z_INDEX = 1
LIFELINE_Z_INDEX = 2
SPAN_Z_INDEX = 3
MESSAGE_Z_INDEX = 4
NOTE_Z_INDEX = 5
)

View file

@ -56,6 +56,9 @@ func Layout(ctx context.Context, g *d2graph.Graph, layout func(ctx context.Conte
for _, obj := range sd.notes { for _, obj := range sd.notes {
objectsToRemove[obj] = struct{}{} objectsToRemove[obj] = struct{}{}
} }
for _, obj := range sd.groups {
objectsToRemove[obj] = struct{}{}
}
for _, obj := range sd.spans { for _, obj := range sd.spans {
objectsToRemove[obj] = struct{}{} objectsToRemove[obj] = struct{}{}
} }
@ -151,6 +154,7 @@ func cleanup(g *d2graph.Graph, sequenceDiagrams map[string]*sequenceDiagram, obj
g.Edges = append(g.Edges, sequenceDiagrams[obj.AbsID()].lifelines...) g.Edges = append(g.Edges, sequenceDiagrams[obj.AbsID()].lifelines...)
g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].actors...) g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].actors...)
g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].notes...) g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].notes...)
g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].groups...)
g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].spans...) g.Objects = append(g.Objects, sequenceDiagrams[obj.AbsID()].spans...)
} }

View file

@ -231,8 +231,8 @@ b -> a.t2`
} }
for _, span := range []*d2graph.Object{a_t1, a_t2, b_t1} { for _, span := range []*d2graph.Object{a_t1, a_t2, b_t1} {
if span.ZIndex != 1 { if span.ZIndex != d2sequence.SPAN_Z_INDEX {
t.Fatalf("expected span ZIndex=1, got %d", span.ZIndex) t.Fatalf("expected span ZIndex=%d, got %d", d2sequence.SPAN_Z_INDEX, span.ZIndex)
} }
} }

View file

@ -64,61 +64,12 @@ func getEdgeEarliestLineNum(e *d2graph.Edge) int {
return min return min
} }
func hasEdge(o *d2graph.Object) bool {
for _, ref := range o.References {
if ref.MapKey != nil && len(ref.MapKey.Edges) > 0 {
return true
}
}
return false
}
func containsAnyMessage(o *d2graph.Object, messages []*d2graph.Edge) bool {
for _, m := range messages {
if containsMessage(o, m) {
return true
}
}
return false
}
func containsMessage(o *d2graph.Object, m *d2graph.Edge) bool {
for _, ref := range m.References {
curr := ref.ScopeObj
for curr != nil {
if curr == o {
return true
}
curr = curr.Parent
}
}
return false
}
func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *sequenceDiagram { func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *sequenceDiagram {
var actors []*d2graph.Object var actors []*d2graph.Object
var groups []*d2graph.Object var groups []*d2graph.Object
for _, obj := range objects { for _, obj := range objects {
messageRecipient := false if obj.IsSequenceDiagramGroup() {
for _, m := range messages {
if m.Src == obj || m.Dst == obj {
messageRecipient = true
break
}
}
hasNote := false
for _, ch := range obj.ChildrenArray {
// if the child contains a message, it's a span, not a note
if !containsAnyMessage(ch, messages) {
hasNote = true
break
}
}
if messageRecipient || hasNote {
actors = append(actors, obj)
} else {
queue := []*d2graph.Object{obj} queue := []*d2graph.Object{obj}
// Groups may have more nested groups // Groups may have more nested groups
for len(queue) > 0 { for len(queue) > 0 {
@ -129,6 +80,8 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
queue = append(queue, c) queue = append(queue, c)
} }
} }
} else {
actors = append(actors, obj)
} }
} }
@ -153,9 +106,7 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
sd.objectRank[actor] = rank sd.objectRank[actor] = rank
if actor.Width < MIN_ACTOR_WIDTH { if actor.Width < MIN_ACTOR_WIDTH {
aspectRatio := actor.Height / actor.Width
actor.Width = MIN_ACTOR_WIDTH actor.Width = MIN_ACTOR_WIDTH
actor.Height = math.Round(aspectRatio * actor.Width)
} }
sd.maxActorHeight = math.Max(sd.maxActorHeight, actor.Height) sd.maxActorHeight = math.Max(sd.maxActorHeight, actor.Height)
@ -166,22 +117,21 @@ func newSequenceDiagram(objects []*d2graph.Object, messages []*d2graph.Edge) *se
queue = queue[1:] queue = queue[1:]
// spans are children of actors that have edges // spans are children of actors that have edges
// notes are children of actors with no edges and no children
// edge groups are children of actors with no edges and children edges // edge groups are children of actors with no edges and children edges
if hasEdge(child) && !containsAnyMessage(child, sd.messages) { if child.IsSequenceDiagramNote() {
// spans have no labels
// TODO why not? Spans should be able to
child.Attributes.Label = d2graph.Scalar{Value: ""}
child.Attributes.Shape = d2graph.Scalar{Value: shape.SQUARE_TYPE}
sd.spans = append(sd.spans, child)
sd.objectRank[child] = rank
} else {
sd.verticalIndices[child.AbsID()] = getObjEarliestLineNum(child) sd.verticalIndices[child.AbsID()] = getObjEarliestLineNum(child)
// TODO change to page type when it doesn't look deformed // TODO change to page type when it doesn't look deformed
child.Attributes.Shape = d2graph.Scalar{Value: shape.SQUARE_TYPE} child.Attributes.Shape = d2graph.Scalar{Value: shape.SQUARE_TYPE}
sd.notes = append(sd.notes, child) sd.notes = append(sd.notes, child)
sd.objectRank[child] = rank sd.objectRank[child] = rank
child.LabelPosition = go2.Pointer(string(label.InsideMiddleCenter)) child.LabelPosition = go2.Pointer(string(label.InsideMiddleCenter))
} else {
// spans have no labels
// TODO why not? Spans should be able to
child.Attributes.Label = d2graph.Scalar{Value: ""}
child.Attributes.Shape = d2graph.Scalar{Value: shape.SQUARE_TYPE}
sd.spans = append(sd.spans, child)
sd.objectRank[child] = rank
} }
queue = append(queue, child.ChildrenArray...) queue = append(queue, child.ChildrenArray...)
@ -240,7 +190,11 @@ func (sd *sequenceDiagram) layout() error {
} }
func (sd *sequenceDiagram) placeGroups() { func (sd *sequenceDiagram) placeGroups() {
sort.SliceStable(sd.groups, func(i, j int) bool {
return sd.groups[i].Level() > sd.groups[j].Level()
})
for _, group := range sd.groups { for _, group := range sd.groups {
group.ZIndex = GROUP_Z_INDEX
sd.placeGroup(group) sd.placeGroup(group)
} }
} }
@ -252,12 +206,12 @@ func (sd *sequenceDiagram) placeGroup(group *d2graph.Object) {
maxY := math.Inf(-1) maxY := math.Inf(-1)
for _, m := range sd.messages { for _, m := range sd.messages {
if containsMessage(group, m) { if m.ContainedBy(group) {
for _, p := range m.Route { for _, p := range m.Route {
minX = math.Min(minX, p.X) minX = math.Min(minX, p.X-HORIZONTAL_PAD)
minY = math.Min(minY, p.Y) minY = math.Min(minY, p.Y-MIN_MESSAGE_DISTANCE/2.)
maxX = math.Max(maxX, p.X) maxX = math.Max(maxX, p.X+HORIZONTAL_PAD)
maxY = math.Max(maxY, p.Y) maxY = math.Max(maxY, p.Y+MIN_MESSAGE_DISTANCE/2.)
} }
} }
} }
@ -278,20 +232,32 @@ func (sd *sequenceDiagram) placeGroup(group *d2graph.Object) {
} }
} }
if inGroup { if inGroup {
minY = math.Min(minY, n.TopLeft.Y) minX = math.Min(minX, n.TopLeft.X-HORIZONTAL_PAD)
maxY = math.Max(maxY, n.TopLeft.Y+n.Height) minY = math.Min(minY, n.TopLeft.Y-MIN_MESSAGE_DISTANCE/2.)
minX = math.Min(minX, n.TopLeft.X) maxY = math.Max(maxY, n.TopLeft.Y+n.Height+HORIZONTAL_PAD)
maxX = math.Max(maxX, n.TopLeft.X+n.Width) maxX = math.Max(maxX, n.TopLeft.X+n.Width+MIN_MESSAGE_DISTANCE/2.)
}
}
for _, ch := range group.ChildrenArray {
for _, g := range sd.groups {
if ch == g {
minX = math.Min(minX, ch.TopLeft.X-GROUP_CONTAINER_PADDING)
minY = math.Min(minY, ch.TopLeft.Y-GROUP_CONTAINER_PADDING)
maxX = math.Max(maxX, ch.TopLeft.X+ch.Width+GROUP_CONTAINER_PADDING)
maxY = math.Max(maxY, ch.TopLeft.Y+ch.Height+GROUP_CONTAINER_PADDING)
break
}
} }
} }
group.Box = geo.NewBox( group.Box = geo.NewBox(
geo.NewPoint( geo.NewPoint(
minX-HORIZONTAL_PAD, minX,
minY-(MIN_MESSAGE_DISTANCE/2.), minY,
), ),
maxX-minX+HORIZONTAL_PAD*2, maxX-minX,
maxY-minY+MIN_MESSAGE_DISTANCE, maxY-minY,
) )
} }
@ -360,6 +326,7 @@ func (sd *sequenceDiagram) addLifelineEdges() {
}, },
DstArrow: false, DstArrow: false,
Route: []*geo.Point{actorBottom, actorLifelineEnd}, Route: []*geo.Point{actorBottom, actorLifelineEnd},
ZIndex: LIFELINE_Z_INDEX,
}) })
} }
} }
@ -385,7 +352,7 @@ func (sd *sequenceDiagram) placeNotes() {
x := rankToX[sd.objectRank[note]] - (note.Width / 2.) x := rankToX[sd.objectRank[note]] - (note.Width / 2.)
note.Box.TopLeft = geo.NewPoint(x, y) note.Box.TopLeft = geo.NewPoint(x, y)
note.ZIndex = 1 note.ZIndex = NOTE_Z_INDEX
} }
} }
@ -457,11 +424,11 @@ func (sd *sequenceDiagram) placeSpans() {
} }
height := math.Max(maxY-minY, MIN_SPAN_HEIGHT) height := math.Max(maxY-minY, MIN_SPAN_HEIGHT)
// -2 because the actors count as level 1 making the first level span getting 2*SPAN_DEPTH_GROW_FACTOR // -1 because the actors count as 1 level
width := SPAN_BASE_WIDTH + (float64(span.Level()-2) * SPAN_DEPTH_GROWTH_FACTOR) width := SPAN_BASE_WIDTH + (float64(span.Level()-sd.root.Level()-2) * SPAN_DEPTH_GROWTH_FACTOR)
x := rankToX[sd.objectRank[span]] - (width / 2.) x := rankToX[sd.objectRank[span]] - (width / 2.)
span.Box = geo.NewBox(geo.NewPoint(x, minY), width, height) span.Box = geo.NewBox(geo.NewPoint(x, minY), width, height)
span.ZIndex = 1 span.ZIndex = SPAN_Z_INDEX
} }
} }
@ -470,6 +437,7 @@ func (sd *sequenceDiagram) placeSpans() {
func (sd *sequenceDiagram) routeMessages() error { func (sd *sequenceDiagram) routeMessages() error {
messageOffset := sd.maxActorHeight + sd.yStep messageOffset := sd.maxActorHeight + sd.yStep
for _, message := range sd.messages { for _, message := range sd.messages {
message.ZIndex = MESSAGE_Z_INDEX
noteOffset := 0. noteOffset := 0.
for _, note := range sd.notes { for _, note := range sd.notes {
if sd.verticalIndices[note.AbsID()] < sd.verticalIndices[message.AbsID()] { if sd.verticalIndices[note.AbsID()] < sd.verticalIndices[message.AbsID()] {
@ -478,7 +446,6 @@ func (sd *sequenceDiagram) routeMessages() error {
} }
startY := messageOffset + noteOffset startY := messageOffset + noteOffset
message.ZIndex = 2
var startX, endX float64 var startX, endX float64
if startCenter := getCenter(message.Src); startCenter != nil { if startCenter := getCenter(message.Src); startCenter != nil {
startX = startCenter.X startX = startCenter.X
@ -495,7 +462,7 @@ func (sd *sequenceDiagram) routeMessages() error {
isSelfMessage := message.Src == message.Dst isSelfMessage := message.Src == message.Dst
if isSelfMessage || isToDescendant || isFromDescendant { if isSelfMessage || isToDescendant || isFromDescendant {
midX := startX + MIN_MESSAGE_DISTANCE midX := startX + SELF_MESSAGE_HORIZONTAL_TRAVEL
endY := startY + MIN_MESSAGE_DISTANCE endY := startY + MIN_MESSAGE_DISTANCE
message.Route = []*geo.Point{ message.Route = []*geo.Point{
geo.NewPoint(startX, startY), geo.NewPoint(startX, startY),

View file

@ -35,15 +35,17 @@ func Compile(ctx context.Context, input string, opts *CompileOptions) (*d2target
return nil, nil, err return nil, nil, err
} }
err = g.SetDimensions(opts.MeasuredTexts, opts.Ruler) if len(g.Objects) > 0 {
if err != nil { err = g.SetDimensions(opts.MeasuredTexts, opts.Ruler)
return nil, nil, err if err != nil {
} return nil, nil, err
}
if layout, err := getLayout(opts); err != nil { if layout, err := getLayout(opts); err != nil {
return nil, nil, err return nil, nil, err
} else if err := d2sequence.Layout(ctx, g, layout); err != nil { } else if err := d2sequence.Layout(ctx, g, layout); err != nil {
return nil, nil, err return nil, nil, err
}
} }
diagram, err := d2exporter.Export(ctx, g, opts.ThemeID) diagram, err := d2exporter.Export(ctx, g, opts.ThemeID)

View file

@ -14,6 +14,7 @@ type Neutral struct {
N3 string `json:"n3"` N3 string `json:"n3"`
N4 string `json:"n4"` N4 string `json:"n4"`
N5 string `json:"n5"` N5 string `json:"n5"`
N6 string `json:"n6"`
N7 string `json:"n7"` N7 string `json:"n7"`
} }
@ -44,6 +45,7 @@ var CoolNeutral = Neutral{
N3: "#9499AB", N3: "#9499AB",
N4: "#CFD2DD", N4: "#CFD2DD",
N5: "#F0F3F9", N5: "#F0F3F9",
N6: "#EEF1F8",
N7: "#FFFFFF", N7: "#FFFFFF",
} }
@ -53,5 +55,6 @@ var WarmNeutral = Neutral{
N3: "#787777", N3: "#787777",
N4: "#CCCACA", N4: "#CCCACA",
N5: "#DFDCDC", N5: "#DFDCDC",
N6: "#ECEBEB",
N7: "#FFFFFF", N7: "#FFFFFF",
} }

View file

@ -38,6 +38,10 @@ func TestE2E(t *testing.T) {
func testSanity(t *testing.T) { func testSanity(t *testing.T) {
tcs := []testCase{ tcs := []testCase{
{
name: "empty",
script: ``,
},
{ {
name: "basic", name: "basic",
script: `a -> b script: `a -> b

View file

@ -1399,7 +1399,9 @@ choo: {
d2compiler -> CLI: objects and edges d2compiler -> CLI: objects and edges
CLI -> d2layout.layout: run layout engines CLI -> d2layout.layout: run layout engines
d2layout.layout -> d2sequencelayout: run engine on shape: sequence_diagram, temporarily remove d2layout.layout -> d2sequencelayout: run engine on shape: sequence_diagram, temporarily remove
d2layout.layout -> d2dagrelayout: run core engine on rest only if root is not sequence: {
_.d2layout.layout -> _.d2dagrelayout: run core engine on rest
}
d2layout.layout <- d2sequencelayout: add back in sequence diagrams d2layout.layout <- d2sequencelayout: add back in sequence diagrams
d2layout -> CLI: diagram with correct positions and dimensions d2layout -> CLI: diagram with correct positions and dimensions
CLI -> d2exporter: export diagram with chosen theme and renderer CLI -> d2exporter: export diagram with chosen theme and renderer

5
e2etests/testdata/sanity/empty/dagre/board.exp.json generated vendored Normal file
View file

@ -0,0 +1,5 @@
{
"name": "",
"shapes": [],
"connections": []
}

View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<svg
style="background: white;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="202" height="202" viewBox="9223372036854775707 9223372036854775707 202 202"><style type="text/css">
<![CDATA[
.shape {
shape-rendering: geometricPrecision;
stroke-linejoin: round;
}
.connection {
stroke-linecap: round;
stroke-linejoin: round;
}
]]>
</style><style type="text/css"><![CDATA[]]></style></svg>

After

Width:  |  Height:  |  Size: 471 B

5
e2etests/testdata/sanity/empty/elk/board.exp.json generated vendored Normal file
View file

@ -0,0 +1,5 @@
{
"name": "",
"shapes": [],
"connections": []
}

View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<svg
style="background: white;"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
width="202" height="202" viewBox="9223372036854775707 9223372036854775707 202 202"><style type="text/css">
<![CDATA[
.shape {
shape-rendering: geometricPrecision;
stroke-linejoin: round;
}
.connection {
stroke-linecap: round;
stroke-linejoin: round;
}
]]>
</style><style type="text/css"><![CDATA[]]></style></svg>

After

Width:  |  Height:  |  Size: 471 B

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: 992 KiB

After

Width:  |  Height:  |  Size: 992 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: 992 KiB

After

Width:  |  Height:  |  Size: 992 KiB

View file

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,16 +83,16 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -122,16 +122,16 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -162,15 +162,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 25, "x": 25,
"y": 439 "y": 396
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -192,23 +192,23 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 221,
"y": 569 "y": 526
}, },
"width": 350, "width": 368,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -230,23 +230,23 @@
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 57,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 829 "y": 786
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -268,23 +268,23 @@
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 82,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 2 "level": 2
}, },
{ {
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 1349 "y": 1306
}, },
"width": 483, "width": 443,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -306,15 +306,15 @@
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 442, "x": 382,
"y": 1519 "y": 1476
}, },
"width": 266, "width": 266,
"height": 126, "height": 126,
@ -322,7 +322,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -345,23 +345,23 @@
"labelWidth": 166, "labelWidth": 166,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 691, "x": 601,
"y": 1865 "y": 1822
}, },
"width": 268, "width": 258,
"height": 206, "height": 216,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -383,15 +383,15 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 741, "x": 651,
"y": 1905 "y": 1862
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
@ -399,7 +399,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -422,15 +422,15 @@
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 983 "y": 940
}, },
"width": 12, "width": 12,
"height": 292, "height": 292,
@ -460,15 +460,15 @@
"underline": false, "underline": false,
"labelWidth": 25, "labelWidth": 25,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "c.t1", "id": "c.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 509,
"y": 983 "y": 940
}, },
"width": 12, "width": 12,
"height": 292, "height": 292,
@ -498,15 +498,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 1113 "y": 1070
}, },
"width": 20, "width": 20,
"height": 80, "height": 80,
@ -536,7 +536,7 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
} }
], ],
@ -568,17 +568,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 349 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -> b)[1]", "id": "(a -> b)[1]",
@ -607,17 +607,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 479 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 479 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -645,18 +645,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 609 "y": 566
}, },
{ {
"x": 575, "x": 515,
"y": 609 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -684,18 +684,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 739 "y": 696
}, },
{ {
"x": 325, "x": 295,
"y": 739 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[1]", "id": "(c -> b)[1]",
@ -723,18 +723,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 869 "y": 826
}, },
{ {
"x": 325, "x": 295,
"y": 869 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.t1 -> c.t1)[0]", "id": "(b.t1 -> c.t1)[0]",
@ -762,18 +762,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 999 "y": 956
}, },
{ {
"x": 569, "x": 509,
"y": 999 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.t1.t2 -> c.t1)[0]", "id": "(b.t1.t2 -> c.t1)[0]",
@ -801,18 +801,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 1129 "y": 1086
}, },
{ {
"x": 569, "x": 509,
"y": 1129 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c.t1 -> b.t1)[0]", "id": "(c.t1 -> b.t1)[0]",
@ -840,18 +840,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 569, "x": 509,
"y": 1259 "y": 1216
}, },
{ {
"x": 331, "x": 301,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[1]", "id": "(b -> c)[1]",
@ -879,18 +879,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 1389 "y": 1346
}, },
{ {
"x": 575, "x": 515,
"y": 1389 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[2]", "id": "(c -> b)[2]",
@ -918,18 +918,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1775 "y": 1732
}, },
{ {
"x": 325, "x": 295,
"y": 1775 "y": 1732
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -958,17 +958,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -996,18 +996,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(c -- )[0]", "id": "(c -- )[0]",
@ -1035,18 +1035,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 219 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(d -- )[0]", "id": "(d -- )[0]",
@ -1074,18 +1074,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 219 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,16 +83,16 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -122,16 +122,16 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -162,15 +162,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 25, "x": 25,
"y": 439 "y": 396
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -192,23 +192,23 @@
"underline": false, "underline": false,
"labelWidth": 32, "labelWidth": 32,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "group 1", "id": "group 1",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 221,
"y": 569 "y": 526
}, },
"width": 350, "width": 368,
"height": 730, "height": 730,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -230,23 +230,23 @@
"underline": false, "underline": false,
"labelWidth": 57, "labelWidth": 57,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "group 1.nested guy", "id": "group 1.nested guy",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 829 "y": 786
}, },
"width": 350, "width": 320,
"height": 80, "height": 80,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -268,23 +268,23 @@
"underline": false, "underline": false,
"labelWidth": 82, "labelWidth": 82,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 2 "level": 2
}, },
{ {
"id": "group b", "id": "group b",
"type": "", "type": "",
"pos": { "pos": {
"x": 275, "x": 245,
"y": 1349 "y": 1306
}, },
"width": 483, "width": 443,
"height": 466, "height": 466,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -306,15 +306,15 @@
"underline": false, "underline": false,
"labelWidth": 60, "labelWidth": 60,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "c.what would arnold say", "id": "c.what would arnold say",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 442, "x": 382,
"y": 1519 "y": 1476
}, },
"width": 266, "width": 266,
"height": 126, "height": 126,
@ -322,7 +322,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -345,23 +345,23 @@
"labelWidth": 166, "labelWidth": 166,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"id": "choo", "id": "choo",
"type": "", "type": "",
"pos": { "pos": {
"x": 691, "x": 601,
"y": 1865 "y": 1822
}, },
"width": 268, "width": 258,
"height": 206, "height": 216,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -383,15 +383,15 @@
"underline": false, "underline": false,
"labelWidth": 40, "labelWidth": 40,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 0, "zIndex": 1,
"level": 1 "level": 1
}, },
{ {
"id": "d.this note", "id": "d.this note",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 741, "x": 651,
"y": 1905 "y": 1862
}, },
"width": 168, "width": 168,
"height": 126, "height": 126,
@ -399,7 +399,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -422,15 +422,15 @@
"labelWidth": 68, "labelWidth": 68,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"id": "b.t1", "id": "b.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 983 "y": 940
}, },
"width": 12, "width": 12,
"height": 292, "height": 292,
@ -460,15 +460,15 @@
"underline": false, "underline": false,
"labelWidth": 25, "labelWidth": 25,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "c.t1", "id": "c.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 509,
"y": 983 "y": 940
}, },
"width": 12, "width": 12,
"height": 292, "height": 292,
@ -498,15 +498,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "b.t1.t2", "id": "b.t1.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 1113 "y": 1070
}, },
"width": 20, "width": 20,
"height": 80, "height": 80,
@ -536,7 +536,7 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
} }
], ],
@ -568,17 +568,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 349 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -> b)[1]", "id": "(a -> b)[1]",
@ -607,17 +607,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 479 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 479 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -645,18 +645,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 609 "y": 566
}, },
{ {
"x": 575, "x": 515,
"y": 609 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -684,18 +684,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 739 "y": 696
}, },
{ {
"x": 325, "x": 295,
"y": 739 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[1]", "id": "(c -> b)[1]",
@ -723,18 +723,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 869 "y": 826
}, },
{ {
"x": 325, "x": 295,
"y": 869 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.t1 -> c.t1)[0]", "id": "(b.t1 -> c.t1)[0]",
@ -762,18 +762,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 999 "y": 956
}, },
{ {
"x": 569, "x": 509,
"y": 999 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.t1.t2 -> c.t1)[0]", "id": "(b.t1.t2 -> c.t1)[0]",
@ -801,18 +801,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 1129 "y": 1086
}, },
{ {
"x": 569, "x": 509,
"y": 1129 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c.t1 -> b.t1)[0]", "id": "(c.t1 -> b.t1)[0]",
@ -840,18 +840,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 569, "x": 509,
"y": 1259 "y": 1216
}, },
{ {
"x": 331, "x": 301,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[1]", "id": "(b -> c)[1]",
@ -879,18 +879,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 1389 "y": 1346
}, },
{ {
"x": 575, "x": 515,
"y": 1389 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[2]", "id": "(c -> b)[2]",
@ -918,18 +918,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1775 "y": 1732
}, },
{ {
"x": 325, "x": 295,
"y": 1775 "y": 1732
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -958,17 +958,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -996,18 +996,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(c -- )[0]", "id": "(c -- )[0]",
@ -1035,18 +1035,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 219 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(d -- )[0]", "id": "(d -- )[0]",
@ -1074,18 +1074,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 219 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 2161 "y": 2118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 62 "y": 50
}, },
"width": 150, "width": 150,
"height": 128, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "red", "stroke": "red",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -45,7 +45,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 1084 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -75,15 +75,15 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 225, "x": 220,
"y": 64 "y": 50
}, },
"width": 200, "width": 200,
"height": 126, "height": 126,
@ -91,7 +91,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -121,8 +121,8 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -152,23 +152,23 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 140, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -198,8 +198,8 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 418 "y": 404
}, },
"width": 12, "width": 12,
"height": 698, "height": 698,
@ -229,15 +229,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 565, "x": 555,
"y": 434 "y": 420
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -267,15 +267,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 732, "x": 710,
"y": 64 "y": 50
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -283,7 +283,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -313,8 +313,8 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 819, "x": 797,
"y": 532 "y": 518
}, },
"width": 12, "width": 12,
"height": 340, "height": 340,
@ -344,15 +344,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 815, "x": 793,
"y": 548 "y": 534
}, },
"width": 20, "width": 20,
"height": 308, "height": 308,
@ -382,15 +382,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 811, "x": 789,
"y": 564 "y": 550
}, },
"width": 28, "width": 28,
"height": 162, "height": 162,
@ -420,15 +420,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 995, "x": 966,
"y": 64 "y": 50
}, },
"width": 160, "width": 160,
"height": 126, "height": 126,
@ -436,7 +436,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -466,8 +466,8 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1069, "x": 1040,
"y": 646 "y": 632
}, },
"width": 12, "width": 12,
"height": 388, "height": 388,
@ -497,15 +497,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1065, "x": 1036,
"y": 662 "y": 648
}, },
"width": 20, "width": 20,
"height": 356, "height": 356,
@ -535,15 +535,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1061, "x": 1032,
"y": 678 "y": 664
}, },
"width": 28, "width": 28,
"height": 324, "height": 324,
@ -573,15 +573,15 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1057, "x": 1028,
"y": 694 "y": 680
}, },
"width": 36, "width": 36,
"height": 292, "height": 292,
@ -611,15 +611,15 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 5 "level": 5
}, },
{ {
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 1227, "x": 1196,
"y": 64 "y": 50
}, },
"width": 197, "width": 197,
"height": 126, "height": 126,
@ -627,7 +627,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -657,8 +657,8 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 890 "y": 876
}, },
"width": 12, "width": 12,
"height": 420, "height": 420,
@ -688,15 +688,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1315, "x": 1284,
"y": 906 "y": 892
}, },
"width": 20, "width": 20,
"height": 388, "height": 388,
@ -726,15 +726,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1311, "x": 1280,
"y": 922 "y": 908
}, },
"width": 28, "width": 28,
"height": 356, "height": 356,
@ -764,15 +764,15 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1307, "x": 1276,
"y": 938 "y": 924
}, },
"width": 36, "width": 36,
"height": 324, "height": 324,
@ -802,15 +802,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 5 "level": 5
}, },
{ {
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1303, "x": 1272,
"y": 954 "y": 940
}, },
"width": 44, "width": 44,
"height": 292, "height": 292,
@ -840,15 +840,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 6 "level": 6
}, },
{ {
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 1344 "y": 1330
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -878,7 +878,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -910,17 +910,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 320 "y": 306
}, },
{ {
"x": 319, "x": 314,
"y": 320 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemResponse.a -> item.a.b)[0]", "id": "(itemResponse.a -> item.a.b)[0]",
@ -948,18 +948,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 326,
"y": 450 "y": 436
}, },
{ {
"x": 565, "x": 555,
"y": 450 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(item.a.b -> essayRubric.a.b.c)[0]", "id": "(item.a.b -> essayRubric.a.b.c)[0]",
@ -987,18 +987,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 585, "x": 575,
"y": 580 "y": 566
}, },
{ {
"x": 811, "x": 789,
"y": 580 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]",
@ -1026,18 +1026,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 839, "x": 817,
"y": 710 "y": 696
}, },
{ {
"x": 1057, "x": 1028,
"y": 710 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(item.a -> essayRubric.a.b)[0]", "id": "(item.a -> essayRubric.a.b)[0]",
@ -1065,18 +1065,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 581, "x": 571,
"y": 840 "y": 826
}, },
{ {
"x": 815, "x": 793,
"y": 840 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]",
@ -1104,18 +1104,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1093, "x": 1064,
"y": 970 "y": 956
}, },
{ {
"x": 1303.5, "x": 1272.5,
"y": 970 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.abc -> item.a)[0]", "id": "(scorer.abc -> item.a)[0]",
@ -1144,17 +1144,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1100 "y": 1086
}, },
{ {
"x": 569, "x": 559,
"y": 1100 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemOutcome.a.b.c.d.e -> scorer)[0]", "id": "(itemOutcome.a.b.c.d.e -> scorer)[0]",
@ -1182,18 +1182,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1303.5, "x": 1272.5,
"y": 1230 "y": 1216
}, },
{ {
"x": 75, "x": 75,
"y": 1230 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -> itemResponse.c)[0]", "id": "(scorer -> itemResponse.c)[0]",
@ -1222,17 +1222,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1360 "y": 1346
}, },
{ {
"x": 319, "x": 314,
"y": 1360 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -- )[0]", "id": "(scorer -- )[0]",
@ -1261,17 +1261,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 190 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemResponse -- )[0]", "id": "(itemResponse -- )[0]",
@ -1299,18 +1299,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 190 "y": 176
}, },
{ {
"x": 325, "x": 320,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(item -- )[0]", "id": "(item -- )[0]",
@ -1338,18 +1338,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 565,
"y": 190 "y": 176
}, },
{ {
"x": 575, "x": 565,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(essayRubric -- )[0]", "id": "(essayRubric -- )[0]",
@ -1377,18 +1377,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 803,
"y": 190 "y": 176
}, },
{ {
"x": 825, "x": 803,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(concept -- )[0]", "id": "(concept -- )[0]",
@ -1416,18 +1416,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1046,
"y": 190 "y": 176
}, },
{ {
"x": 1075, "x": 1046,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemOutcome -- )[0]", "id": "(itemOutcome -- )[0]",
@ -1455,18 +1455,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325.5, "x": 1294.5,
"y": 190 "y": 176
}, },
{ {
"x": 1325.5, "x": 1294.5,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 62 "y": 50
}, },
"width": 150, "width": 150,
"height": 128, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "red", "stroke": "red",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -45,7 +45,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 1084 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -75,15 +75,15 @@
"underline": false, "underline": false,
"labelWidth": 31, "labelWidth": 31,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 225, "x": 220,
"y": 64 "y": 50
}, },
"width": 200, "width": 200,
"height": 126, "height": 126,
@ -91,7 +91,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -121,8 +121,8 @@
"id": "itemResponse.a", "id": "itemResponse.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -152,23 +152,23 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 140, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -198,8 +198,8 @@
"id": "item.a", "id": "item.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 418 "y": 404
}, },
"width": 12, "width": 12,
"height": 698, "height": 698,
@ -229,15 +229,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.a.b", "id": "item.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 565, "x": 555,
"y": 434 "y": 420
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -267,15 +267,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 732, "x": 710,
"y": 64 "y": 50
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -283,7 +283,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -313,8 +313,8 @@
"id": "essayRubric.a", "id": "essayRubric.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 819, "x": 797,
"y": 532 "y": 518
}, },
"width": 12, "width": 12,
"height": 340, "height": 340,
@ -344,15 +344,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric.a.b", "id": "essayRubric.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 815, "x": 793,
"y": 548 "y": 534
}, },
"width": 20, "width": 20,
"height": 308, "height": 308,
@ -382,15 +382,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "essayRubric.a.b.c", "id": "essayRubric.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 811, "x": 789,
"y": 564 "y": 550
}, },
"width": 28, "width": 28,
"height": 162, "height": 162,
@ -420,15 +420,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 995, "x": 966,
"y": 64 "y": 50
}, },
"width": 160, "width": 160,
"height": 126, "height": 126,
@ -436,7 +436,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -466,8 +466,8 @@
"id": "concept.a", "id": "concept.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1069, "x": 1040,
"y": 646 "y": 632
}, },
"width": 12, "width": 12,
"height": 388, "height": 388,
@ -497,15 +497,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "concept.a.b", "id": "concept.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1065, "x": 1036,
"y": 662 "y": 648
}, },
"width": 20, "width": 20,
"height": 356, "height": 356,
@ -535,15 +535,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "concept.a.b.c", "id": "concept.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1061, "x": 1032,
"y": 678 "y": 664
}, },
"width": 28, "width": 28,
"height": 324, "height": 324,
@ -573,15 +573,15 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "concept.a.b.c.d", "id": "concept.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1057, "x": 1028,
"y": 694 "y": 680
}, },
"width": 36, "width": 36,
"height": 292, "height": 292,
@ -611,15 +611,15 @@
"underline": false, "underline": false,
"labelWidth": 14, "labelWidth": 14,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 5 "level": 5
}, },
{ {
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 1227, "x": 1196,
"y": 64 "y": 50
}, },
"width": 197, "width": 197,
"height": 126, "height": 126,
@ -627,7 +627,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -657,8 +657,8 @@
"id": "itemOutcome.a", "id": "itemOutcome.a",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 890 "y": 876
}, },
"width": 12, "width": 12,
"height": 420, "height": 420,
@ -688,15 +688,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.a.b", "id": "itemOutcome.a.b",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1315, "x": 1284,
"y": 906 "y": 892
}, },
"width": 20, "width": 20,
"height": 388, "height": 388,
@ -726,15 +726,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 31, "labelHeight": 31,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "itemOutcome.a.b.c", "id": "itemOutcome.a.b.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1311, "x": 1280,
"y": 922 "y": 908
}, },
"width": 28, "width": 28,
"height": 356, "height": 356,
@ -764,15 +764,15 @@
"underline": false, "underline": false,
"labelWidth": 12, "labelWidth": 12,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 4 "level": 4
}, },
{ {
"id": "itemOutcome.a.b.c.d", "id": "itemOutcome.a.b.c.d",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1307, "x": 1276,
"y": 938 "y": 924
}, },
"width": 36, "width": 36,
"height": 324, "height": 324,
@ -802,15 +802,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 5 "level": 5
}, },
{ {
"id": "itemOutcome.a.b.c.d.e", "id": "itemOutcome.a.b.c.d.e",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1303, "x": 1272,
"y": 954 "y": 940
}, },
"width": 44, "width": 44,
"height": 292, "height": 292,
@ -840,15 +840,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 6 "level": 6
}, },
{ {
"id": "itemResponse.c", "id": "itemResponse.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 1344 "y": 1330
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -878,7 +878,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -910,17 +910,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 320 "y": 306
}, },
{ {
"x": 319, "x": 314,
"y": 320 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemResponse.a -> item.a.b)[0]", "id": "(itemResponse.a -> item.a.b)[0]",
@ -948,18 +948,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 326,
"y": 450 "y": 436
}, },
{ {
"x": 565, "x": 555,
"y": 450 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(item.a.b -> essayRubric.a.b.c)[0]", "id": "(item.a.b -> essayRubric.a.b.c)[0]",
@ -987,18 +987,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 585, "x": 575,
"y": 580 "y": 566
}, },
{ {
"x": 811, "x": 789,
"y": 580 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]", "id": "(essayRubric.a.b.c -> concept.a.b.c.d)[0]",
@ -1026,18 +1026,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 839, "x": 817,
"y": 710 "y": 696
}, },
{ {
"x": 1057, "x": 1028,
"y": 710 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(item.a -> essayRubric.a.b)[0]", "id": "(item.a -> essayRubric.a.b)[0]",
@ -1065,18 +1065,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 581, "x": 571,
"y": 840 "y": 826
}, },
{ {
"x": 815, "x": 793,
"y": 840 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]", "id": "(concept.a.b.c.d -> itemOutcome.a.b.c.d.e)[0]",
@ -1104,18 +1104,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1093, "x": 1064,
"y": 970 "y": 956
}, },
{ {
"x": 1303.5, "x": 1272.5,
"y": 970 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.abc -> item.a)[0]", "id": "(scorer.abc -> item.a)[0]",
@ -1144,17 +1144,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1100 "y": 1086
}, },
{ {
"x": 569, "x": 559,
"y": 1100 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemOutcome.a.b.c.d.e -> scorer)[0]", "id": "(itemOutcome.a.b.c.d.e -> scorer)[0]",
@ -1182,18 +1182,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1303.5, "x": 1272.5,
"y": 1230 "y": 1216
}, },
{ {
"x": 75, "x": 75,
"y": 1230 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -> itemResponse.c)[0]", "id": "(scorer -> itemResponse.c)[0]",
@ -1222,17 +1222,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1360 "y": 1346
}, },
{ {
"x": 319, "x": 314,
"y": 1360 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -- )[0]", "id": "(scorer -- )[0]",
@ -1261,17 +1261,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 190 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemResponse -- )[0]", "id": "(itemResponse -- )[0]",
@ -1299,18 +1299,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 190 "y": 176
}, },
{ {
"x": 325, "x": 320,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(item -- )[0]", "id": "(item -- )[0]",
@ -1338,18 +1338,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 565,
"y": 190 "y": 176
}, },
{ {
"x": 575, "x": 565,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(essayRubric -- )[0]", "id": "(essayRubric -- )[0]",
@ -1377,18 +1377,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 803,
"y": 190 "y": 176
}, },
{ {
"x": 825, "x": 803,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(concept -- )[0]", "id": "(concept -- )[0]",
@ -1416,18 +1416,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1046,
"y": 190 "y": 176
}, },
{ {
"x": 1075, "x": 1046,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemOutcome -- )[0]", "id": "(itemOutcome -- )[0]",
@ -1455,18 +1455,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325.5, "x": 1294.5,
"y": 190 "y": 176
}, },
{ {
"x": 1325.5, "x": 1294.5,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -9,12 +9,12 @@
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,16 +83,16 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -122,16 +122,16 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -162,7 +162,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -20, "x": -20,
"y": 479 "y": 436
}, },
"width": 190, "width": 190,
"height": 126, "height": 126,
@ -170,7 +170,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -193,7 +193,7 @@
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
@ -201,7 +201,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -50, "x": -50,
"y": 735 "y": 692
}, },
"width": 250, "width": 250,
"height": 126, "height": 126,
@ -209,7 +209,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -232,15 +232,15 @@
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"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": 128, "x": 98,
"y": 1121 "y": 1078
}, },
"width": 393, "width": 393,
"height": 142, "height": 142,
@ -248,7 +248,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -271,15 +271,15 @@
"labelWidth": 293, "labelWidth": 293,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"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": 554, "x": 464,
"y": 1523 "y": 1480
}, },
"width": 541, "width": 541,
"height": 126, "height": 126,
@ -287,7 +287,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -310,7 +310,7 @@
"labelWidth": 441, "labelWidth": 441,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
} }
], ],
@ -342,17 +342,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 349 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -380,18 +380,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 991 "y": 948
}, },
{ {
"x": 575, "x": 515,
"y": 991 "y": 948
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -419,18 +419,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1393 "y": 1350
}, },
{ {
"x": 325, "x": 295,
"y": 1393 "y": 1350
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -459,17 +459,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -497,18 +497,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(c -- )[0]", "id": "(c -- )[0]",
@ -536,18 +536,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 219 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(d -- )[0]", "id": "(d -- )[0]",
@ -575,18 +575,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 219 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css"> width="1255" height="1886" viewBox="-150 -50 1255 1886"><style type="text/css">
<![CDATA[ <![CDATA[
.shape { .shape {
shape-rendering: geometricPrecision; shape-rendering: geometricPrecision;
@ -14,9 +14,9 @@ width="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css">
} }
]]> ]]>
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;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="250" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.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 325.000000 221.000000 L 325.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 575.000000 221.000000 L 575.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 825.000000 221.000000 L 825.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="128" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="324.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="324.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="554" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.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 321.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 327.000000 991.000000 L 571.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 573.000000 1393.000000 L 329.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="450.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="1345" height="1929"> </style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="220" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="295.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="515.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="735.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 178.000000 L 295.000000 1735.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 178.000000 L 515.000000 1735.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 178.000000 L 735.000000 1735.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 -&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 306.000000 L 291.000000 306.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 948.000000 L 511.000000 948.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 1350.000000 L 299.000000 1350.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="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="294.500000" y="1144.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="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="734.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1255" height="1886">
<rect x="0" y="0" width="1345" height="1929" fill="white"></rect> <rect x="0" y="0" width="1255" height="1886" fill="white"></rect>
<rect x="434.000000" y="1383.000000" width="33" height="21" fill="black"></rect> <rect x="389.000000" y="1340.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

@ -9,12 +9,12 @@
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,16 +83,16 @@
"id": "c", "id": "c",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 440,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -122,16 +122,16 @@
"id": "d", "id": "d",
"type": "", "type": "",
"pos": { "pos": {
"x": 750, "x": 660,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -162,7 +162,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -20, "x": -20,
"y": 479 "y": 436
}, },
"width": 190, "width": 190,
"height": 126, "height": 126,
@ -170,7 +170,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -193,7 +193,7 @@
"labelWidth": 90, "labelWidth": 90,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
@ -201,7 +201,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": -50, "x": -50,
"y": 735 "y": 692
}, },
"width": 250, "width": 250,
"height": 126, "height": 126,
@ -209,7 +209,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -232,15 +232,15 @@
"labelWidth": 150, "labelWidth": 150,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"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": 128, "x": 98,
"y": 1121 "y": 1078
}, },
"width": 393, "width": 393,
"height": 142, "height": 142,
@ -248,7 +248,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -271,15 +271,15 @@
"labelWidth": 293, "labelWidth": 293,
"labelHeight": 42, "labelHeight": 42,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
}, },
{ {
"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": 554, "x": 464,
"y": 1523 "y": 1480
}, },
"width": 541, "width": 541,
"height": 126, "height": 126,
@ -287,7 +287,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#EDF0FD", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -310,7 +310,7 @@
"labelWidth": 441, "labelWidth": 441,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 2 "level": 2
} }
], ],
@ -342,17 +342,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 325, "x": 295,
"y": 349 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> c)[0]", "id": "(b -> c)[0]",
@ -380,18 +380,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 991 "y": 948
}, },
{ {
"x": 575, "x": 515,
"y": 991 "y": 948
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(c -> b)[0]", "id": "(c -> b)[0]",
@ -419,18 +419,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 1393 "y": 1350
}, },
{ {
"x": 325, "x": 295,
"y": 1393 "y": 1350
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -459,17 +459,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -497,18 +497,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(c -- )[0]", "id": "(c -- )[0]",
@ -536,18 +536,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 515,
"y": 219 "y": 176
}, },
{ {
"x": 575, "x": 515,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(d -- )[0]", "id": "(d -- )[0]",
@ -575,18 +575,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 735,
"y": 219 "y": 176
}, },
{ {
"x": 825, "x": 735,
"y": 1779 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css"> width="1255" height="1886" viewBox="-150 -50 1255 1886"><style type="text/css">
<![CDATA[ <![CDATA[
.shape { .shape {
shape-rendering: geometricPrecision; shape-rendering: geometricPrecision;
@ -14,9 +14,9 @@ width="1345" height="1929" viewBox="-150 -50 1345 1929"><style type="text/css">
} }
]]> ]]>
</style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="169" style="fill:#E3E9FD;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="250" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="325.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="500" y="52" width="150" height="167" style="fill:#F7F8FE;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="575.000000" y="138.500000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="750" y="52" width="150" height="167" style="fill:#E3E9FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="825.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 325.000000 221.000000 L 325.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 575.000000 221.000000 L 575.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 825.000000 221.000000 L 825.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="128" y="1121" width="393" height="142" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="324.500000" y="1187.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25"><tspan x="324.500000" dy="0.000000">Some one who believes imaginary things</tspan><tspan x="324.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="554" y="1523" width="541" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="824.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 321.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 327.000000 991.000000 L 571.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 573.000000 1393.000000 L 329.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="450.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="1345" height="1929"> </style><g id="a"><g class="shape" ><rect x="0" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">a</text></g><g id="b"><g class="shape" ><rect x="220" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="295.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">b</text></g><g id="c"><g class="shape" ><rect x="440" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="515.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">c</text></g><g id="d"><g class="shape" ><rect x="660" y="50" width="150" height="126" style="fill:#EDF0FD;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="735.000000" y="116.000000" style="text-anchor:middle;font-size:16px;fill:#0A0F25">d</text></g><g id="(a -- )[0]"><path d="M 75.000000 178.000000 L 75.000000 1735.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 178.000000 L 295.000000 1735.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 178.000000 L 515.000000 1735.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 178.000000 L 735.000000 1735.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 -&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 306.000000 L 291.000000 306.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 948.000000 L 511.000000 948.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 1350.000000 L 299.000000 1350.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="1356.000000" style="text-anchor:middle;font-size:16px;fill:#676C7E">okay</text></g><g id="a.explanation"><g class="shape" ><rect x="-20" y="436" width="190" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="502.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="692" width="250" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="75.000000" y="758.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="1078" width="393" height="142" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="294.500000" y="1144.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="1480" width="541" height="126" style="fill:#FFFFFF;stroke:#0D32B2;opacity:1.000000;stroke-width:2;" /></g><text class="text-bold" x="734.500000" y="1546.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><mask id="labels" maskUnits="userSpaceOnUse" x="0" y="0" width="1255" height="1886">
<rect x="0" y="0" width="1345" height="1929" fill="white"></rect> <rect x="0" y="0" width="1255" height="1886" fill="white"></rect>
<rect x="434.000000" y="1383.000000" width="33" height="21" fill="black"></rect> <rect x="389.000000" y="1340.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,8 +8,8 @@
"x": 0, "x": 0,
"y": 0 "y": 0
}, },
"width": 2180, "width": 2193,
"height": 2311, "height": 2288,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -48,7 +48,7 @@
"y": 86 "y": 86
}, },
"width": 150, "width": 150,
"height": 149, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -83,11 +83,11 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 105 "y": 86
}, },
"width": 150, "width": 150,
"height": 130, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -122,8 +122,8 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 484, "x": 440,
"y": 109 "y": 86
}, },
"width": 182, "width": 182,
"height": 126, "height": 126,
@ -161,8 +161,8 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 743, "x": 692,
"y": 109 "y": 86
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
@ -200,8 +200,8 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 985, "x": 927,
"y": 109 "y": 86
}, },
"width": 180, "width": 180,
"height": 126, "height": 126,
@ -239,8 +239,8 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 1237, "x": 1177,
"y": 109 "y": 86
}, },
"width": 176, "width": 176,
"height": 126, "height": 126,
@ -278,8 +278,8 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 1482, "x": 1423,
"y": 109 "y": 86
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -317,8 +317,8 @@
"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": 416, "x": 372,
"y": 755 "y": 732
}, },
"width": 318, "width": 318,
"height": 126, "height": 126,
@ -326,7 +326,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -349,17 +349,55 @@
"labelWidth": 218, "labelWidth": 218,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 3 "level": 3
}, },
{
"id": "How this is rendered.only if root is not sequence",
"type": "",
"pos": {
"x": 730,
"y": 1338
},
"width": 1408,
"height": 80,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "only if root is not sequence",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 195,
"labelHeight": 26,
"zIndex": 1,
"level": 2
},
{ {
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 815, "x": 768,
"y": 1125 "y": 1102
}, },
"width": 20, "width": 12,
"height": 422, "height": 422,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -387,15 +425,15 @@
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1708, "x": 1679,
"y": 109 "y": 86
}, },
"width": 235, "width": 235,
"height": 126, "height": 126,
@ -433,8 +471,8 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1971, "x": 1984,
"y": 109 "y": 86
}, },
"width": 209, "width": 209,
"height": 126, "height": 126,
@ -472,10 +510,10 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1065, "x": 1011,
"y": 1905 "y": 1882
}, },
"width": 20, "width": 12,
"height": 292, "height": 292,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -503,7 +541,7 @@
"underline": false, "underline": false,
"labelWidth": 52, "labelWidth": 52,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
} }
], ],
@ -535,17 +573,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 365 "y": 342
}, },
{ {
"x": 325, "x": 295,
"y": 365 "y": 342
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2ast -> CLI)[0]", "id": "How this is rendered.(d2ast -> CLI)[0]",
@ -573,18 +611,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 495 "y": 472
}, },
{ {
"x": 75, "x": 75,
"y": 495 "y": 472
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2compiler)[0]", "id": "How this is rendered.(CLI -> d2compiler)[0]",
@ -613,17 +651,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 625 "y": 602
}, },
{ {
"x": 575, "x": 531,
"y": 625 "y": 602
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2compiler -> CLI)[0]", "id": "How this is rendered.(d2compiler -> CLI)[0]",
@ -651,18 +689,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 531,
"y": 1011 "y": 988
}, },
{ {
"x": 75, "x": 75,
"y": 1011 "y": 988
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2layout.layout)[0]", "id": "How this is rendered.(CLI -> d2layout.layout)[0]",
@ -691,17 +729,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1141 "y": 1118
}, },
{ {
"x": 815.5, "x": 768.5,
"y": 1141 "y": 1118
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]", "id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]",
@ -729,18 +767,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 835.5, "x": 780.5,
"y": 1271 "y": 1248
}, },
{ {
"x": 1825.5, "x": 1796.5,
"y": 1271 "y": 1248
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]", "id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]",
@ -768,18 +806,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 835.5, "x": 780.5,
"y": 1401 "y": 1378
}, },
{ {
"x": 2075.5, "x": 2088.5,
"y": 1401 "y": 1378
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]", "id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]",
@ -807,18 +845,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 835.5, "x": 780.5,
"y": 1531 "y": 1508
}, },
{ {
"x": 1825.5, "x": 1796.5,
"y": 1531 "y": 1508
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout -> CLI)[0]", "id": "How this is rendered.(d2layout -> CLI)[0]",
@ -846,18 +884,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825.5, "x": 774.5,
"y": 1661 "y": 1638
}, },
{ {
"x": 75, "x": 75,
"y": 1661 "y": 1638
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2exporter)[0]", "id": "How this is rendered.(CLI -> d2exporter)[0]",
@ -886,17 +924,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1791 "y": 1768
}, },
{ {
"x": 1075, "x": 1017,
"y": 1791 "y": 1768
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> d2themes)[0]", "id": "How this is rendered.(d2exporter.export -> d2themes)[0]",
@ -924,18 +962,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1085, "x": 1023,
"y": 1921 "y": 1898
}, },
{ {
"x": 1325, "x": 1265,
"y": 1921 "y": 1898
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> d2renderer)[0]", "id": "How this is rendered.(d2exporter.export -> d2renderer)[0]",
@ -963,18 +1001,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1085, "x": 1023,
"y": 2051 "y": 2028
}, },
{ {
"x": 1575, "x": 1516,
"y": 2051 "y": 2028
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> CLI)[0]", "id": "How this is rendered.(d2exporter.export -> CLI)[0]",
@ -1002,18 +1040,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1065, "x": 1011,
"y": 2181 "y": 2158
}, },
{ {
"x": 75, "x": 75,
"y": 2181 "y": 2158
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(How this is rendered.CLI -- )[0]", "id": "(How this is rendered.CLI -- )[0]",
@ -1042,17 +1080,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 235 "y": 212
}, },
{ {
"x": 75, "x": 75,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2ast -- )[0]", "id": "(How this is rendered.d2ast -- )[0]",
@ -1080,18 +1118,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 235 "y": 212
}, },
{ {
"x": 325, "x": 295,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2compiler -- )[0]", "id": "(How this is rendered.d2compiler -- )[0]",
@ -1119,18 +1157,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 531,
"y": 235 "y": 212
}, },
{ {
"x": 575, "x": 531,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2layout -- )[0]", "id": "(How this is rendered.d2layout -- )[0]",
@ -1158,18 +1196,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825.5, "x": 774.5,
"y": 235 "y": 212
}, },
{ {
"x": 825.5, "x": 774.5,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2exporter -- )[0]", "id": "(How this is rendered.d2exporter -- )[0]",
@ -1197,18 +1235,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1017,
"y": 235 "y": 212
}, },
{ {
"x": 1075, "x": 1017,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2themes -- )[0]", "id": "(How this is rendered.d2themes -- )[0]",
@ -1236,18 +1274,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325, "x": 1265,
"y": 235 "y": 212
}, },
{ {
"x": 1325, "x": 1265,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2renderer -- )[0]", "id": "(How this is rendered.d2renderer -- )[0]",
@ -1275,18 +1313,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1575, "x": 1516,
"y": 235 "y": 212
}, },
{ {
"x": 1575, "x": 1516,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2sequencelayout -- )[0]", "id": "(How this is rendered.d2sequencelayout -- )[0]",
@ -1314,18 +1352,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1825.5, "x": 1796.5,
"y": 235 "y": 212
}, },
{ {
"x": 1825.5, "x": 1796.5,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2dagrelayout -- )[0]", "id": "(How this is rendered.d2dagrelayout -- )[0]",
@ -1353,18 +1391,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2075.5, "x": 2088.5,
"y": 235 "y": 212
}, },
{ {
"x": 2075.5, "x": 2088.5,
"y": 2311 "y": 2288
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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,8 +8,8 @@
"x": 12, "x": 12,
"y": 12 "y": 12
}, },
"width": 2180, "width": 2193,
"height": 2311, "height": 2288,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -48,7 +48,7 @@
"y": 98 "y": 98
}, },
"width": 150, "width": 150,
"height": 149, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -83,11 +83,11 @@
"id": "How this is rendered.d2ast", "id": "How this is rendered.d2ast",
"type": "", "type": "",
"pos": { "pos": {
"x": 262, "x": 232,
"y": 117 "y": 98
}, },
"width": 150, "width": 150,
"height": 130, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -122,8 +122,8 @@
"id": "How this is rendered.d2compiler", "id": "How this is rendered.d2compiler",
"type": "", "type": "",
"pos": { "pos": {
"x": 496, "x": 452,
"y": 121 "y": 98
}, },
"width": 182, "width": 182,
"height": 126, "height": 126,
@ -161,8 +161,8 @@
"id": "How this is rendered.d2layout", "id": "How this is rendered.d2layout",
"type": "", "type": "",
"pos": { "pos": {
"x": 755, "x": 704,
"y": 121 "y": 98
}, },
"width": 165, "width": 165,
"height": 126, "height": 126,
@ -200,8 +200,8 @@
"id": "How this is rendered.d2exporter", "id": "How this is rendered.d2exporter",
"type": "", "type": "",
"pos": { "pos": {
"x": 997, "x": 939,
"y": 121 "y": 98
}, },
"width": 180, "width": 180,
"height": 126, "height": 126,
@ -239,8 +239,8 @@
"id": "How this is rendered.d2themes", "id": "How this is rendered.d2themes",
"type": "", "type": "",
"pos": { "pos": {
"x": 1249, "x": 1189,
"y": 121 "y": 98
}, },
"width": 176, "width": 176,
"height": 126, "height": 126,
@ -278,8 +278,8 @@
"id": "How this is rendered.d2renderer", "id": "How this is rendered.d2renderer",
"type": "", "type": "",
"pos": { "pos": {
"x": 1494, "x": 1435,
"y": 121 "y": 98
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -317,8 +317,8 @@
"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": 416, "x": 372,
"y": 755 "y": 732
}, },
"width": 318, "width": 318,
"height": 126, "height": 126,
@ -326,7 +326,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#FFFFFF",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -349,17 +349,55 @@
"labelWidth": 218, "labelWidth": 218,
"labelHeight": 26, "labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER", "labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 1, "zIndex": 5,
"level": 3 "level": 3
}, },
{
"id": "How this is rendered.only if root is not sequence",
"type": "",
"pos": {
"x": 730,
"y": 1338
},
"width": 1408,
"height": 80,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#EDF0FD",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "only if root is not sequence",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 195,
"labelHeight": 26,
"zIndex": 1,
"level": 2
},
{ {
"id": "How this is rendered.d2layout.layout", "id": "How this is rendered.d2layout.layout",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 827, "x": 780,
"y": 1137 "y": 1114
}, },
"width": 20, "width": 12,
"height": 422, "height": 422,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -387,15 +425,15 @@
"underline": false, "underline": false,
"labelWidth": 50, "labelWidth": 50,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "How this is rendered.d2sequencelayout", "id": "How this is rendered.d2sequencelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1720, "x": 1691,
"y": 121 "y": 98
}, },
"width": 235, "width": 235,
"height": 126, "height": 126,
@ -433,8 +471,8 @@
"id": "How this is rendered.d2dagrelayout", "id": "How this is rendered.d2dagrelayout",
"type": "", "type": "",
"pos": { "pos": {
"x": 1983, "x": 1996,
"y": 121 "y": 98
}, },
"width": 209, "width": 209,
"height": 126, "height": 126,
@ -472,10 +510,10 @@
"id": "How this is rendered.d2exporter.export", "id": "How this is rendered.d2exporter.export",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1077, "x": 1023,
"y": 1917 "y": 1894
}, },
"width": 20, "width": 12,
"height": 292, "height": 292,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
@ -503,7 +541,7 @@
"underline": false, "underline": false,
"labelWidth": 52, "labelWidth": 52,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
} }
], ],
@ -535,17 +573,17 @@
"route": [ "route": [
{ {
"x": 87, "x": 87,
"y": 377 "y": 354
}, },
{ {
"x": 337, "x": 307,
"y": 377 "y": 354
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2ast -> CLI)[0]", "id": "How this is rendered.(d2ast -> CLI)[0]",
@ -573,18 +611,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 337, "x": 307,
"y": 507 "y": 484
}, },
{ {
"x": 87, "x": 87,
"y": 507 "y": 484
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2compiler)[0]", "id": "How this is rendered.(CLI -> d2compiler)[0]",
@ -613,17 +651,17 @@
"route": [ "route": [
{ {
"x": 87, "x": 87,
"y": 637 "y": 614
}, },
{ {
"x": 587, "x": 543,
"y": 637 "y": 614
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2compiler -> CLI)[0]", "id": "How this is rendered.(d2compiler -> CLI)[0]",
@ -651,18 +689,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 587, "x": 543,
"y": 1023 "y": 1000
}, },
{ {
"x": 87, "x": 87,
"y": 1023 "y": 1000
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2layout.layout)[0]", "id": "How this is rendered.(CLI -> d2layout.layout)[0]",
@ -691,17 +729,17 @@
"route": [ "route": [
{ {
"x": 87, "x": 87,
"y": 1153 "y": 1130
}, },
{ {
"x": 827.5, "x": 780.5,
"y": 1153 "y": 1130
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]", "id": "How this is rendered.(d2layout.layout -> d2sequencelayout)[0]",
@ -729,18 +767,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 847.5, "x": 792.5,
"y": 1283 "y": 1260
}, },
{ {
"x": 1837.5, "x": 1808.5,
"y": 1283 "y": 1260
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]", "id": "How this is rendered.(d2layout.layout -> d2dagrelayout)[0]",
@ -768,18 +806,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 847.5, "x": 792.5,
"y": 1413 "y": 1390
}, },
{ {
"x": 2087.5, "x": 2100.5,
"y": 1413 "y": 1390
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]", "id": "How this is rendered.(d2layout.layout <- d2sequencelayout)[0]",
@ -807,18 +845,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 847.5, "x": 792.5,
"y": 1543 "y": 1520
}, },
{ {
"x": 1837.5, "x": 1808.5,
"y": 1543 "y": 1520
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2layout -> CLI)[0]", "id": "How this is rendered.(d2layout -> CLI)[0]",
@ -846,18 +884,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 837.5, "x": 786.5,
"y": 1673 "y": 1650
}, },
{ {
"x": 87, "x": 87,
"y": 1673 "y": 1650
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(CLI -> d2exporter)[0]", "id": "How this is rendered.(CLI -> d2exporter)[0]",
@ -886,17 +924,17 @@
"route": [ "route": [
{ {
"x": 87, "x": 87,
"y": 1803 "y": 1780
}, },
{ {
"x": 1087, "x": 1029,
"y": 1803 "y": 1780
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> d2themes)[0]", "id": "How this is rendered.(d2exporter.export -> d2themes)[0]",
@ -924,18 +962,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1097, "x": 1035,
"y": 1933 "y": 1910
}, },
{ {
"x": 1337, "x": 1277,
"y": 1933 "y": 1910
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> d2renderer)[0]", "id": "How this is rendered.(d2exporter.export -> d2renderer)[0]",
@ -963,18 +1001,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1097, "x": 1035,
"y": 2063 "y": 2040
}, },
{ {
"x": 1587, "x": 1528,
"y": 2063 "y": 2040
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "How this is rendered.(d2exporter.export -> CLI)[0]", "id": "How this is rendered.(d2exporter.export -> CLI)[0]",
@ -1002,18 +1040,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1077, "x": 1023,
"y": 2193 "y": 2170
}, },
{ {
"x": 87, "x": 87,
"y": 2193 "y": 2170
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(How this is rendered.CLI -- )[0]", "id": "(How this is rendered.CLI -- )[0]",
@ -1042,17 +1080,17 @@
"route": [ "route": [
{ {
"x": 87, "x": 87,
"y": 247 "y": 224
}, },
{ {
"x": 87, "x": 87,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2ast -- )[0]", "id": "(How this is rendered.d2ast -- )[0]",
@ -1080,18 +1118,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 337, "x": 307,
"y": 247 "y": 224
}, },
{ {
"x": 337, "x": 307,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2compiler -- )[0]", "id": "(How this is rendered.d2compiler -- )[0]",
@ -1119,18 +1157,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 587, "x": 543,
"y": 247 "y": 224
}, },
{ {
"x": 587, "x": 543,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2layout -- )[0]", "id": "(How this is rendered.d2layout -- )[0]",
@ -1158,18 +1196,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 837.5, "x": 786.5,
"y": 247 "y": 224
}, },
{ {
"x": 837.5, "x": 786.5,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2exporter -- )[0]", "id": "(How this is rendered.d2exporter -- )[0]",
@ -1197,18 +1235,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1087, "x": 1029,
"y": 247 "y": 224
}, },
{ {
"x": 1087, "x": 1029,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2themes -- )[0]", "id": "(How this is rendered.d2themes -- )[0]",
@ -1236,18 +1274,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1337, "x": 1277,
"y": 247 "y": 224
}, },
{ {
"x": 1337, "x": 1277,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2renderer -- )[0]", "id": "(How this is rendered.d2renderer -- )[0]",
@ -1275,18 +1313,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1587, "x": 1528,
"y": 247 "y": 224
}, },
{ {
"x": 1587, "x": 1528,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2sequencelayout -- )[0]", "id": "(How this is rendered.d2sequencelayout -- )[0]",
@ -1314,18 +1352,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1837.5, "x": 1808.5,
"y": 247 "y": 224
}, },
{ {
"x": 1837.5, "x": 1808.5,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(How this is rendered.d2dagrelayout -- )[0]", "id": "(How this is rendered.d2dagrelayout -- )[0]",
@ -1353,18 +1391,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 2087.5, "x": 2100.5,
"y": 247 "y": 224
}, },
{ {
"x": 2087.5, "x": 2100.5,
"y": 2323 "y": 2300
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -9,12 +9,12 @@
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,8 +83,8 @@
"id": "b.1", "id": "b.1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 673 "y": 630
}, },
"width": 12, "width": 12,
"height": 228, "height": 228,
@ -114,15 +114,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "b.1.2", "id": "b.1.2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 803 "y": 760
}, },
"width": 20, "width": 20,
"height": 82, "height": 82,
@ -152,7 +152,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
@ -160,7 +160,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 967 "y": 924
}, },
"width": 12, "width": 12,
"height": 178, "height": 178,
@ -190,7 +190,7 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
@ -198,7 +198,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 65, "x": 65,
"y": 983 "y": 940
}, },
"width": 20, "width": 20,
"height": 80, "height": 80,
@ -228,15 +228,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "b.3", "id": "b.3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 1113 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -266,7 +266,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -298,25 +298,25 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 155, "x": 175,
"y": 349 "y": 306
}, },
{ {
"x": 155, "x": 175,
"y": 429 "y": 386
}, },
{ {
"x": 75, "x": 75,
"y": 429 "y": 386
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -> b)[0]", "id": "(a -> b)[0]",
@ -345,17 +345,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 479 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 479 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> b.1)[0]", "id": "(b -> b.1)[0]",
@ -383,26 +383,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 609 "y": 566
}, },
{ {
"x": 405, "x": 395,
"y": 609 "y": 566
}, },
{ {
"x": 405, "x": 395,
"y": 689 "y": 646
}, },
{ {
"x": 331, "x": 301,
"y": 689 "y": 646
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "b.(1 -> 1.2)[0]", "id": "b.(1 -> 1.2)[0]",
@ -430,26 +430,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 739 "y": 696
}, },
{ {
"x": 405, "x": 395,
"y": 739 "y": 696
}, },
{ {
"x": 405, "x": 395,
"y": 819 "y": 776
}, },
{ {
"x": 335, "x": 305,
"y": 819 "y": 776
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.1.2 -> b)[0]", "id": "(b.1.2 -> b)[0]",
@ -477,26 +477,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 869 "y": 826
}, },
{ {
"x": 405, "x": 395,
"y": 869 "y": 826
}, },
{ {
"x": 405, "x": 395,
"y": 949 "y": 906
}, },
{ {
"x": 325, "x": 295,
"y": 949 "y": 906
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> a.1.2)[0]", "id": "(b -> a.1.2)[0]",
@ -524,18 +524,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 999 "y": 956
}, },
{ {
"x": 85, "x": 85,
"y": 999 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a.1 -> b.3)[0]", "id": "(a.1 -> b.3)[0]",
@ -564,17 +564,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1129 "y": 1086
}, },
{ {
"x": 319, "x": 289,
"y": 1129 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -603,17 +603,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -641,18 +641,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -9,12 +9,12 @@
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 169, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "b", "id": "b",
"type": "", "type": "",
"pos": { "pos": {
"x": 250, "x": 220,
"y": 52 "y": 50
}, },
"width": 150, "width": 150,
"height": 167, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,8 +83,8 @@
"id": "b.1", "id": "b.1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 673 "y": 630
}, },
"width": 12, "width": 12,
"height": 228, "height": 228,
@ -114,15 +114,15 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "b.1.2", "id": "b.1.2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 315, "x": 285,
"y": 803 "y": 760
}, },
"width": 20, "width": 20,
"height": 82, "height": 82,
@ -152,7 +152,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
@ -160,7 +160,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 967 "y": 924
}, },
"width": 12, "width": 12,
"height": 178, "height": 178,
@ -190,7 +190,7 @@
"underline": false, "underline": false,
"labelWidth": 15, "labelWidth": 15,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
@ -198,7 +198,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 65, "x": 65,
"y": 983 "y": 940
}, },
"width": 20, "width": 20,
"height": 80, "height": 80,
@ -228,15 +228,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "b.3", "id": "b.3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 289,
"y": 1113 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -266,7 +266,7 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -298,25 +298,25 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 349 "y": 306
}, },
{ {
"x": 155, "x": 175,
"y": 349 "y": 306
}, },
{ {
"x": 155, "x": 175,
"y": 429 "y": 386
}, },
{ {
"x": 75, "x": 75,
"y": 429 "y": 386
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -> b)[0]", "id": "(a -> b)[0]",
@ -345,17 +345,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 479 "y": 436
}, },
{ {
"x": 325, "x": 295,
"y": 479 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> b.1)[0]", "id": "(b -> b.1)[0]",
@ -383,26 +383,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 609 "y": 566
}, },
{ {
"x": 405, "x": 395,
"y": 609 "y": 566
}, },
{ {
"x": 405, "x": 395,
"y": 689 "y": 646
}, },
{ {
"x": 331, "x": 301,
"y": 689 "y": 646
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "b.(1 -> 1.2)[0]", "id": "b.(1 -> 1.2)[0]",
@ -430,26 +430,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 331, "x": 301,
"y": 739 "y": 696
}, },
{ {
"x": 405, "x": 395,
"y": 739 "y": 696
}, },
{ {
"x": 405, "x": 395,
"y": 819 "y": 776
}, },
{ {
"x": 335, "x": 305,
"y": 819 "y": 776
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b.1.2 -> b)[0]", "id": "(b.1.2 -> b)[0]",
@ -477,26 +477,26 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 335, "x": 305,
"y": 869 "y": 826
}, },
{ {
"x": 405, "x": 395,
"y": 869 "y": 826
}, },
{ {
"x": 405, "x": 395,
"y": 949 "y": 906
}, },
{ {
"x": 325, "x": 295,
"y": 949 "y": 906
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(b -> a.1.2)[0]", "id": "(b -> a.1.2)[0]",
@ -524,18 +524,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 999 "y": 956
}, },
{ {
"x": 85, "x": 85,
"y": 999 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a.1 -> b.3)[0]", "id": "(a.1 -> b.3)[0]",
@ -564,17 +564,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1129 "y": 1086
}, },
{ {
"x": 319, "x": 289,
"y": 1129 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(a -- )[0]", "id": "(a -- )[0]",
@ -603,17 +603,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 219 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(b -- )[0]", "id": "(b -- )[0]",
@ -641,18 +641,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 295,
"y": 219 "y": 176
}, },
{ {
"x": 325, "x": 295,
"y": 1259 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -14,7 +14,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "red", "stroke": "red",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 267, "x": 233,
"y": 124 "y": 141
}, },
"width": 150, "width": 150,
"height": 143, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,11 +83,11 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 584, "x": 453,
"y": 136 "y": 162
}, },
"width": 150, "width": 150,
"height": 152, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -122,16 +122,16 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 901, "x": 673,
"y": 161 "y": 162
}, },
"width": 150, "width": 150,
"height": 127, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F0F3F9", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -161,7 +161,7 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1192, "x": 893,
"y": 50 "y": 50
}, },
"width": 202, "width": 202,
@ -170,7 +170,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -228,14 +228,14 @@
"y": 418 "y": 418
}, },
{ {
"x": 342, "x": 308,
"y": 418 "y": 418
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> service)[0]", "id": "(bob -> service)[0]",
@ -263,18 +263,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 548 "y": 548
}, },
{ {
"x": 1293, "x": 994,
"y": 548 "y": 548
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(service -> db)[0]", "id": "(service -> db)[0]",
@ -302,18 +302,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 678 "y": 678
}, },
{ {
"x": 659, "x": 528,
"y": 678 "y": 678
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(db -> service)[0]", "id": "(db -> service)[0]",
@ -341,18 +341,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 528,
"y": 808 "y": 808
}, },
{ {
"x": 1293, "x": 994,
"y": 808 "y": 808
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(service -> bob)[0]", "id": "(service -> bob)[0]",
@ -380,18 +380,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 938 "y": 938
}, },
{ {
"x": 342, "x": 308,
"y": 938 "y": 938
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> alice)[0]", "id": "(bob -> alice)[0]",
@ -419,7 +419,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1068 "y": 1068
}, },
{ {
@ -430,7 +430,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(alice -> bob)[1]", "id": "(alice -> bob)[1]",
@ -462,14 +462,14 @@
"y": 1198 "y": 1198
}, },
{ {
"x": 342, "x": 308,
"y": 1198 "y": 1198
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> queue)[0]", "id": "(bob -> queue)[0]",
@ -497,18 +497,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1328 "y": 1328
}, },
{ {
"x": 976, "x": 748,
"y": 1328 "y": 1328
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(queue -> bob)[0]", "id": "(queue -> bob)[0]",
@ -536,18 +536,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 748,
"y": 1458 "y": 1458
}, },
{ {
"x": 342, "x": 308,
"y": 1458 "y": 1458
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> alice)[1]", "id": "(bob -> alice)[1]",
@ -575,7 +575,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1588 "y": 1588
}, },
{ {
@ -586,7 +586,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(alice -- )[0]", "id": "(alice -- )[0]",
@ -625,7 +625,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(bob -- )[0]", "id": "(bob -- )[0]",
@ -653,18 +653,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 293 "y": 293
}, },
{ {
"x": 342, "x": 308,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(db -- )[0]", "id": "(db -- )[0]",
@ -692,18 +692,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 528,
"y": 288 "y": 288
}, },
{ {
"x": 659, "x": 528,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(queue -- )[0]", "id": "(queue -- )[0]",
@ -731,18 +731,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 748,
"y": 288 "y": 288
}, },
{ {
"x": 976, "x": 748,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(service -- )[0]", "id": "(service -- )[0]",
@ -770,18 +770,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 288 "y": 288
}, },
{ {
"x": 1293, "x": 994,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -14,7 +14,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "red", "stroke": "red",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -44,16 +44,16 @@
"id": "bob", "id": "bob",
"type": "person", "type": "person",
"pos": { "pos": {
"x": 267, "x": 233,
"y": 124 "y": 141
}, },
"width": 150, "width": 150,
"height": 143, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 5, "strokeWidth": 5,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -83,11 +83,11 @@
"id": "db", "id": "db",
"type": "cylinder", "type": "cylinder",
"pos": { "pos": {
"x": 584, "x": 453,
"y": 136 "y": 162
}, },
"width": 150, "width": 150,
"height": 152, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
@ -122,16 +122,16 @@
"id": "queue", "id": "queue",
"type": "queue", "type": "queue",
"pos": { "pos": {
"x": 901, "x": 673,
"y": 161 "y": 162
}, },
"width": 150, "width": 150,
"height": 127, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F0F3F9", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -161,7 +161,7 @@
"id": "service", "id": "service",
"type": "", "type": "",
"pos": { "pos": {
"x": 1192, "x": 893,
"y": 50 "y": 50
}, },
"width": 202, "width": 202,
@ -170,7 +170,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#F7F8FE", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -228,14 +228,14 @@
"y": 418 "y": 418
}, },
{ {
"x": 342, "x": 308,
"y": 418 "y": 418
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> service)[0]", "id": "(bob -> service)[0]",
@ -263,18 +263,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 548 "y": 548
}, },
{ {
"x": 1293, "x": 994,
"y": 548 "y": 548
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(service -> db)[0]", "id": "(service -> db)[0]",
@ -302,18 +302,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 678 "y": 678
}, },
{ {
"x": 659, "x": 528,
"y": 678 "y": 678
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(db -> service)[0]", "id": "(db -> service)[0]",
@ -341,18 +341,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 528,
"y": 808 "y": 808
}, },
{ {
"x": 1293, "x": 994,
"y": 808 "y": 808
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(service -> bob)[0]", "id": "(service -> bob)[0]",
@ -380,18 +380,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 938 "y": 938
}, },
{ {
"x": 342, "x": 308,
"y": 938 "y": 938
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> alice)[0]", "id": "(bob -> alice)[0]",
@ -419,7 +419,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1068 "y": 1068
}, },
{ {
@ -430,7 +430,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(alice -> bob)[1]", "id": "(alice -> bob)[1]",
@ -462,14 +462,14 @@
"y": 1198 "y": 1198
}, },
{ {
"x": 342, "x": 308,
"y": 1198 "y": 1198
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> queue)[0]", "id": "(bob -> queue)[0]",
@ -497,18 +497,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1328 "y": 1328
}, },
{ {
"x": 976, "x": 748,
"y": 1328 "y": 1328
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(queue -> bob)[0]", "id": "(queue -> bob)[0]",
@ -536,18 +536,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 748,
"y": 1458 "y": 1458
}, },
{ {
"x": 342, "x": 308,
"y": 1458 "y": 1458
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(bob -> alice)[1]", "id": "(bob -> alice)[1]",
@ -575,7 +575,7 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 1588 "y": 1588
}, },
{ {
@ -586,7 +586,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(alice -- )[0]", "id": "(alice -- )[0]",
@ -625,7 +625,7 @@
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(bob -- )[0]", "id": "(bob -- )[0]",
@ -653,18 +653,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 342, "x": 308,
"y": 293 "y": 293
}, },
{ {
"x": 342, "x": 308,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(db -- )[0]", "id": "(db -- )[0]",
@ -692,18 +692,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 659, "x": 528,
"y": 288 "y": 288
}, },
{ {
"x": 659, "x": 528,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(queue -- )[0]", "id": "(queue -- )[0]",
@ -731,18 +731,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 976, "x": 748,
"y": 288 "y": 288
}, },
{ {
"x": 976, "x": 748,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(service -- )[0]", "id": "(service -- )[0]",
@ -770,18 +770,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1293, "x": 994,
"y": 288 "y": 288
}, },
{ {
"x": 1293, "x": 994,
"y": 1718 "y": 1718
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 62 "y": 50
}, },
"width": 150, "width": 150,
"height": 128, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -45,7 +45,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 1592, "height": 1592,
@ -75,15 +75,15 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 225, "x": 220,
"y": 64 "y": 50
}, },
"width": 200, "width": 200,
"height": 126, "height": 126,
@ -91,7 +91,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -121,8 +121,8 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -152,23 +152,23 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 140, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -198,8 +198,8 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 564 "y": 550
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -229,15 +229,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 732, "x": 710,
"y": 64 "y": 50
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -245,7 +245,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -275,8 +275,8 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 819, "x": 797,
"y": 824 "y": 810
}, },
"width": 12, "width": 12,
"height": 422, "height": 422,
@ -306,15 +306,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 815, "x": 793,
"y": 954 "y": 940
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -344,15 +344,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 995, "x": 966,
"y": 64 "y": 50
}, },
"width": 160, "width": 160,
"height": 126, "height": 126,
@ -360,7 +360,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -390,8 +390,8 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1069, "x": 1040,
"y": 1084 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -421,15 +421,15 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 1227, "x": 1196,
"y": 64 "y": 50
}, },
"width": 197, "width": 197,
"height": 126, "height": 126,
@ -437,7 +437,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -467,8 +467,8 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1344 "y": 1330
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -498,15 +498,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 1474 "y": 1460
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -536,15 +536,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 1604 "y": 1590
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -574,15 +574,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1734 "y": 1720
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -612,15 +612,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1864 "y": 1850
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -650,7 +650,7 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -682,17 +682,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 320 "y": 306
}, },
{ {
"x": 319, "x": 314,
"y": 320 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t <- itemResponse.t)[0]", "id": "(scorer.t <- itemResponse.t)[0]",
@ -721,17 +721,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 450 "y": 436
}, },
{ {
"x": 319, "x": 314,
"y": 450 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t1)[0]", "id": "(scorer.t -> item.t1)[0]",
@ -760,17 +760,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 580 "y": 566
}, },
{ {
"x": 569, "x": 559,
"y": 580 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t <- item.t1)[0]", "id": "(scorer.t <- item.t1)[0]",
@ -799,17 +799,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 710 "y": 696
}, },
{ {
"x": 569, "x": 559,
"y": 710 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> essayRubric.t)[0]", "id": "(scorer.t -> essayRubric.t)[0]",
@ -838,17 +838,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 840 "y": 826
}, },
{ {
"x": 819, "x": 797,
"y": 840 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemResponse -> essayRubric.t.c)[0]", "id": "(itemResponse -> essayRubric.t.c)[0]",
@ -876,18 +876,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 970 "y": 956
}, },
{ {
"x": 815, "x": 793,
"y": 970 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(essayRubric.t.c -> concept.t)[0]", "id": "(essayRubric.t.c -> concept.t)[0]",
@ -915,18 +915,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 835, "x": 813,
"y": 1100 "y": 1086
}, },
{ {
"x": 1069, "x": 1040,
"y": 1100 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer <- essayRubric.t)[0]", "id": "(scorer <- essayRubric.t)[0]",
@ -955,17 +955,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1230 "y": 1216
}, },
{ {
"x": 819, "x": 797,
"y": 1230 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t1)[0]", "id": "(scorer.t -> itemOutcome.t1)[0]",
@ -994,17 +994,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1360 "y": 1346
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1360 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t2)[0]", "id": "(scorer.t -> item.t2)[0]",
@ -1033,17 +1033,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1490 "y": 1476
}, },
{ {
"x": 569, "x": 559,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t3)[0]", "id": "(scorer.t -> item.t3)[0]",
@ -1072,17 +1072,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1620 "y": 1606
}, },
{ {
"x": 569, "x": 559,
"y": 1620 "y": 1606
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t2)[0]", "id": "(scorer.t -> itemOutcome.t2)[0]",
@ -1111,17 +1111,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1750 "y": 1736
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1750 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t3)[0]", "id": "(scorer.t -> itemOutcome.t3)[0]",
@ -1150,17 +1150,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1880 "y": 1866
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1880 "y": 1866
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -- )[0]", "id": "(scorer -- )[0]",
@ -1189,17 +1189,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 190 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemResponse -- )[0]", "id": "(itemResponse -- )[0]",
@ -1227,18 +1227,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 190 "y": 176
}, },
{ {
"x": 325, "x": 320,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(item -- )[0]", "id": "(item -- )[0]",
@ -1266,18 +1266,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 565,
"y": 190 "y": 176
}, },
{ {
"x": 575, "x": 565,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(essayRubric -- )[0]", "id": "(essayRubric -- )[0]",
@ -1305,18 +1305,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 803,
"y": 190 "y": 176
}, },
{ {
"x": 825, "x": 803,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(concept -- )[0]", "id": "(concept -- )[0]",
@ -1344,18 +1344,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1046,
"y": 190 "y": 176
}, },
{ {
"x": 1075, "x": 1046,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemOutcome -- )[0]", "id": "(itemOutcome -- )[0]",
@ -1383,18 +1383,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325.5, "x": 1294.5,
"y": 190 "y": 176
}, },
{ {
"x": 1325.5, "x": 1294.5,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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

@ -6,15 +6,15 @@
"type": "", "type": "",
"pos": { "pos": {
"x": 0, "x": 0,
"y": 62 "y": 50
}, },
"width": 150, "width": 150,
"height": 128, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -45,7 +45,7 @@
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 69, "x": 69,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 1592, "height": 1592,
@ -75,15 +75,15 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemResponse", "id": "itemResponse",
"type": "", "type": "",
"pos": { "pos": {
"x": 225, "x": 220,
"y": 64 "y": 50
}, },
"width": 200, "width": 200,
"height": 126, "height": 126,
@ -91,7 +91,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -121,8 +121,8 @@
"id": "itemResponse.t", "id": "itemResponse.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 319, "x": 314,
"y": 304 "y": 290
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -152,23 +152,23 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item", "id": "item",
"type": "", "type": "",
"pos": { "pos": {
"x": 500, "x": 490,
"y": 50 "y": 50
}, },
"width": 150, "width": 150,
"height": 140, "height": 126,
"opacity": 1, "opacity": 1,
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -198,8 +198,8 @@
"id": "item.t1", "id": "item.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 564 "y": 550
}, },
"width": 12, "width": 12,
"height": 162, "height": 162,
@ -229,15 +229,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric", "id": "essayRubric",
"type": "", "type": "",
"pos": { "pos": {
"x": 732, "x": 710,
"y": 64 "y": 50
}, },
"width": 186, "width": 186,
"height": 126, "height": 126,
@ -245,7 +245,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -275,8 +275,8 @@
"id": "essayRubric.t", "id": "essayRubric.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 819, "x": 797,
"y": 824 "y": 810
}, },
"width": 12, "width": 12,
"height": 422, "height": 422,
@ -306,15 +306,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 36, "labelHeight": 36,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "essayRubric.t.c", "id": "essayRubric.t.c",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 815, "x": 793,
"y": 954 "y": 940
}, },
"width": 20, "width": 20,
"height": 162, "height": 162,
@ -344,15 +344,15 @@
"underline": false, "underline": false,
"labelWidth": 13, "labelWidth": 13,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 3 "level": 3
}, },
{ {
"id": "concept", "id": "concept",
"type": "", "type": "",
"pos": { "pos": {
"x": 995, "x": 966,
"y": 64 "y": 50
}, },
"width": 160, "width": 160,
"height": 126, "height": 126,
@ -360,7 +360,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -390,8 +390,8 @@
"id": "concept.t", "id": "concept.t",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1069, "x": 1040,
"y": 1084 "y": 1070
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -421,15 +421,15 @@
"underline": false, "underline": false,
"labelWidth": 11, "labelWidth": 11,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome", "id": "itemOutcome",
"type": "", "type": "",
"pos": { "pos": {
"x": 1227, "x": 1196,
"y": 64 "y": 50
}, },
"width": 197, "width": 197,
"height": 126, "height": 126,
@ -437,7 +437,7 @@
"strokeDash": 0, "strokeDash": 0,
"strokeWidth": 2, "strokeWidth": 2,
"borderRadius": 0, "borderRadius": 0,
"fill": "#E3E9FD", "fill": "#EDF0FD",
"stroke": "#0D32B2", "stroke": "#0D32B2",
"shadow": false, "shadow": false,
"3d": false, "3d": false,
@ -467,8 +467,8 @@
"id": "itemOutcome.t1", "id": "itemOutcome.t1",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1344 "y": 1330
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -498,15 +498,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.t2", "id": "item.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 1474 "y": 1460
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -536,15 +536,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "item.t3", "id": "item.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 569, "x": 559,
"y": 1604 "y": 1590
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -574,15 +574,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.t2", "id": "itemOutcome.t2",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1734 "y": 1720
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -612,15 +612,15 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
}, },
{ {
"id": "itemOutcome.t3", "id": "itemOutcome.t3",
"type": "rectangle", "type": "rectangle",
"pos": { "pos": {
"x": 1319, "x": 1288,
"y": 1864 "y": 1850
}, },
"width": 12, "width": 12,
"height": 80, "height": 80,
@ -650,7 +650,7 @@
"underline": false, "underline": false,
"labelWidth": 20, "labelWidth": 20,
"labelHeight": 26, "labelHeight": 26,
"zIndex": 1, "zIndex": 3,
"level": 2 "level": 2
} }
], ],
@ -682,17 +682,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 320 "y": 306
}, },
{ {
"x": 319, "x": 314,
"y": 320 "y": 306
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t <- itemResponse.t)[0]", "id": "(scorer.t <- itemResponse.t)[0]",
@ -721,17 +721,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 450 "y": 436
}, },
{ {
"x": 319, "x": 314,
"y": 450 "y": 436
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t1)[0]", "id": "(scorer.t -> item.t1)[0]",
@ -760,17 +760,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 580 "y": 566
}, },
{ {
"x": 569, "x": 559,
"y": 580 "y": 566
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t <- item.t1)[0]", "id": "(scorer.t <- item.t1)[0]",
@ -799,17 +799,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 710 "y": 696
}, },
{ {
"x": 569, "x": 559,
"y": 710 "y": 696
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> essayRubric.t)[0]", "id": "(scorer.t -> essayRubric.t)[0]",
@ -838,17 +838,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 840 "y": 826
}, },
{ {
"x": 819, "x": 797,
"y": 840 "y": 826
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(itemResponse -> essayRubric.t.c)[0]", "id": "(itemResponse -> essayRubric.t.c)[0]",
@ -876,18 +876,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 970 "y": 956
}, },
{ {
"x": 815, "x": 793,
"y": 970 "y": 956
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(essayRubric.t.c -> concept.t)[0]", "id": "(essayRubric.t.c -> concept.t)[0]",
@ -915,18 +915,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 835, "x": 813,
"y": 1100 "y": 1086
}, },
{ {
"x": 1069, "x": 1040,
"y": 1100 "y": 1086
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer <- essayRubric.t)[0]", "id": "(scorer <- essayRubric.t)[0]",
@ -955,17 +955,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 1230 "y": 1216
}, },
{ {
"x": 819, "x": 797,
"y": 1230 "y": 1216
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t1)[0]", "id": "(scorer.t -> itemOutcome.t1)[0]",
@ -994,17 +994,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1360 "y": 1346
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1360 "y": 1346
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t2)[0]", "id": "(scorer.t -> item.t2)[0]",
@ -1033,17 +1033,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1490 "y": 1476
}, },
{ {
"x": 569, "x": 559,
"y": 1490 "y": 1476
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> item.t3)[0]", "id": "(scorer.t -> item.t3)[0]",
@ -1072,17 +1072,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1620 "y": 1606
}, },
{ {
"x": 569, "x": 559,
"y": 1620 "y": 1606
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t2)[0]", "id": "(scorer.t -> itemOutcome.t2)[0]",
@ -1111,17 +1111,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1750 "y": 1736
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1750 "y": 1736
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer.t -> itemOutcome.t3)[0]", "id": "(scorer.t -> itemOutcome.t3)[0]",
@ -1150,17 +1150,17 @@
"route": [ "route": [
{ {
"x": 81, "x": 81,
"y": 1880 "y": 1866
}, },
{ {
"x": 1319.5, "x": 1288.5,
"y": 1880 "y": 1866
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 2 "zIndex": 4
}, },
{ {
"id": "(scorer -- )[0]", "id": "(scorer -- )[0]",
@ -1189,17 +1189,17 @@
"route": [ "route": [
{ {
"x": 75, "x": 75,
"y": 190 "y": 176
}, },
{ {
"x": 75, "x": 75,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemResponse -- )[0]", "id": "(itemResponse -- )[0]",
@ -1227,18 +1227,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 325, "x": 320,
"y": 190 "y": 176
}, },
{ {
"x": 325, "x": 320,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(item -- )[0]", "id": "(item -- )[0]",
@ -1266,18 +1266,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 575, "x": 565,
"y": 190 "y": 176
}, },
{ {
"x": 575, "x": 565,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(essayRubric -- )[0]", "id": "(essayRubric -- )[0]",
@ -1305,18 +1305,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 825, "x": 803,
"y": 190 "y": 176
}, },
{ {
"x": 825, "x": 803,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(concept -- )[0]", "id": "(concept -- )[0]",
@ -1344,18 +1344,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1075, "x": 1046,
"y": 190 "y": 176
}, },
{ {
"x": 1075, "x": 1046,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
}, },
{ {
"id": "(itemOutcome -- )[0]", "id": "(itemOutcome -- )[0]",
@ -1383,18 +1383,18 @@
"labelPercentage": 0, "labelPercentage": 0,
"route": [ "route": [
{ {
"x": 1325.5, "x": 1294.5,
"y": 190 "y": 176
}, },
{ {
"x": 1325.5, "x": 1294.5,
"y": 2010 "y": 1996
} }
], ],
"animated": false, "animated": false,
"tooltip": "", "tooltip": "",
"icon": null, "icon": null,
"zIndex": 0 "zIndex": 2
} }
] ]
} }

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