Merge branch 'master' into nested-sequence-diagrams

This commit is contained in:
Júlio César Batista 2022-11-30 14:01:55 -08:00
commit 062ee76b61
No known key found for this signature in database
GPG key ID: 10C4B861BF314878
421 changed files with 10139 additions and 3979 deletions

View file

@ -8,6 +8,7 @@
- Arrowhead labels are now supported. [#182](https://github.com/terrastruct/d2/pull/182)
- `stroke-dash` on shapes is now supported. [#188](https://github.com/terrastruct/d2/issues/188)
- `font-color` is now supported on shapes and connections. [#215](https://github.com/terrastruct/d2/pull/215)
- `font-size` is now supported on shapes and connections. [#250](https://github.com/terrastruct/d2/pull/250)
- Querying shapes and connections by ID is now supported in renders. [#218](https://github.com/terrastruct/d2/pull/218)
- [install.sh](./install.sh) now accepts `-d` as an alias for `--dry-run`.
[#266](https://github.com/terrastruct/d2/pull/266)

View file

@ -88,13 +88,14 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
shape := d2target.BaseShape()
shape.SetType(obj.Attributes.Shape.Value)
shape.ID = obj.AbsID()
shape.ZIndex = obj.ZIndex
shape.Level = int(obj.Level())
shape.Pos = d2target.NewPoint(int(obj.TopLeft.X), int(obj.TopLeft.Y))
shape.Width = int(obj.Width)
shape.Height = int(obj.Height)
text := obj.Text()
shape.FontSize = text.FontSize
shape.Level = int(obj.Level())
applyStyles(shape, obj)
applyTheme(shape, obj, theme)
@ -133,6 +134,7 @@ func toShape(obj *d2graph.Object, theme *d2themes.Theme) d2target.Shape {
func toConnection(edge *d2graph.Edge, theme *d2themes.Theme) d2target.Connection {
connection := d2target.BaseConnection()
connection.ID = edge.AbsID()
connection.ZIndex = edge.ZIndex
// edge.Edge.ID = go2.StringToIntHash(connection.ID)
text := edge.Text()

View file

@ -78,6 +78,8 @@ type Object struct {
ChildrenArray []*Object `json:"-"`
Attributes Attributes `json:"attributes"`
ZIndex int `json:"zIndex"`
}
type Attributes struct {
@ -415,6 +417,9 @@ func (obj *Object) Text() *d2target.MText {
if obj.IsContainer() {
fontSize = obj.Level().LabelSize()
}
if obj.Attributes.Style.FontSize != nil {
fontSize, _ = strconv.Atoi(obj.Attributes.Style.FontSize.Value)
}
// Class and Table objects have Label set to header
if obj.Class != nil || obj.SQLTable != nil {
fontSize = d2fonts.FONT_SIZE_XL
@ -630,6 +635,8 @@ type Edge struct {
References []EdgeReference `json:"references,omitempty"`
Attributes Attributes `json:"attributes"`
ZIndex int `json:"zIndex"`
}
type EdgeReference struct {
@ -662,9 +669,13 @@ func (e *Edge) ArrowString() string {
}
func (e *Edge) Text() *d2target.MText {
fontSize := d2fonts.FONT_SIZE_M
if e.Attributes.Style.FontSize != nil {
fontSize, _ = strconv.Atoi(e.Attributes.Style.FontSize.Value)
}
return &d2target.MText{
Text: e.Attributes.Label.Value,
FontSize: d2fonts.FONT_SIZE_M,
FontSize: fontSize,
IsBold: false,
IsItalic: true,

View file

@ -222,6 +222,7 @@ func (sd *sequenceDiagram) placeSpans() {
width := SPAN_WIDTH + (float64(span.Level()-2) * SPAN_DEPTH_GROW_FACTOR)
x := rankToX[sd.objectRank[span]] - (width / 2.)
span.Box = geo.NewBox(geo.NewPoint(x, minY), width, height)
span.ZIndex = 1
}
}

View file

@ -209,7 +209,13 @@ func TestSpansSequenceDiagram(t *testing.T) {
t.Fatalf("expected a.t1 and b.t1 to have the same height, got %.5f and %.5f", a_t1.Height, b_t1.Height)
}
// Y diff of the 2 first messages
for _, span := range []*d2graph.Object{a_t1, a_t2, b_t1} {
if span.ZIndex != 1 {
t.Fatalf("expected span ZIndex=1, got %d", span.ZIndex)
}
}
// Y diff of the 2 first edges
expectedHeight := g.Edges[1].Route[0].Y - g.Edges[0].Route[0].Y + (2 * SPAN_MESSAGE_PAD)
if a_t1.Height != expectedHeight {
t.Fatalf("expected a.t1 height to be %.5f, got %.5f", expectedHeight, a_t1.Height)

View file

@ -10,6 +10,7 @@ import (
"fmt"
"hash/fnv"
"io"
"sort"
"strings"
"math"
@ -983,25 +984,29 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
// SVG has no notion of z-index. The z-index is effectively the order it's drawn.
// So draw from the least nested to most nested
idToShape := make(map[string]d2target.Shape)
highest := 1
allObjects := make([]DiagramObject, 0, len(diagram.Shapes)+len(diagram.Connections))
for _, s := range diagram.Shapes {
highest = go2.Max(highest, s.Level)
idToShape[s.ID] = s
allObjects = append(allObjects, s)
}
for i := 1; i <= highest; i++ {
for _, s := range diagram.Shapes {
if s.Level == i {
err := drawShape(buf, s)
if err != nil {
return nil, err
}
}
}
for _, c := range diagram.Connections {
allObjects = append(allObjects, c)
}
sortObjects(allObjects)
markers := map[string]struct{}{}
for _, c := range diagram.Connections {
drawConnection(buf, c, markers, idToShape)
for _, obj := range allObjects {
if c, is := obj.(d2target.Connection); is {
drawConnection(buf, c, markers, idToShape)
} else if s, is := obj.(d2target.Shape); is {
err := drawShape(buf, s)
if err != nil {
return nil, err
}
} else {
return nil, fmt.Errorf("unknow object of type %T", obj)
}
}
embedFonts(buf)
@ -1010,6 +1015,39 @@ func Render(diagram *d2target.Diagram) ([]byte, error) {
return buf.Bytes(), nil
}
type DiagramObject interface {
GetID() string
GetZIndex() int
}
// sortObjects sorts all diagrams objects (shapes and connections) in the desired drawing order
// the sorting criteria is:
// 1. zIndex, lower comes first
// 2. two shapes with the same zIndex are sorted by their level (container nesting), containers come first
// 3. two shapes with the same zIndex and same level, are sorted in the order they were exported
// 4. shape and edge, shapes come first
func sortObjects(allObjects []DiagramObject) {
sort.SliceStable(allObjects, func(i, j int) bool {
// first sort by zIndex
iZIndex := allObjects[i].GetZIndex()
jZIndex := allObjects[j].GetZIndex()
if iZIndex != jZIndex {
return iZIndex < jZIndex
}
// then, if both are shapes, parents come before their children
iShape, iIsShape := allObjects[i].(d2target.Shape)
jShape, jIsShape := allObjects[j].(d2target.Shape)
if iIsShape && jIsShape {
return iShape.Level < jShape.Level
}
// then, shapes come before connections
_, jIsConnection := allObjects[j].(d2target.Connection)
return iIsShape && jIsConnection
})
}
func hash(s string) string {
const secret = "lalalas"
h := fnv.New32a()

View file

@ -0,0 +1,83 @@
package d2svg
import (
"testing"
"oss.terrastruct.com/d2/d2target"
)
func TestSortObjects(t *testing.T) {
allObjects := []DiagramObject{
// same zIndex and level, should keep in this order
d2target.Shape{
ID: "0",
ZIndex: 0,
Level: 0,
},
d2target.Shape{
ID: "1",
ZIndex: 0,
Level: 0,
},
// same zIndex, different level, should be swapped
d2target.Shape{
ID: "2",
ZIndex: 0,
Level: 1,
},
d2target.Shape{
ID: "3",
ZIndex: 0,
Level: 0,
},
// different zIndex, should come after connections
d2target.Shape{
ID: "4",
ZIndex: 1,
Level: 0,
},
// connections come after shapes
d2target.Connection{
ID: "5",
ZIndex: 0,
},
d2target.Connection{
ID: "6",
ZIndex: 0,
},
// this should be last object
d2target.Connection{
ID: "7",
ZIndex: 2,
},
// this should be the first object
d2target.Connection{
ID: "8",
ZIndex: -1,
},
}
expectedOrder := []DiagramObject{
allObjects[8],
allObjects[0],
allObjects[1],
allObjects[3],
allObjects[2],
allObjects[5],
allObjects[6],
allObjects[4],
allObjects[7],
}
sortObjects(allObjects)
if len(allObjects) != len(expectedOrder) {
t.Fatal("number of objects changed while sorting")
}
for i := 0; i < len(allObjects); i++ {
if allObjects[i].GetID() != expectedOrder[i].GetID() {
t.Fatalf("object order differs at index %d, got '%s' expected '%s'", i, allObjects[i].GetID(), expectedOrder[i].GetID())
}
}
}

View file

@ -4,7 +4,6 @@ import (
"bytes"
"math"
"strings"
"unicode/utf8"
"github.com/PuerkitoBio/goquery"
"github.com/yuin/goldmark"
@ -212,20 +211,17 @@ func (ruler *Ruler) measureNode(depth int, n *html.Node, font d2fonts.Font) bloc
if strings.TrimSpace(n.Data) == "" {
return blockAttrs{}
}
spaceWidths := 0.
// consecutive leading/trailing spaces end up rendered as a single space
spaceRune, _ := utf8.DecodeRuneInString(" ")
// measure will not include leading or trailing whitespace, so we have to add in the space width
spaceWidth := ruler.atlases[font].glyph(spaceRune).advance
str := n.Data
isCode := parentElementType == "pre" || parentElementType == "code"
spaceWidths := 0.
if !isCode {
spaceWidth := ruler.spaceWidth(font)
// MeasurePrecise will not include leading or trailing whitespace, so we account for it here
str = strings.ReplaceAll(str, "\n", " ")
str = strings.ReplaceAll(str, "\t", " ")
if strings.HasPrefix(str, " ") {
// consecutive leading/trailing spaces end up rendered as a single space
str = strings.TrimPrefix(str, " ")
if hasPrev(n) {
spaceWidths += spaceWidth

View file

@ -76,6 +76,8 @@ type Ruler struct {
atlases map[d2fonts.Font]*atlas
ttfs map[d2fonts.Font]*truetype.Font
buf []byte
prevR rune
bounds *rect
@ -97,49 +99,52 @@ type Ruler struct {
// })
// txt := text.New(orig, text.NewAtlas(face, text.ASCII))
func NewRuler() (*Ruler, error) {
lineHeights := make(map[d2fonts.Font]float64)
tabWidths := make(map[d2fonts.Font]float64)
atlases := make(map[d2fonts.Font]*atlas)
origin := geo.NewPoint(0, 0)
r := &Ruler{
Orig: origin,
Dot: origin.Copy(),
LineHeightFactor: 1.,
lineHeights: make(map[d2fonts.Font]float64),
tabWidths: make(map[d2fonts.Font]float64),
atlases: make(map[d2fonts.Font]*atlas),
ttfs: make(map[d2fonts.Font]*truetype.Font),
}
for _, fontFamily := range d2fonts.FontFamilies {
for _, fontSize := range d2fonts.FontSizes {
for _, fontStyle := range d2fonts.FontStyles {
font := d2fonts.Font{
Family: fontFamily,
Style: fontStyle,
}
if _, ok := d2fonts.FontFaces[font]; !ok {
continue
}
for _, fontStyle := range d2fonts.FontStyles {
font := d2fonts.Font{
Family: fontFamily,
Style: fontStyle,
}
// Note: FontFaces lookup is size-agnostic
if _, ok := d2fonts.FontFaces[font]; !ok {
continue
}
if _, loaded := r.ttfs[font]; !loaded {
ttf, err := truetype.Parse(d2fonts.FontFaces[font])
if err != nil {
return nil, err
}
// Added after, since FontFaces lookup is size-agnostic
font.Size = fontSize
face := truetype.NewFace(ttf, &truetype.Options{
Size: float64(fontSize),
})
atlas := NewAtlas(face, ASCII)
atlases[font] = atlas
lineHeights[font] = atlas.lineHeight
tabWidths[font] = atlas.glyph(' ').advance * TAB_SIZE
r.ttfs[font] = ttf
}
}
}
origin := geo.NewPoint(0, 0)
txt := &Ruler{
Orig: origin,
Dot: origin.Copy(),
LineHeightFactor: 1.,
lineHeights: lineHeights,
tabWidths: tabWidths,
atlases: atlases,
}
txt.clear()
r.clear()
return txt, nil
return r, nil
}
func (r *Ruler) addFontSize(font d2fonts.Font) {
sizeless := font
sizeless.Size = 0
face := truetype.NewFace(r.ttfs[sizeless], &truetype.Options{
Size: float64(font.Size),
})
atlas := NewAtlas(face, ASCII)
r.atlases[font] = atlas
r.lineHeights[font] = atlas.lineHeight
r.tabWidths[font] = atlas.glyph(' ').advance * TAB_SIZE
}
func (t *Ruler) Measure(font d2fonts.Font, s string) (width, height int) {
@ -148,6 +153,9 @@ func (t *Ruler) Measure(font d2fonts.Font, s string) (width, height int) {
}
func (t *Ruler) MeasurePrecise(font d2fonts.Font, s string) (width, height float64) {
if _, ok := t.atlases[font]; !ok {
t.addFontSize(font)
}
t.clear()
t.buf = append(t.buf, s...)
t.drawBuf(font)
@ -216,3 +224,11 @@ func (txt *Ruler) drawBuf(font d2fonts.Font) {
}
}
}
func (ruler *Ruler) spaceWidth(font d2fonts.Font) float64 {
if _, has := ruler.atlases[font]; !has {
ruler.addFontSize(font)
}
spaceRune, _ := utf8.DecodeRuneInString(" ")
return ruler.atlases[font].glyph(spaceRune).advance
}

View file

@ -91,7 +91,6 @@ type Shape struct {
Pos Point `json:"pos"`
Width int `json:"width"`
Height int `json:"height"`
Level int `json:"level"`
Opacity float64 `json:"opacity"`
StrokeDash float64 `json:"strokeDash"`
@ -117,6 +116,9 @@ type Shape struct {
Text
LabelPosition string `json:"labelPosition,omitempty"`
ZIndex int `json:"zIndex"`
Level int `json:"level"`
}
func (s *Shape) SetType(t string) {
@ -130,6 +132,14 @@ func (s *Shape) SetType(t string) {
s.Type = strings.ToLower(t)
}
func (s Shape) GetZIndex() int {
return s.ZIndex
}
func (s Shape) GetID() string {
return s.ID
}
type Text struct {
Label string `json:"label"`
FontSize int `json:"fontSize"`
@ -183,6 +193,8 @@ type Connection struct {
Animated bool `json:"animated"`
Tooltip string `json:"tooltip"`
Icon *url.URL `json:"icon"`
ZIndex int `json:"zIndex"`
}
func BaseConnection() *Connection {
@ -210,6 +222,14 @@ func (c *Connection) GetLabelTopLeft() *geo.Point {
)
}
func (c Connection) GetZIndex() int {
return c.ZIndex
}
func (c Connection) GetID() string {
return c.ID
}
type Arrowhead string
const (

View file

@ -1014,6 +1014,34 @@ cube: {
stroke-width: 7
}
}
`,
},
{
name: "font_sizes",
script: `
size XS.style.font-size: 13
size S.style.font-size: 14
size M.style.font-size: 16
size L.style.font-size: 20
size XL.style.font-size: 24
size XXL.style.font-size: 28
size XXXL.style.font-size: 32
custom 8.style.font-size: 8
custom 12.style.font-size: 12
custom 18.style.font-size: 18
custom 21.style.font-size: 21
custom 64.style.font-size: 64
custom 8 -> size XS: custom 10 {
style.font-size: 10
}
size S -> size M: custom 15 {
style.font-size: 15
}
size XXXL -> custom 64: custom 48 {
style.font-size: 48
}
`,
},
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -162,7 +165,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -209,7 +213,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -153,7 +156,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -199,7 +203,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 213,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 214,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -212,7 +216,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 263,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -741,7 +759,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -788,7 +807,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -835,7 +855,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -882,7 +903,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -929,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -976,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -1023,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -1070,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1117,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1164,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 171,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 71,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "square",
@ -48,7 +49,6 @@
},
"width": 154,
"height": 154,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 54,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "page",
@ -86,7 +88,6 @@
},
"width": 139,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 39,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "parallelogram",
@ -124,7 +127,6 @@
},
"width": 204,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 104,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "document",
@ -162,7 +166,6 @@
},
"width": 177,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cylinder",
@ -200,7 +205,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "queue",
@ -238,7 +244,6 @@
},
"width": 149,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 49,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "package",
@ -276,7 +283,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "step",
@ -314,7 +322,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "callout",
@ -352,7 +361,6 @@
},
"width": 155,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 55,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "stored_data",
@ -390,7 +400,6 @@
},
"width": 191,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 91,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "person",
@ -428,7 +439,6 @@
},
"width": 153,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 53,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "diamond",
@ -466,7 +478,6 @@
},
"width": 168,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 68,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "oval",
@ -504,7 +517,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "circle",
@ -542,7 +556,6 @@
},
"width": 144,
"height": 144,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 44,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hexagon",
@ -580,7 +595,6 @@
},
"width": 165,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 65,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cloud",
@ -618,7 +634,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(square -> page)[0]",
@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(parallelogram -> document)[0]",
@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(document -> cylinder)[0]",
@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(queue -> package)[0]",
@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(package -> step)[0]",
@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(callout -> stored_data)[0]",
@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(stored_data -> person)[0]",
@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(diamond -> oval)[0]",
@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(oval -> circle)[0]",
@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hexagon -> cloud)[0]",
@ -1065,7 +1092,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 7,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "Oval",
@ -124,7 +127,6 @@
},
"width": 100,
"height": 100,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 6,
@ -150,7 +152,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
"labelHeight": 0
"labelHeight": 0,
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -199,7 +203,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -258,7 +263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a <-> Oval)[0]",
@ -305,7 +311,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -- a)[0]",
@ -352,7 +359,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(Oval <-> c)[0]",
@ -411,7 +419,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 7,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 8,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "Oval",
@ -124,7 +127,6 @@
},
"width": 100,
"height": 100,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 6,
@ -150,7 +152,9 @@
"bold": true,
"underline": false,
"labelWidth": 0,
"labelHeight": 0
"labelHeight": 0,
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -198,7 +202,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -236,7 +241,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a <-> Oval)[0]",
@ -274,7 +280,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -- a)[0]",
@ -320,7 +327,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(Oval <-> c)[0]",
@ -374,7 +382,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -618,7 +633,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -665,7 +681,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> d)[0]",
@ -712,7 +729,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> e)[0]",
@ -759,7 +777,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> f)[0]",
@ -806,7 +825,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> g)[0]",
@ -853,7 +873,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> h)[0]",
@ -900,7 +921,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> i)[0]",
@ -947,7 +969,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> j)[0]",
@ -994,7 +1017,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> k)[0]",
@ -1041,7 +1065,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> l)[0]",
@ -1088,7 +1113,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> m)[0]",
@ -1135,7 +1161,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> n)[0]",
@ -1182,7 +1209,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> o)[0]",
@ -1229,7 +1257,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -609,7 +624,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -655,7 +671,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> d)[0]",
@ -701,7 +718,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> e)[0]",
@ -739,7 +757,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> f)[0]",
@ -785,7 +804,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> g)[0]",
@ -823,7 +843,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> h)[0]",
@ -861,7 +882,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> i)[0]",
@ -907,7 +929,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> j)[0]",
@ -945,7 +968,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> k)[0]",
@ -991,7 +1015,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> l)[0]",
@ -1029,7 +1054,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> m)[0]",
@ -1075,7 +1101,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> n)[0]",
@ -1121,7 +1148,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> o)[0]",
@ -1159,7 +1187,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 251,
"height": 452,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aaa.bbb",
@ -48,7 +49,6 @@
},
"width": 132,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ddd",
@ -86,7 +88,6 @@
},
"width": 133,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "eee",
@ -124,7 +127,6 @@
},
"width": 130,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 30,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aaa.ccc",
@ -162,7 +166,6 @@
},
"width": 128,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -238,7 +243,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(eee <- aaa.ccc)[0]",
@ -285,7 +291,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 430,
"height": 317,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aaa.bbb",
@ -48,7 +49,6 @@
},
"width": 132,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ddd",
@ -86,7 +88,6 @@
},
"width": 133,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "eee",
@ -124,7 +127,6 @@
},
"width": 130,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 30,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aaa.ccc",
@ -162,7 +166,6 @@
},
"width": 128,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(eee <- aaa.ccc)[0]",
@ -267,7 +273,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 1117,
"height": 1654,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aa.bb",
@ -48,7 +49,6 @@
},
"width": 776,
"height": 1554,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.bb.cc",
@ -86,7 +88,6 @@
},
"width": 510,
"height": 676,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.bb.cc.dd",
@ -124,7 +127,6 @@
},
"width": 355,
"height": 226,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.cc.dd.ee",
@ -162,7 +166,6 @@
},
"width": 16,
"height": 24,
"level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -188,7 +191,9 @@
"bold": true,
"underline": false,
"labelWidth": 16,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 5
},
{
"id": "aa.bb.cc.dd.ff",
@ -199,7 +204,6 @@
},
"width": 117,
"height": 126,
"level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -226,7 +230,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 5
},
{
"id": "aa.bb.cc.gg",
@ -237,7 +243,6 @@
},
"width": 17,
"height": 24,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -263,7 +268,9 @@
"bold": true,
"underline": false,
"labelWidth": 17,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.cc.hh",
@ -274,7 +281,6 @@
},
"width": 123,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -301,7 +307,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.ii",
@ -312,7 +320,6 @@
},
"width": 367,
"height": 226,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -339,7 +346,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.bb.ii.jj",
@ -350,7 +359,6 @@
},
"width": 115,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -377,7 +385,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.kk",
@ -388,7 +398,6 @@
},
"width": 126,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -415,7 +424,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.ll",
@ -426,7 +437,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -453,7 +463,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.mm",
@ -464,7 +476,6 @@
},
"width": 131,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -491,7 +502,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.nn",
@ -502,7 +515,6 @@
},
"width": 18,
"height": 24,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -528,7 +540,9 @@
"bold": true,
"underline": false,
"labelWidth": 18,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 2
},
{
"id": "aa.oo",
@ -539,7 +553,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -566,7 +579,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -615,7 +630,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@ -662,7 +678,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@ -757,7 +774,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(ll <-> bb)[0]",
@ -804,7 +822,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm -> bb.cc)[0]",
@ -863,7 +882,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm -> ll)[0]",
@ -910,7 +930,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm <-> bb)[0]",
@ -957,7 +978,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@ -1052,7 +1074,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm <- bb.ii)[0]",
@ -1099,7 +1122,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(bb.cc <- ll)[0]",
@ -1146,7 +1170,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@ -1205,7 +1230,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 892,
"height": 1707,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "aa.bb",
@ -48,7 +49,6 @@
},
"width": 685,
"height": 1174,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.bb.cc",
@ -86,7 +88,6 @@
},
"width": 464,
"height": 703,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.bb.cc.dd",
@ -124,7 +127,6 @@
},
"width": 303,
"height": 276,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.cc.dd.ee",
@ -162,7 +166,6 @@
},
"width": 16,
"height": 24,
"level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -188,7 +191,9 @@
"bold": true,
"underline": false,
"labelWidth": 16,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 5
},
{
"id": "aa.bb.cc.dd.ff",
@ -199,7 +204,6 @@
},
"width": 117,
"height": 126,
"level": 5,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -226,7 +230,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 5
},
{
"id": "aa.bb.cc.gg",
@ -237,7 +243,6 @@
},
"width": 17,
"height": 24,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -263,7 +268,9 @@
"bold": true,
"underline": false,
"labelWidth": 17,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.cc.hh",
@ -274,7 +281,6 @@
},
"width": 123,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -301,7 +307,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.ii",
@ -312,7 +320,6 @@
},
"width": 265,
"height": 276,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -339,7 +346,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.bb.ii.jj",
@ -350,7 +359,6 @@
},
"width": 115,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -377,7 +385,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "aa.bb.kk",
@ -388,7 +398,6 @@
},
"width": 126,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -415,7 +424,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "aa.ll",
@ -426,7 +437,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -453,7 +463,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.mm",
@ -464,7 +476,6 @@
},
"width": 131,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -491,7 +502,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "aa.nn",
@ -502,7 +515,6 @@
},
"width": 18,
"height": 24,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -528,7 +540,9 @@
"bold": true,
"underline": false,
"labelWidth": 18,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 2
},
{
"id": "aa.oo",
@ -539,7 +553,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -566,7 +579,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -606,7 +621,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.bb.cc.(gg -- hh)[0]",
@ -644,7 +660,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.bb.(ii -> cc.dd)[0]",
@ -690,7 +707,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(ll <-> bb)[0]",
@ -736,7 +754,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm -> bb.cc)[0]",
@ -790,7 +809,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm -> ll)[0]",
@ -836,7 +856,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm <-> bb)[0]",
@ -890,7 +911,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(ll <-> bb.cc.gg)[0]",
@ -944,7 +966,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(mm <- bb.ii)[0]",
@ -990,7 +1013,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(bb.cc <- ll)[0]",
@ -1044,7 +1068,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "aa.(bb.ii <-> ll)[0]",
@ -1106,7 +1131,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 524,
"height": 426,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 444,
"height": 326,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "a.b.c",
@ -86,7 +88,6 @@
},
"width": 364,
"height": 226,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "a.b.c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}
],
"connections": [
@ -236,7 +240,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "a.(b -> b.c)[0]",
@ -319,7 +324,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "a.(b.c.d -> b)[0]",
@ -366,7 +372,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 574,
"height": 601,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 424,
"height": 451,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "a.b.c",
@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "a.b.c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
}
],
"connections": [
@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "a.(b -> b.c)[0]",
@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "a.(b.c.d -> b)[0]",
@ -275,7 +281,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -162,7 +165,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -209,7 +213,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -256,7 +261,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> a)[0]",
@ -303,7 +309,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -153,7 +156,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -191,7 +195,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -229,7 +234,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> a)[0]",
@ -267,7 +273,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 339,
"height": 368,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -68,7 +67,9 @@
"bold": true,
"underline": false,
"labelWidth": 150,
"labelHeight": 36
"labelHeight": 36,
"zIndex": 0,
"level": 1
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 339,
"height": 368,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -68,7 +67,9 @@
"bold": true,
"underline": false,
"labelWidth": 150,
"labelHeight": 36
"labelHeight": 36,
"zIndex": 0,
"level": 1
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 755,
"height": 166,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 755,
"labelHeight": 166
"labelHeight": 166,
"zIndex": 0,
"level": 1
},
{
"id": "x",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "y",
@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hey -> y)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 755,
"height": 166,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 755,
"labelHeight": 166
"labelHeight": 166,
"zIndex": 0,
"level": 1
},
{
"id": "x",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "y",
@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hey -> y)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 213,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 214,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f",
@ -162,7 +166,6 @@
},
"width": 294,
"height": 326,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f.h",
@ -200,7 +205,6 @@
},
"width": 214,
"height": 226,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f.h.g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}
],
"connections": [
@ -326,7 +333,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c.d -> f.h.g)[0]",
@ -397,7 +405,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 263,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 264,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c.d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f",
@ -162,7 +166,6 @@
},
"width": 414,
"height": 431,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f.h",
@ -200,7 +205,6 @@
},
"width": 264,
"height": 276,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f.h.g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}
],
"connections": [
@ -305,7 +312,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c.d -> f.h.g)[0]",
@ -343,7 +351,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -48,7 +49,6 @@
},
"width": 253,
"height": 878,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g.b",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 293,
"height": 326,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d.h",
@ -162,7 +166,6 @@
},
"width": 213,
"height": 226,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "d.h.c",
@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "g.e",
@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f",
@ -276,7 +283,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -352,7 +360,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g.b -> d.h.c)[0]",
@ -411,7 +420,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> g.e)[0]",
@ -458,7 +468,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g.e -> f)[0]",
@ -505,7 +516,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> g)[0]",
@ -552,7 +564,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> d.h)[0]",
@ -599,7 +612,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -48,7 +49,6 @@
},
"width": 396,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g.b",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 413,
"height": 431,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d.h",
@ -162,7 +166,6 @@
},
"width": 263,
"height": 276,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "d.h.c",
@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "g.e",
@ -238,7 +244,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "f",
@ -276,7 +283,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -343,7 +351,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g.b -> d.h.c)[0]",
@ -381,7 +390,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> g.e)[0]",
@ -435,7 +445,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g.e -> f)[0]",
@ -481,7 +492,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> g)[0]",
@ -527,7 +539,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> d.h)[0]",
@ -565,7 +578,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -694,7 +711,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -753,7 +771,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -812,7 +831,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> e)[0]",
@ -871,7 +891,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> f)[0]",
@ -930,7 +951,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> g)[0]",
@ -977,7 +999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> f)[0]",
@ -1024,7 +1047,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> h)[0]",
@ -1071,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> i)[0]",
@ -1178,7 +1203,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> d)[0]",
@ -1237,7 +1263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> c)[0]",
@ -1284,7 +1311,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> a)[0]",
@ -1343,7 +1371,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> j)[0]",
@ -1390,7 +1419,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> k)[0]",
@ -1437,7 +1467,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> l)[0]",
@ -1484,7 +1515,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> e)[0]",
@ -1531,7 +1563,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(m -> l)[0]",
@ -1578,7 +1611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(m -> n)[0]",
@ -1625,7 +1659,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> i)[0]",
@ -1672,7 +1707,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> n)[0]",
@ -1719,7 +1755,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> n)[0]",
@ -1766,7 +1803,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> o)[0]",
@ -1813,7 +1851,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> l)[0]",
@ -1860,7 +1899,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> q)[0]",
@ -1907,7 +1947,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> b)[0]",
@ -731,7 +749,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -777,7 +796,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> e)[0]",
@ -823,7 +843,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> f)[0]",
@ -869,7 +890,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> g)[0]",
@ -915,7 +937,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> f)[0]",
@ -961,7 +984,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> h)[0]",
@ -1007,7 +1031,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> i)[0]",
@ -1061,7 +1086,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> d)[0]",
@ -1099,7 +1125,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> c)[0]",
@ -1137,7 +1164,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> a)[0]",
@ -1183,7 +1211,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> j)[0]",
@ -1237,7 +1266,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> k)[0]",
@ -1275,7 +1305,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> l)[0]",
@ -1321,7 +1352,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> e)[0]",
@ -1367,7 +1399,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(m -> l)[0]",
@ -1413,7 +1446,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(m -> n)[0]",
@ -1459,7 +1493,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> i)[0]",
@ -1497,7 +1532,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> n)[0]",
@ -1535,7 +1571,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> n)[0]",
@ -1581,7 +1618,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> o)[0]",
@ -1627,7 +1665,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> l)[0]",
@ -1665,7 +1704,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> q)[0]",
@ -1703,7 +1743,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 465,
"height": 904,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "tree",
@ -86,7 +88,6 @@
},
"width": 134,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "and",
@ -124,7 +127,6 @@
},
"width": 132,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nodes",
@ -162,7 +166,6 @@
},
"width": 147,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "some",
@ -200,7 +205,6 @@
},
"width": 143,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "more",
@ -238,7 +244,6 @@
},
"width": 141,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 41,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "many",
@ -276,7 +283,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "then",
@ -314,7 +322,6 @@
},
"width": 138,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "here",
@ -352,7 +361,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "you",
@ -390,7 +400,6 @@
},
"width": 132,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "have",
@ -428,7 +439,6 @@
},
"width": 138,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hierarchy",
@ -466,7 +478,6 @@
},
"width": 173,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "another",
@ -504,7 +517,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "of",
@ -542,7 +556,6 @@
},
"width": 120,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nesting",
@ -580,7 +595,6 @@
},
"width": 158,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 58,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "trees",
@ -618,7 +634,6 @@
},
"width": 142,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 42,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "finally.a",
@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.tree",
@ -694,7 +712,6 @@
},
"width": 134,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.inside",
@ -732,7 +751,6 @@
},
"width": 148,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.hierarchy",
@ -770,7 +790,6 @@
},
"width": 173,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.root",
@ -808,7 +829,6 @@
},
"width": 135,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -884,7 +906,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> and)[0]",
@ -931,7 +954,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> nodes)[0]",
@ -978,7 +1002,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(and -> some)[0]",
@ -1025,7 +1050,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(tree -> more)[0]",
@ -1072,7 +1098,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(tree -> many)[0]",
@ -1119,7 +1146,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(then -> here)[0]",
@ -1166,7 +1194,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(here -> you)[0]",
@ -1213,7 +1242,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(have -> hierarchy)[0]",
@ -1260,7 +1290,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(then -> hierarchy)[0]",
@ -1307,7 +1338,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(finally -> another)[0]",
@ -1354,7 +1386,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(another -> of)[0]",
@ -1401,7 +1434,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(nesting -> trees)[0]",
@ -1448,7 +1482,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(finally -> trees)[0]",
@ -1495,7 +1530,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(a -> tree)[0]",
@ -1542,7 +1578,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(inside -> a)[0]",
@ -1589,7 +1626,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(tree -> hierarchy)[0]",
@ -1636,7 +1674,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(a -> root)[0]",
@ -1683,7 +1722,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 458,
"height": 714,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 77,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "tree",
@ -86,7 +88,6 @@
},
"width": 134,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "and",
@ -124,7 +127,6 @@
},
"width": 132,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nodes",
@ -162,7 +166,6 @@
},
"width": 147,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "some",
@ -200,7 +205,6 @@
},
"width": 143,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 43,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "more",
@ -238,7 +244,6 @@
},
"width": 141,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 41,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "many",
@ -276,7 +283,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "then",
@ -314,7 +322,6 @@
},
"width": 138,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "here",
@ -352,7 +361,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "you",
@ -390,7 +400,6 @@
},
"width": 132,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "have",
@ -428,7 +439,6 @@
},
"width": 138,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 38,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "hierarchy",
@ -466,7 +478,6 @@
},
"width": 173,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "another",
@ -504,7 +517,6 @@
},
"width": 163,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 63,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "of",
@ -542,7 +556,6 @@
},
"width": 120,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nesting",
@ -580,7 +595,6 @@
},
"width": 158,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 58,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "trees",
@ -618,7 +634,6 @@
},
"width": 142,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 42,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "finally.a",
@ -656,7 +673,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.tree",
@ -694,7 +712,6 @@
},
"width": 134,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.inside",
@ -732,7 +751,6 @@
},
"width": 148,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 48,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.hierarchy",
@ -770,7 +790,6 @@
},
"width": 173,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 73,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "finally.root",
@ -808,7 +829,6 @@
},
"width": 135,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 35,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -883,7 +905,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> and)[0]",
@ -929,7 +952,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> nodes)[0]",
@ -967,7 +991,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(and -> some)[0]",
@ -1005,7 +1030,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(tree -> more)[0]",
@ -1043,7 +1069,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(tree -> many)[0]",
@ -1089,7 +1116,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(then -> here)[0]",
@ -1127,7 +1155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(here -> you)[0]",
@ -1165,7 +1194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(have -> hierarchy)[0]",
@ -1203,7 +1233,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(then -> hierarchy)[0]",
@ -1249,7 +1280,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(finally -> another)[0]",
@ -1287,7 +1319,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(another -> of)[0]",
@ -1325,7 +1358,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(nesting -> trees)[0]",
@ -1363,7 +1397,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(finally -> trees)[0]",
@ -1409,7 +1444,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(a -> tree)[0]",
@ -1455,7 +1491,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(inside -> a)[0]",
@ -1493,7 +1530,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(tree -> hierarchy)[0]",
@ -1531,7 +1569,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "finally.(a -> root)[0]",
@ -1569,7 +1608,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 494,
"height": 1456,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b.2",
@ -48,7 +49,6 @@
},
"width": 240,
"height": 1130,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "a",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -162,7 +166,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b.1",
@ -238,7 +244,6 @@
},
"width": 112,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.3",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.4",
@ -314,7 +322,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.5",
@ -352,7 +361,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.2.a",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.b",
@ -428,7 +439,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.c",
@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.d",
@ -504,7 +517,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.e",
@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}
],
"connections": [
@ -618,7 +633,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -665,7 +681,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> d)[0]",
@ -712,7 +729,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -759,7 +777,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(1 -> 2)[0]",
@ -806,7 +825,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(2 -> 3)[0]",
@ -853,7 +873,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(3 -> 4)[0]",
@ -900,7 +921,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(4 -> 5)[0]",
@ -947,7 +969,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(a -> b)[0]",
@ -994,7 +1017,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(b -> c)[0]",
@ -1041,7 +1065,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(c -> d)[0]",
@ -1088,7 +1113,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(d -> e)[0]",
@ -1135,7 +1161,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 414,
"height": 1594,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b.2",
@ -48,7 +49,6 @@
},
"width": 264,
"height": 860,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "a",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -124,7 +127,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -162,7 +166,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -200,7 +205,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b.1",
@ -238,7 +244,6 @@
},
"width": 112,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.3",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.4",
@ -314,7 +322,6 @@
},
"width": 114,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.5",
@ -352,7 +361,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "b.2.a",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.b",
@ -428,7 +439,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.c",
@ -466,7 +478,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.d",
@ -504,7 +517,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "b.2.e",
@ -542,7 +556,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
}
],
"connections": [
@ -609,7 +624,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -647,7 +663,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> d)[0]",
@ -685,7 +702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -723,7 +741,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(1 -> 2)[0]",
@ -761,7 +780,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(2 -> 3)[0]",
@ -799,7 +819,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(3 -> 4)[0]",
@ -837,7 +858,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.(4 -> 5)[0]",
@ -875,7 +897,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(a -> b)[0]",
@ -913,7 +936,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(b -> c)[0]",
@ -951,7 +975,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(c -> d)[0]",
@ -989,7 +1014,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "b.2.(d -> e)[0]",
@ -1027,7 +1053,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "beta",
@ -48,7 +49,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -124,7 +126,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 145,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 45,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "beta",
@ -48,7 +49,6 @@
},
"width": 136,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 36,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -115,7 +117,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -0,0 +1,619 @@
{
"name": "",
"shapes": [
{
"id": "size XS",
"type": "",
"pos": {
"x": 1293,
"y": 278
},
"width": 145,
"height": 122,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XS",
"fontSize": 13,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 45,
"labelHeight": 22,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size S",
"type": "",
"pos": {
"x": 4,
"y": 12
},
"width": 140,
"height": 123,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size S",
"fontSize": 14,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 40,
"labelHeight": 23,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size M",
"type": "",
"pos": {
"x": 0,
"y": 276
},
"width": 147,
"height": 126,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size M",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size L",
"type": "",
"pos": {
"x": 204,
"y": 8
},
"width": 153,
"height": 131,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size L",
"fontSize": 20,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 53,
"labelHeight": 31,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XL",
"type": "",
"pos": {
"x": 417,
"y": 5
},
"width": 177,
"height": 136,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XL",
"fontSize": 24,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 77,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XXL",
"type": "",
"pos": {
"x": 654,
"y": 3
},
"width": 204,
"height": 141,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XXL",
"fontSize": 28,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 104,
"labelHeight": 41,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XXXL",
"type": "",
"pos": {
"x": 918,
"y": 0
},
"width": 237,
"height": 146,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XXXL",
"fontSize": 32,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 137,
"labelHeight": 46,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 8",
"type": "",
"pos": {
"x": 1297,
"y": 15
},
"width": 137,
"height": 116,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 8",
"fontSize": 8,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 37,
"labelHeight": 16,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 12",
"type": "",
"pos": {
"x": 1494,
"y": 13
},
"width": 160,
"height": 121,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 12",
"fontSize": 12,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 60,
"labelHeight": 21,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 18",
"type": "",
"pos": {
"x": 1714,
"y": 9
},
"width": 186,
"height": 128,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 18",
"fontSize": 18,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 86,
"labelHeight": 28,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 21",
"type": "",
"pos": {
"x": 1960,
"y": 7
},
"width": 200,
"height": 132,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 21",
"fontSize": 21,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 100,
"labelHeight": 32,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 64",
"type": "",
"pos": {
"x": 840,
"y": 246
},
"width": 393,
"height": 186,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 64",
"fontSize": 64,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 293,
"labelHeight": 86,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
{
"id": "(custom 8 -> size XS)[0]",
"src": "custom 8",
"srcArrow": "none",
"srcLabel": "",
"dst": "size XS",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 10",
"fontSize": 10,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 42,
"labelHeight": 13,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 1365,
"y": 131
},
{
"x": 1365,
"y": 183
},
{
"x": 1365,
"y": 212.4
},
{
"x": 1365,
"y": 278
}
],
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
},
{
"id": "(size S -> size M)[0]",
"src": "size S",
"srcArrow": "none",
"srcLabel": "",
"dst": "size M",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 15",
"fontSize": 15,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 64,
"labelHeight": 19,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 73.5,
"y": 135.5
},
{
"x": 73.5,
"y": 183.9
},
{
"x": 73.5,
"y": 212
},
{
"x": 73.5,
"y": 276
}
],
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
},
{
"id": "(size XXXL -> custom 64)[0]",
"src": "size XXXL",
"srcArrow": "none",
"srcLabel": "",
"dst": "custom 64",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 48",
"fontSize": 48,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 199,
"labelHeight": 61,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 1036,
"y": 146
},
{
"x": 1036,
"y": 186
},
{
"x": 1036,
"y": 206
},
{
"x": 1036,
"y": 246
}
],
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
}
]
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 472 KiB

592
e2etests/testdata/stable/font_sizes/elk/board.exp.json generated vendored Normal file
View file

@ -0,0 +1,592 @@
{
"name": "",
"shapes": [
{
"id": "size XS",
"type": "",
"pos": {
"x": 1465,
"y": 419
},
"width": 145,
"height": 122,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XS",
"fontSize": 13,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 45,
"labelHeight": 22,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size S",
"type": "",
"pos": {
"x": 1634,
"y": 35
},
"width": 140,
"height": 123,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size S",
"fontSize": 14,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 40,
"labelHeight": 23,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size M",
"type": "",
"pos": {
"x": 1630,
"y": 419
},
"width": 147,
"height": 126,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size M",
"fontSize": 16,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 47,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size L",
"type": "",
"pos": {
"x": 1116,
"y": 20
},
"width": 153,
"height": 131,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size L",
"fontSize": 20,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 53,
"labelHeight": 31,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XL",
"type": "",
"pos": {
"x": 12,
"y": 17
},
"width": 177,
"height": 136,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XL",
"fontSize": 24,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 77,
"labelHeight": 36,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XXL",
"type": "",
"pos": {
"x": 429,
"y": 15
},
"width": 204,
"height": 141,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XXL",
"fontSize": 28,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 104,
"labelHeight": 41,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "size XXXL",
"type": "",
"pos": {
"x": 653,
"y": 12
},
"width": 237,
"height": 146,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "size XXXL",
"fontSize": 32,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 137,
"labelHeight": 46,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 8",
"type": "",
"pos": {
"x": 1469,
"y": 42
},
"width": 137,
"height": 116,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 8",
"fontSize": 8,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 37,
"labelHeight": 16,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 12",
"type": "",
"pos": {
"x": 1289,
"y": 25
},
"width": 160,
"height": 121,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 12",
"fontSize": 12,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 60,
"labelHeight": 21,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 18",
"type": "",
"pos": {
"x": 910,
"y": 21
},
"width": 186,
"height": 128,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 18",
"fontSize": 18,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 86,
"labelHeight": 28,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 21",
"type": "",
"pos": {
"x": 209,
"y": 19
},
"width": 200,
"height": 132,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 21",
"fontSize": 21,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 100,
"labelHeight": 32,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "custom 64",
"type": "",
"pos": {
"x": 575,
"y": 419
},
"width": 393,
"height": 186,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"borderRadius": 0,
"fill": "#F7F8FE",
"stroke": "#0D32B2",
"shadow": false,
"3d": false,
"multiple": false,
"tooltip": "",
"link": "",
"icon": null,
"iconPosition": "",
"fields": null,
"methods": null,
"columns": null,
"label": "custom 64",
"fontSize": 64,
"fontFamily": "DEFAULT",
"language": "",
"color": "#0A0F25",
"italic": false,
"bold": true,
"underline": false,
"labelWidth": 293,
"labelHeight": 86,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
{
"id": "(custom 8 -> size XS)[0]",
"src": "custom 8",
"srcArrow": "none",
"srcLabel": "",
"dst": "size XS",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 10",
"fontSize": 10,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 42,
"labelHeight": 13,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 1537.5,
"y": 158
},
{
"x": 1537.5,
"y": 419
}
],
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
},
{
"id": "(size S -> size M)[0]",
"src": "size S",
"srcArrow": "none",
"srcLabel": "",
"dst": "size M",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 15",
"fontSize": 15,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 64,
"labelHeight": 19,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 1703.5,
"y": 158
},
{
"x": 1703.5,
"y": 419
}
],
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
},
{
"id": "(size XXXL -> custom 64)[0]",
"src": "size XXXL",
"srcArrow": "none",
"srcLabel": "",
"dst": "custom 64",
"dstArrow": "triangle",
"dstLabel": "",
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
"stroke": "#0D32B2",
"label": "custom 48",
"fontSize": 48,
"fontFamily": "DEFAULT",
"language": "",
"color": "#676C7E",
"italic": true,
"bold": false,
"underline": false,
"labelWidth": 199,
"labelHeight": 61,
"labelPosition": "INSIDE_MIDDLE_CENTER",
"labelPercentage": 0,
"route": [
{
"x": 771.5,
"y": 158
},
{
"x": 771.5,
"y": 419
}
],
"animated": false,
"tooltip": "",
"icon": null,
"zIndex": 0
}
]
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 472 KiB

View file

@ -10,7 +10,6 @@
},
"width": 3051,
"height": 4848,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 3051,
"labelHeight": 4848
"labelHeight": 4848,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 3051,
"height": 4848,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 3051,
"labelHeight": 4848
"labelHeight": 4848,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 738,
"height": 134,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 738,
"labelHeight": 134
"labelHeight": 134,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 738,
"height": 134,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 738,
"labelHeight": 134
"labelHeight": 134,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 128,
"height": 128,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -48,7 +47,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER"
"labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -59,7 +60,6 @@
},
"width": 128,
"height": 128,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -97,7 +97,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER"
"labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -146,7 +148,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 128,
"height": 128,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -48,7 +47,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER"
"labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -59,7 +60,6 @@
},
"width": 128,
"height": 128,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -97,7 +97,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "OUTSIDE_TOP_CENTER"
"labelPosition": "OUTSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -137,7 +139,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 122,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "bb",
@ -48,7 +49,6 @@
},
"width": 123,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cc",
@ -86,7 +88,6 @@
},
"width": 121,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "dd",
@ -124,7 +127,6 @@
},
"width": 577,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "dd.ee",
@ -162,7 +166,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll",
@ -200,7 +205,6 @@
},
"width": 545,
"height": 457,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ll.mm",
@ -238,7 +244,6 @@
},
"width": 131,
"height": 131,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff",
@ -276,7 +283,6 @@
},
"width": 567,
"height": 457,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ff.mm",
@ -314,7 +322,6 @@
},
"width": 131,
"height": 131,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff.gg",
@ -352,7 +361,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "dd.hh",
@ -390,7 +400,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ww",
@ -428,7 +439,6 @@
},
"width": 131,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -466,7 +476,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "yy",
@ -477,7 +489,6 @@
},
"width": 323,
"height": 452,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -504,7 +515,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "yy.zz",
@ -515,7 +528,6 @@
},
"width": 120,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -553,7 +565,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ad",
@ -564,7 +578,6 @@
},
"width": 123,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -591,7 +604,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn",
@ -602,7 +617,6 @@
},
"width": 769,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -629,7 +643,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ii",
@ -640,7 +656,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -667,7 +682,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "jj",
@ -678,7 +695,6 @@
},
"width": 115,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -705,7 +721,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "kk",
@ -716,7 +734,6 @@
},
"width": 122,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -743,7 +760,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn.oo",
@ -754,7 +773,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -781,7 +799,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff.pp",
@ -792,7 +812,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -819,7 +838,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll.qq",
@ -830,7 +851,6 @@
},
"width": 124,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -857,7 +877,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll.rr",
@ -868,7 +890,6 @@
},
"width": 118,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -895,7 +916,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ss",
@ -906,7 +929,6 @@
},
"width": 218,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -933,7 +955,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ss.tt",
@ -944,7 +968,6 @@
},
"width": 118,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -971,7 +994,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "uu",
@ -982,7 +1007,6 @@
},
"width": 223,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1009,7 +1033,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "uu.vv",
@ -1020,7 +1046,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1047,7 +1072,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "rm",
@ -1058,7 +1085,6 @@
},
"width": 124,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1085,7 +1111,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn.xx",
@ -1096,7 +1124,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1123,7 +1150,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "yy.ab",
@ -1134,7 +1163,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1161,7 +1189,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "nn.ac",
@ -1172,7 +1202,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1199,7 +1228,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -1248,7 +1279,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(bb -- cc)[0]",
@ -1295,7 +1327,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(aa -> dd.ee)[0]",
@ -1390,7 +1423,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(bb -> ff.gg)[0]",
@ -1653,7 +1687,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(cc -> dd.hh)[0]",
@ -1700,7 +1735,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(dd.ee -> ii)[0]",
@ -1747,7 +1783,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ii -- jj)[0]",
@ -1794,7 +1831,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(jj -> kk)[0]",
@ -1853,7 +1891,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(kk -> ff.mm)[0]",
@ -1960,7 +1999,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ff.mm -> ll.mm)[0]",
@ -2043,7 +2083,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ll.mm -> nn.oo)[0]",
@ -2174,7 +2215,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "ff.(gg -> pp)[0]",
@ -2221,7 +2263,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ff.pp -> ll.qq)[0]",
@ -2280,7 +2323,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "ll.(qq -> rr)[0]",
@ -2327,7 +2371,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(dd.hh -> ss.tt)[0]",
@ -2410,7 +2455,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ss.tt -> uu.vv)[0]",
@ -2469,7 +2515,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(kk -> ww)[0]",
@ -2516,7 +2563,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(uu.vv -> ww)[0]",
@ -2563,7 +2611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ww -> rm)[0]",
@ -2706,7 +2755,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(rm -> nn.xx)[0]",
@ -2837,7 +2887,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ll.rr -> yy.zz)[0]",
@ -2896,7 +2947,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(rm -> yy.zz)[0]",
@ -2955,7 +3007,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "yy.(zz -> ab)[0]",
@ -3002,7 +3055,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(yy.ab -> nn.ac)[0]",
@ -3061,7 +3115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(nn.ac -> ad)[0]",
@ -3108,7 +3163,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ww -> ff.gg)[0]",
@ -3155,7 +3211,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 122,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "bb",
@ -48,7 +49,6 @@
},
"width": 123,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "cc",
@ -86,7 +88,6 @@
},
"width": 121,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "dd",
@ -124,7 +127,6 @@
},
"width": 415,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 34,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "dd.ee",
@ -162,7 +166,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll",
@ -200,7 +205,6 @@
},
"width": 425,
"height": 427,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ll.mm",
@ -238,7 +244,6 @@
},
"width": 131,
"height": 131,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff",
@ -276,7 +283,6 @@
},
"width": 424,
"height": 427,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ff.mm",
@ -314,7 +322,6 @@
},
"width": 131,
"height": 131,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff.gg",
@ -352,7 +361,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "dd.hh",
@ -390,7 +400,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ww",
@ -428,7 +439,6 @@
},
"width": 131,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -466,7 +476,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "yy",
@ -477,7 +489,6 @@
},
"width": 273,
"height": 422,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -504,7 +515,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "yy.zz",
@ -515,7 +528,6 @@
},
"width": 120,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -553,7 +565,9 @@
"underline": false,
"labelWidth": 20,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ad",
@ -564,7 +578,6 @@
},
"width": 123,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -591,7 +604,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn",
@ -602,7 +617,6 @@
},
"width": 557,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -629,7 +643,9 @@
"underline": false,
"labelWidth": 33,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ii",
@ -640,7 +656,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -667,7 +682,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "jj",
@ -678,7 +695,6 @@
},
"width": 115,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -705,7 +721,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "kk",
@ -716,7 +734,6 @@
},
"width": 122,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -743,7 +760,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn.oo",
@ -754,7 +773,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -781,7 +799,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ff.pp",
@ -792,7 +812,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -819,7 +838,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll.qq",
@ -830,7 +851,6 @@
},
"width": 124,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -857,7 +877,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ll.rr",
@ -868,7 +890,6 @@
},
"width": 118,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -895,7 +916,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "ss",
@ -906,7 +929,6 @@
},
"width": 268,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -933,7 +955,9 @@
"underline": false,
"labelWidth": 28,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "ss.tt",
@ -944,7 +968,6 @@
},
"width": 118,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -971,7 +994,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "uu",
@ -982,7 +1007,6 @@
},
"width": 273,
"height": 276,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1009,7 +1033,9 @@
"underline": false,
"labelWidth": 32,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "uu.vv",
@ -1020,7 +1046,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1047,7 +1072,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "rm",
@ -1058,7 +1085,6 @@
},
"width": 124,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1085,7 +1111,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "nn.xx",
@ -1096,7 +1124,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1123,7 +1150,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "yy.ab",
@ -1134,7 +1163,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1161,7 +1189,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "nn.ac",
@ -1172,7 +1202,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1199,7 +1228,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -1247,7 +1278,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(bb -- cc)[0]",
@ -1285,7 +1317,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(aa -> dd.ee)[0]",
@ -1323,7 +1356,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(bb -> ff.gg)[0]",
@ -1377,7 +1411,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(cc -> dd.hh)[0]",
@ -1415,7 +1450,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(dd.ee -> ii)[0]",
@ -1453,7 +1489,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ii -- jj)[0]",
@ -1491,7 +1528,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(jj -> kk)[0]",
@ -1529,7 +1567,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(kk -> ff.mm)[0]",
@ -1567,7 +1606,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ff.mm -> ll.mm)[0]",
@ -1605,7 +1645,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ll.mm -> nn.oo)[0]",
@ -1643,7 +1684,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "ff.(gg -> pp)[0]",
@ -1681,7 +1723,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ff.pp -> ll.qq)[0]",
@ -1727,7 +1770,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "ll.(qq -> rr)[0]",
@ -1765,7 +1809,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(dd.hh -> ss.tt)[0]",
@ -1811,7 +1856,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ss.tt -> uu.vv)[0]",
@ -1849,7 +1895,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(kk -> ww)[0]",
@ -1895,7 +1942,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(uu.vv -> ww)[0]",
@ -1933,7 +1981,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ww -> rm)[0]",
@ -1971,7 +2020,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(rm -> nn.xx)[0]",
@ -2025,7 +2075,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ll.rr -> yy.zz)[0]",
@ -2071,7 +2122,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(rm -> yy.zz)[0]",
@ -2109,7 +2161,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "yy.(zz -> ab)[0]",
@ -2147,7 +2200,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(yy.ab -> nn.ac)[0]",
@ -2193,7 +2247,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(nn.ac -> ad)[0]",
@ -2231,7 +2286,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(ww -> ff.gg)[0]",
@ -2277,7 +2333,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 781,
"height": 702,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i.j",
@ -352,7 +361,6 @@
},
"width": 578,
"height": 226,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.j.k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "i.j.l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "i.m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.o",
@ -542,7 +556,6 @@
},
"width": 213,
"height": 226,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.o.p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 1886,
"height": 752,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r.s",
@ -694,7 +712,6 @@
},
"width": 647,
"height": 652,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.s.t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.u",
@ -770,7 +790,6 @@
},
"width": 214,
"height": 226,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.u.v",
@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "r.s.w",
@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.x",
@ -884,7 +907,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.y",
@ -922,7 +946,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.z",
@ -960,7 +985,6 @@
},
"width": 112,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.aa",
@ -998,7 +1024,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.bb",
@ -1036,7 +1063,6 @@
},
"width": 405,
"height": 226,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.bb.cc",
@ -1074,7 +1102,6 @@
},
"width": 121,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.bb.dd",
@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.ee",
@ -1150,7 +1180,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.ff",
@ -1188,7 +1219,6 @@
},
"width": 117,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.gg",
@ -1226,7 +1258,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -1326,7 +1359,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "i.(j.l -> o.p)[0]",
@ -1397,7 +1431,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> i.m)[0]",
@ -1456,7 +1491,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> q)[0]",
@ -1515,7 +1551,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.n -> q)[0]",
@ -1574,7 +1611,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> c)[0]",
@ -1633,7 +1671,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> d)[0]",
@ -1692,7 +1731,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> g)[0]",
@ -1751,7 +1791,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> f)[0]",
@ -1810,7 +1851,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -1857,7 +1899,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.s.(x -> t)[0]",
@ -1928,7 +1971,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.s.(x -> w)[0]",
@ -1999,7 +2043,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(gg -> s.t)[0]",
@ -2070,7 +2115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(s.u.v -> z)[0]",
@ -2141,7 +2187,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(aa -> s.t)[0]",
@ -2212,7 +2259,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.w -> i.m)[0]",
@ -2283,7 +2331,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.t -> g)[0]",
@ -2402,7 +2451,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.t -> h)[0]",
@ -2473,7 +2523,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(ee -> ff)[0]",
@ -2544,7 +2595,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 746,
"height": 732,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i.j",
@ -352,7 +361,6 @@
},
"width": 392,
"height": 276,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.j.k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "i.j.l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "i.m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.o",
@ -542,7 +556,6 @@
},
"width": 263,
"height": 276,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 16,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "i.o.p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 1492,
"height": 1179,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r.s",
@ -694,7 +712,6 @@
},
"width": 767,
"height": 577,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 15,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.s.t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.u",
@ -770,7 +790,6 @@
},
"width": 264,
"height": 276,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 31,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.u.v",
@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
"level": 4,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 4
},
{
"id": "r.s.w",
@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.x",
@ -884,7 +907,6 @@
},
"width": 113,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -911,7 +933,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.s.y",
@ -922,7 +946,6 @@
},
"width": 114,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -949,7 +972,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.z",
@ -960,7 +985,6 @@
},
"width": 112,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -987,7 +1011,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.aa",
@ -998,7 +1024,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1025,7 +1050,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.bb",
@ -1036,7 +1063,6 @@
},
"width": 415,
"height": 276,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1063,7 +1089,9 @@
"underline": false,
"labelWidth": 31,
"labelHeight": 36,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.bb.cc",
@ -1074,7 +1102,6 @@
},
"width": 121,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1101,7 +1128,9 @@
"underline": false,
"labelWidth": 21,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.bb.dd",
@ -1112,7 +1141,6 @@
},
"width": 124,
"height": 126,
"level": 3,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1139,7 +1167,9 @@
"underline": false,
"labelWidth": 24,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 3
},
{
"id": "r.ee",
@ -1150,7 +1180,6 @@
},
"width": 122,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1177,7 +1206,9 @@
"underline": false,
"labelWidth": 22,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.ff",
@ -1188,7 +1219,6 @@
},
"width": 117,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1215,7 +1245,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "r.gg",
@ -1226,7 +1258,6 @@
},
"width": 123,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -1253,7 +1284,9 @@
"underline": false,
"labelWidth": 23,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -1301,7 +1334,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "i.(j.l -> o.p)[0]",
@ -1339,7 +1373,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> i.m)[0]",
@ -1393,7 +1428,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> q)[0]",
@ -1439,7 +1475,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.n -> q)[0]",
@ -1477,7 +1514,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> c)[0]",
@ -1523,7 +1561,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> d)[0]",
@ -1569,7 +1608,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> g)[0]",
@ -1615,7 +1655,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i.m -> f)[0]",
@ -1661,7 +1702,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -1699,7 +1741,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.s.(x -> t)[0]",
@ -1745,7 +1788,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.s.(x -> w)[0]",
@ -1783,7 +1827,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(gg -> s.t)[0]",
@ -1821,7 +1866,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(s.u.v -> z)[0]",
@ -1859,7 +1905,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(aa -> s.t)[0]",
@ -1905,7 +1952,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.w -> i.m)[0]",
@ -1943,7 +1991,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.t -> g)[0]",
@ -1989,7 +2038,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r.s.t -> h)[0]",
@ -2035,7 +2085,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "r.(ee -> ff)[0]",
@ -2073,7 +2124,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 382,
"height": 101,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 382,
"labelHeight": 101
"labelHeight": 101,
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -47,7 +48,6 @@
},
"width": 65,
"height": 18,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 65,
"labelHeight": 18
"labelHeight": 18,
"zIndex": 0,
"level": 1
},
{
"id": "z",
@ -84,7 +86,6 @@
},
"width": 179,
"height": 51,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -110,7 +111,9 @@
"bold": true,
"underline": false,
"labelWidth": 179,
"labelHeight": 51
"labelHeight": 51,
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -121,7 +124,6 @@
},
"width": 214,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -148,7 +150,9 @@
"underline": false,
"labelWidth": 114,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "sugar",
@ -159,7 +163,6 @@
},
"width": 146,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -186,7 +189,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "solution",
@ -197,7 +202,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -224,7 +228,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -273,7 +279,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(z -> b)[0]",
@ -320,7 +327,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -367,7 +375,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -414,7 +423,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(sugar -> c)[0]",
@ -461,7 +471,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> solution)[0]",
@ -508,7 +519,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 382,
"height": 101,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 382,
"labelHeight": 101
"labelHeight": 101,
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -47,7 +48,6 @@
},
"width": 65,
"height": 18,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -73,7 +73,9 @@
"bold": true,
"underline": false,
"labelWidth": 65,
"labelHeight": 18
"labelHeight": 18,
"zIndex": 0,
"level": 1
},
{
"id": "z",
@ -84,7 +86,6 @@
},
"width": 179,
"height": 51,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -110,7 +111,9 @@
"bold": true,
"underline": false,
"labelWidth": 179,
"labelHeight": 51
"labelHeight": 51,
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -121,7 +124,6 @@
},
"width": 214,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -148,7 +150,9 @@
"underline": false,
"labelWidth": 114,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "sugar",
@ -159,7 +163,6 @@
},
"width": 146,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -186,7 +189,9 @@
"underline": false,
"labelWidth": 46,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "solution",
@ -197,7 +202,6 @@
},
"width": 164,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -224,7 +228,9 @@
"underline": false,
"labelWidth": 64,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -272,7 +278,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(z -> b)[0]",
@ -310,7 +317,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -356,7 +364,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(b -> c)[0]",
@ -394,7 +403,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(sugar -> c)[0]",
@ -440,7 +450,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> solution)[0]",
@ -478,7 +489,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 379,
"height": 100,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 379,
"labelHeight": 100
"labelHeight": 100,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 379,
"height": 100,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 379,
"labelHeight": 100
"labelHeight": 100,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 245,
"height": 76,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 245,
"labelHeight": 76
"labelHeight": 76,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 245,
"height": 76,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 245,
"labelHeight": 76
"labelHeight": 76,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 347,
"height": 512,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 347,
"labelHeight": 512
"labelHeight": 512,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 347,
"height": 512,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 347,
"labelHeight": 512
"labelHeight": 512,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 920,
"height": 376,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 920,
"labelHeight": 376
"labelHeight": 376,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 920,
"height": 376,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 920,
"labelHeight": 376
"labelHeight": 376,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 266,
"height": 50,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 266,
"labelHeight": 50
"labelHeight": 50,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 266,
"height": 50,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 266,
"labelHeight": 50
"labelHeight": 50,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 531,
"height": 186,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 531,
"labelHeight": 186
"labelHeight": 186,
"zIndex": 0,
"level": 1
},
{
"id": "x",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "y",
@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hey -> y)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 531,
"height": 186,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 531,
"labelHeight": 186
"labelHeight": 186,
"zIndex": 0,
"level": 1
},
{
"id": "x",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "y",
@ -85,7 +87,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(hey -> y)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 559,
"height": 148,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "markdown.md",
@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
"labelHeight": 48
"labelHeight": 48,
"zIndex": 0,
"level": 2
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 609,
"height": 198,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "markdown.md",
@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
"labelHeight": 48
"labelHeight": 48,
"zIndex": 0,
"level": 2
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 559,
"height": 148,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "markdown.md",
@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
"labelHeight": 48
"labelHeight": 48,
"zIndex": 0,
"level": 2
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 609,
"height": 198,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 129,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "markdown.md",
@ -48,7 +49,6 @@
},
"width": 459,
"height": 48,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"bold": true,
"underline": false,
"labelWidth": 459,
"labelHeight": 48
"labelHeight": 48,
"zIndex": 0,
"level": 2
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 196,
"height": 111,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 196,
"labelHeight": 111
"labelHeight": 111,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 196,
"height": 111,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 196,
"labelHeight": 111
"labelHeight": 111,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 212,
"height": 151,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 212,
"labelHeight": 151
"labelHeight": 151,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 212,
"height": 151,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 212,
"labelHeight": 151
"labelHeight": 151,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 46,
"height": 24,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 46,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -161,7 +164,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -208,7 +212,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 46,
"height": 24,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -36,7 +35,9 @@
"bold": true,
"underline": false,
"labelWidth": 46,
"labelHeight": 24
"labelHeight": 24,
"zIndex": 0,
"level": 1
},
{
"id": "a",
@ -47,7 +48,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -74,7 +74,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -85,7 +87,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -112,7 +113,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -152,7 +155,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(md -> b)[0]",
@ -190,7 +194,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 202,
"height": 158,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 102,
"labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 202,
"height": 158,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 102,
"labelHeight": 58,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": []

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "s",
@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "u",
@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "v",
@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "w",
@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -922,7 +945,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -969,7 +993,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> d)[0]",
@ -1016,7 +1041,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> e)[0]",
@ -1063,7 +1089,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> f)[0]",
@ -1110,7 +1137,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> a)[0]",
@ -1157,7 +1185,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> h)[0]",
@ -1204,7 +1233,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> b)[0]",
@ -1251,7 +1281,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> b)[0]",
@ -1298,7 +1329,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(k -> g)[0]",
@ -1345,7 +1377,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> g)[0]",
@ -1392,7 +1425,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> m)[0]",
@ -1439,7 +1473,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> n)[0]",
@ -1486,7 +1521,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> o)[0]",
@ -1533,7 +1569,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> p)[0]",
@ -1580,7 +1617,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> q)[0]",
@ -1627,7 +1665,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> r)[0]",
@ -1674,7 +1713,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> s)[0]",
@ -1721,7 +1761,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> t)[0]",
@ -1768,7 +1809,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> u)[0]",
@ -1815,7 +1857,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(v -> h)[0]",
@ -1862,7 +1905,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(w -> h)[0]",
@ -1909,7 +1953,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "s",
@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "u",
@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "v",
@ -808,7 +829,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -835,7 +855,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "w",
@ -846,7 +868,6 @@
},
"width": 118,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -873,7 +894,9 @@
"underline": false,
"labelWidth": 18,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -921,7 +944,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> c)[0]",
@ -967,7 +991,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> d)[0]",
@ -1013,7 +1038,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> e)[0]",
@ -1051,7 +1077,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> f)[0]",
@ -1097,7 +1124,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> a)[0]",
@ -1135,7 +1163,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> h)[0]",
@ -1181,7 +1210,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> b)[0]",
@ -1219,7 +1249,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> b)[0]",
@ -1265,7 +1296,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(k -> g)[0]",
@ -1311,7 +1343,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> g)[0]",
@ -1349,7 +1382,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> m)[0]",
@ -1395,7 +1429,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> n)[0]",
@ -1433,7 +1468,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> o)[0]",
@ -1479,7 +1515,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> p)[0]",
@ -1517,7 +1554,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> q)[0]",
@ -1555,7 +1593,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> r)[0]",
@ -1601,7 +1640,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> s)[0]",
@ -1639,7 +1679,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> t)[0]",
@ -1677,7 +1718,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> u)[0]",
@ -1723,7 +1765,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(v -> h)[0]",
@ -1769,7 +1812,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(w -> h)[0]",
@ -1807,7 +1851,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "s",
@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "u",
@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -858,7 +879,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> a)[0]",
@ -941,7 +963,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> a)[0]",
@ -988,7 +1011,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> b)[0]",
@ -1071,7 +1095,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -1118,7 +1143,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> f)[0]",
@ -1165,7 +1191,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> b)[0]",
@ -1212,7 +1239,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> f)[0]",
@ -1319,7 +1347,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> c)[0]",
@ -1378,7 +1407,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> h)[0]",
@ -1425,7 +1455,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(h -> i)[0]",
@ -1472,7 +1503,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> j)[0]",
@ -1519,7 +1551,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> k)[0]",
@ -1566,7 +1599,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(k -> e)[0]",
@ -1613,7 +1647,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> f)[0]",
@ -1696,7 +1731,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> m)[0]",
@ -1755,7 +1791,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> l)[0]",
@ -1802,7 +1839,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> l)[1]",
@ -1849,7 +1887,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> m)[0]",
@ -1932,7 +1971,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> o)[0]",
@ -1979,7 +2019,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(o -> p)[0]",
@ -2026,7 +2067,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> m)[0]",
@ -2073,7 +2115,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> p)[0]",
@ -2132,7 +2175,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> n)[0]",
@ -2239,7 +2283,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> r)[0]",
@ -2286,7 +2331,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r -> s)[0]",
@ -2333,7 +2379,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(s -> t)[0]",
@ -2380,7 +2427,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(t -> u)[0]",
@ -2427,7 +2475,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(u -> o)[0]",
@ -2474,7 +2523,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(t -> p)[0]",
@ -2557,7 +2607,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> t)[0]",
@ -2604,7 +2655,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(s -> a)[0]",
@ -2687,7 +2739,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(u -> a)[0]",
@ -2734,7 +2787,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "i",
@ -314,7 +322,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -341,7 +348,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "j",
@ -352,7 +361,6 @@
},
"width": 110,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -379,7 +387,9 @@
"underline": false,
"labelWidth": 10,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "k",
@ -390,7 +400,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -417,7 +426,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "l",
@ -428,7 +439,6 @@
},
"width": 109,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -455,7 +465,9 @@
"underline": false,
"labelWidth": 9,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "m",
@ -466,7 +478,6 @@
},
"width": 117,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -493,7 +504,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "n",
@ -504,7 +517,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -531,7 +543,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "o",
@ -542,7 +556,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -569,7 +582,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "p",
@ -580,7 +595,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -607,7 +621,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "q",
@ -618,7 +634,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -645,7 +660,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "r",
@ -656,7 +673,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -683,7 +699,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "s",
@ -694,7 +712,6 @@
},
"width": 112,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -721,7 +738,9 @@
"underline": false,
"labelWidth": 12,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "t",
@ -732,7 +751,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -759,7 +777,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "u",
@ -770,7 +790,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -797,7 +816,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
}
],
"connections": [
@ -845,7 +866,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> a)[0]",
@ -891,7 +913,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> a)[0]",
@ -937,7 +960,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> b)[0]",
@ -975,7 +999,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> e)[0]",
@ -1021,7 +1046,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> f)[0]",
@ -1059,7 +1085,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> b)[0]",
@ -1105,7 +1132,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> f)[0]",
@ -1159,7 +1187,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> c)[0]",
@ -1197,7 +1226,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> h)[0]",
@ -1243,7 +1273,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(h -> i)[0]",
@ -1281,7 +1312,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(i -> j)[0]",
@ -1319,7 +1351,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> k)[0]",
@ -1357,7 +1390,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(k -> e)[0]",
@ -1395,7 +1429,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(j -> f)[0]",
@ -1449,7 +1484,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(l -> m)[0]",
@ -1495,7 +1531,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> l)[0]",
@ -1541,7 +1578,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> l)[1]",
@ -1579,7 +1617,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> m)[0]",
@ -1625,7 +1664,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> o)[0]",
@ -1671,7 +1711,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(o -> p)[0]",
@ -1709,7 +1750,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(p -> m)[0]",
@ -1755,7 +1797,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(n -> p)[0]",
@ -1809,7 +1852,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> n)[0]",
@ -1847,7 +1891,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(q -> r)[0]",
@ -1893,7 +1938,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(r -> s)[0]",
@ -1931,7 +1977,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(s -> t)[0]",
@ -1969,7 +2016,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(t -> u)[0]",
@ -2007,7 +2055,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(u -> o)[0]",
@ -2045,7 +2094,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(t -> p)[0]",
@ -2099,7 +2149,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(c -> t)[0]",
@ -2145,7 +2196,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(s -> a)[0]",
@ -2199,7 +2251,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(u -> a)[0]",
@ -2245,7 +2298,8 @@
],
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

View file

@ -10,7 +10,6 @@
},
"width": 479,
"height": 226,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -37,7 +36,9 @@
"underline": false,
"labelWidth": 17,
"labelHeight": 41,
"labelPosition": "INSIDE_TOP_CENTER"
"labelPosition": "INSIDE_TOP_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.b",
@ -48,7 +49,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -75,7 +75,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
},
{
"id": "c",
@ -86,7 +88,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -113,7 +114,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "d",
@ -124,7 +127,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -151,7 +153,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "e",
@ -162,7 +166,6 @@
},
"width": 113,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -189,7 +192,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "f",
@ -200,7 +205,6 @@
},
"width": 111,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -227,7 +231,9 @@
"underline": false,
"labelWidth": 11,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "g",
@ -238,7 +244,6 @@
},
"width": 114,
"height": 126,
"level": 1,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -265,7 +270,9 @@
"underline": false,
"labelWidth": 14,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 1
},
{
"id": "a.h",
@ -276,7 +283,6 @@
},
"width": 113,
"height": 126,
"level": 2,
"opacity": 1,
"strokeDash": 0,
"strokeWidth": 2,
@ -303,7 +309,9 @@
"underline": false,
"labelWidth": 13,
"labelHeight": 26,
"labelPosition": "INSIDE_MIDDLE_CENTER"
"labelPosition": "INSIDE_MIDDLE_CENTER",
"zIndex": 0,
"level": 2
}
],
"connections": [
@ -424,7 +432,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(d -> c)[0]",
@ -471,7 +480,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(e -> c)[0]",
@ -518,7 +528,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(f -> d)[0]",
@ -565,7 +576,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a -> e)[0]",
@ -648,7 +660,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(g -> f)[0]",
@ -695,7 +708,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
},
{
"id": "(a.h -> g)[0]",
@ -742,7 +756,8 @@
"isCurve": true,
"animated": false,
"tooltip": "",
"icon": null
"icon": null,
"zIndex": 0
}
]
}

Some files were not shown because too many files have changed in this diff Show more