feat: add ability to fade multiple
|
|
@ -41,6 +41,7 @@ var CompositeReservedKeywords = map[string]struct{}{
|
|||
"constraint": {},
|
||||
"label": {},
|
||||
"icon": {},
|
||||
"multiple": {},
|
||||
}
|
||||
|
||||
// StyleKeywords are reserved keywords which cannot exist outside of the "style" keyword
|
||||
|
|
@ -63,9 +64,10 @@ var StyleKeywords = map[string]struct{}{
|
|||
"text-transform": {},
|
||||
|
||||
// Only for shapes
|
||||
"shadow": {},
|
||||
"multiple": {},
|
||||
"double-border": {},
|
||||
"shadow": {},
|
||||
"multiple": {},
|
||||
"multiple.opacity": {},
|
||||
"double-border": {},
|
||||
|
||||
// Only for squares
|
||||
"3d": {},
|
||||
|
|
|
|||
|
|
@ -763,6 +763,14 @@ func (c *compiler) compileStyleField(styles *d2graph.Style, f *d2ir.Field) {
|
|||
c.errorf(f.LastRef().AST(), `invalid style keyword: "%s"`, f.Name.ScalarString())
|
||||
return
|
||||
}
|
||||
if f.Map() != nil {
|
||||
fields := f.Map().Fields
|
||||
for i := 0; i < len(fields); i++ {
|
||||
field := fields[i]
|
||||
field.Name.SetString(f.Name.ScalarString() + "." + field.Name.ScalarString())
|
||||
c.compileStyleField(styles, field)
|
||||
}
|
||||
}
|
||||
if f.Primary() == nil {
|
||||
return
|
||||
}
|
||||
|
|
@ -797,6 +805,8 @@ func compileStyleFieldInit(styles *d2graph.Style, f *d2ir.Field) {
|
|||
styles.ThreeDee = &d2graph.Scalar{MapKey: f.LastPrimaryKey()}
|
||||
case "multiple":
|
||||
styles.Multiple = &d2graph.Scalar{MapKey: f.LastPrimaryKey()}
|
||||
case "multiple.opacity":
|
||||
styles.MultipleOpacity = &d2graph.Scalar{MapKey: f.LastPrimaryKey()}
|
||||
case "font":
|
||||
styles.Font = &d2graph.Scalar{MapKey: f.LastPrimaryKey()}
|
||||
case "font-size":
|
||||
|
|
|
|||
|
|
@ -172,6 +172,9 @@ func applyStyles(shape *d2target.Shape, obj *d2graph.Object) {
|
|||
if obj.Style.Multiple != nil {
|
||||
shape.Multiple, _ = strconv.ParseBool(obj.Style.Multiple.Value)
|
||||
}
|
||||
if obj.Style.MultipleOpacity != nil {
|
||||
shape.MultipleOpacity, _ = strconv.ParseFloat(obj.Style.MultipleOpacity.Value, 64)
|
||||
}
|
||||
if obj.Style.BorderRadius != nil {
|
||||
shape.BorderRadius, _ = strconv.Atoi(obj.Style.BorderRadius.Value)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -281,26 +281,27 @@ func (r Reference) InEdge() bool {
|
|||
}
|
||||
|
||||
type Style struct {
|
||||
Opacity *Scalar `json:"opacity,omitempty"`
|
||||
Stroke *Scalar `json:"stroke,omitempty"`
|
||||
Fill *Scalar `json:"fill,omitempty"`
|
||||
FillPattern *Scalar `json:"fillPattern,omitempty"`
|
||||
StrokeWidth *Scalar `json:"strokeWidth,omitempty"`
|
||||
StrokeDash *Scalar `json:"strokeDash,omitempty"`
|
||||
BorderRadius *Scalar `json:"borderRadius,omitempty"`
|
||||
Shadow *Scalar `json:"shadow,omitempty"`
|
||||
ThreeDee *Scalar `json:"3d,omitempty"`
|
||||
Multiple *Scalar `json:"multiple,omitempty"`
|
||||
Font *Scalar `json:"font,omitempty"`
|
||||
FontSize *Scalar `json:"fontSize,omitempty"`
|
||||
FontColor *Scalar `json:"fontColor,omitempty"`
|
||||
Animated *Scalar `json:"animated,omitempty"`
|
||||
Bold *Scalar `json:"bold,omitempty"`
|
||||
Italic *Scalar `json:"italic,omitempty"`
|
||||
Underline *Scalar `json:"underline,omitempty"`
|
||||
Filled *Scalar `json:"filled,omitempty"`
|
||||
DoubleBorder *Scalar `json:"doubleBorder,omitempty"`
|
||||
TextTransform *Scalar `json:"textTransform,omitempty"`
|
||||
Opacity *Scalar `json:"opacity,omitempty"`
|
||||
Stroke *Scalar `json:"stroke,omitempty"`
|
||||
Fill *Scalar `json:"fill,omitempty"`
|
||||
FillPattern *Scalar `json:"fillPattern,omitempty"`
|
||||
StrokeWidth *Scalar `json:"strokeWidth,omitempty"`
|
||||
StrokeDash *Scalar `json:"strokeDash,omitempty"`
|
||||
BorderRadius *Scalar `json:"borderRadius,omitempty"`
|
||||
Shadow *Scalar `json:"shadow,omitempty"`
|
||||
ThreeDee *Scalar `json:"3d,omitempty"`
|
||||
Multiple *Scalar `json:"multiple,omitempty"`
|
||||
MultipleOpacity *Scalar `json:"multipleOpacity,omitempty"`
|
||||
Font *Scalar `json:"font,omitempty"`
|
||||
FontSize *Scalar `json:"fontSize,omitempty"`
|
||||
FontColor *Scalar `json:"fontColor,omitempty"`
|
||||
Animated *Scalar `json:"animated,omitempty"`
|
||||
Bold *Scalar `json:"bold,omitempty"`
|
||||
Italic *Scalar `json:"italic,omitempty"`
|
||||
Underline *Scalar `json:"underline,omitempty"`
|
||||
Filled *Scalar `json:"filled,omitempty"`
|
||||
DoubleBorder *Scalar `json:"doubleBorder,omitempty"`
|
||||
TextTransform *Scalar `json:"textTransform,omitempty"`
|
||||
}
|
||||
|
||||
// NoneTextTransform will return a boolean if the text should not have any
|
||||
|
|
@ -399,6 +400,15 @@ func (s *Style) Apply(key, value string) error {
|
|||
return errors.New(`expected "multiple" to be true or false`)
|
||||
}
|
||||
s.Multiple.Value = value
|
||||
case "multiple.opacity":
|
||||
if s.MultipleOpacity == nil {
|
||||
break
|
||||
}
|
||||
f, err := strconv.ParseFloat(value, 64)
|
||||
if err != nil || (f < 0 || f > 1) {
|
||||
return errors.New(`expected "opacity" to be a number between 0.0 and 1.0`)
|
||||
}
|
||||
s.MultipleOpacity.Value = value
|
||||
case "font":
|
||||
if s.Font == nil {
|
||||
break
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 169 KiB After Width: | Height: | Size: 169 KiB |
|
Before Width: | Height: | Size: 115 KiB After Width: | Height: | Size: 115 KiB |
|
Before Width: | Height: | Size: 498 KiB After Width: | Height: | Size: 498 KiB |
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 218 KiB After Width: | Height: | Size: 219 KiB |
|
Before Width: | Height: | Size: 218 KiB After Width: | Height: | Size: 219 KiB |
|
|
@ -1326,6 +1326,11 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
opacityStyle = fmt.Sprintf(" style='opacity:%f'", targetShape.Opacity)
|
||||
}
|
||||
|
||||
multipleOpacityStyle := ""
|
||||
if targetShape.MultipleOpacity != 1.0 {
|
||||
multipleOpacityStyle = fmt.Sprintf(" opacity:%f", targetShape.MultipleOpacity)
|
||||
}
|
||||
|
||||
// this clipPath must be defined outside `g` element
|
||||
if targetShape.BorderRadius != 0 && (targetShape.Type == d2target.ShapeClass || targetShape.Type == d2target.ShapeSQLTable) {
|
||||
fmt.Fprint(writer, clipPathForBorderRadius(diagramHash, targetShape))
|
||||
|
|
@ -1413,7 +1418,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
case d2target.ShapeOval:
|
||||
if targetShape.DoubleBorder {
|
||||
if targetShape.Multiple {
|
||||
fmt.Fprint(writer, renderDoubleOval(multipleTL, width, height, fill, "", stroke, style, inlineTheme))
|
||||
fmt.Fprint(writer, renderDoubleOval(multipleTL, width, height, fill, "", stroke, style+multipleOpacityStyle, inlineTheme))
|
||||
}
|
||||
if jsRunner != nil {
|
||||
out, err := d2sketch.DoubleOval(jsRunner, targetShape)
|
||||
|
|
@ -1426,7 +1431,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
}
|
||||
} else {
|
||||
if targetShape.Multiple {
|
||||
fmt.Fprint(writer, renderOval(multipleTL, width, height, fill, "", stroke, style, inlineTheme))
|
||||
fmt.Fprint(writer, renderOval(multipleTL, width, height, fill, "", stroke, style+multipleOpacityStyle, inlineTheme))
|
||||
}
|
||||
if jsRunner != nil {
|
||||
out, err := d2sketch.Oval(jsRunner, targetShape)
|
||||
|
|
@ -1472,7 +1477,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
el.Height = float64(targetShape.Height)
|
||||
el.Fill = fill
|
||||
el.Stroke = stroke
|
||||
el.Style = style
|
||||
el.Style = style + multipleOpacityStyle
|
||||
el.Rx = borderRadius
|
||||
fmt.Fprint(writer, el.Render())
|
||||
}
|
||||
|
|
@ -1505,7 +1510,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
el.Fill = fill
|
||||
el.FillPattern = targetShape.FillPattern
|
||||
el.Stroke = stroke
|
||||
el.Style = style
|
||||
el.Style = style + multipleOpacityStyle
|
||||
el.Rx = borderRadius
|
||||
fmt.Fprint(writer, el.Render())
|
||||
|
||||
|
|
@ -1561,7 +1566,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
el := d2themes.NewThemableElement("path", inlineTheme)
|
||||
el.Fill = fill
|
||||
el.Stroke = stroke
|
||||
el.Style = style
|
||||
el.Style = style + multipleOpacityStyle
|
||||
for _, pathData := range multiplePathData {
|
||||
el.D = pathData
|
||||
fmt.Fprint(writer, el.Render())
|
||||
|
|
@ -1593,7 +1598,7 @@ func drawShape(writer, appendixWriter io.Writer, diagramHash string, targetShape
|
|||
el := d2themes.NewThemableElement("path", inlineTheme)
|
||||
el.Fill = fill
|
||||
el.Stroke = stroke
|
||||
el.Style = style
|
||||
el.Style = style + multipleOpacityStyle
|
||||
for _, pathData := range multiplePathData {
|
||||
el.D = pathData
|
||||
fmt.Fprint(writer, el.Render())
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
|
|
@ -497,11 +497,12 @@ type Shape struct {
|
|||
FillPattern string `json:"fillPattern,omitempty"`
|
||||
Stroke string `json:"stroke"`
|
||||
|
||||
Animated bool `json:"animated"`
|
||||
Shadow bool `json:"shadow"`
|
||||
ThreeDee bool `json:"3d"`
|
||||
Multiple bool `json:"multiple"`
|
||||
DoubleBorder bool `json:"double-border"`
|
||||
Animated bool `json:"animated"`
|
||||
Shadow bool `json:"shadow"`
|
||||
ThreeDee bool `json:"3d"`
|
||||
Multiple bool `json:"multiple"`
|
||||
MultipleOpacity float64 `json:"multipleOpacity,omitempty"`
|
||||
DoubleBorder bool `json:"double-border"`
|
||||
|
||||
Tooltip string `json:"tooltip"`
|
||||
Link string `json:"link"`
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
|
|
@ -136,7 +136,7 @@
|
|||
<rect x="7" y="7" width="1" height="1" fill="#0A0F25"/>
|
||||
</g>
|
||||
</pattern>
|
||||
</defs><g class="TkVUV09SSw=="><g class="shape" ><rect x="23.000000" y="19.000000" width="314.000000" height="394.000000" stroke="black" fill="#E7E9EE" style="stroke-width:2;" /><rect x="23.000000" y="19.000000" width="314.000000" height="394.000000" class="dots-overlay" style="stroke-width:2;" /><rect x="28.000000" y="24.000000" width="304.000000" height="384.000000" stroke="black" fill="transparent" style="stroke-width:2;" /></g><text x="180.000000" y="6.000000" fill="#0A0F25" class="text-mono fill-N1" style="text-anchor:middle;font-size:28px">NETWORK</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VS"><g class="shape" ><rect x="53.000000" y="60.000000" width="254.000000" height="323.000000" stroke="black" fill="#F5F6F9" style="stroke-width:2;" /><rect x="53.000000" y="60.000000" width="254.000000" height="323.000000" class="dots-overlay" style="stroke-width:2;" /></g><text x="180.000000" y="48.000000" fill="#0A0F25" class="text-mono fill-N1" style="text-anchor:middle;font-size:24px">CELL TOWER</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLnNhdGVsbGl0ZXM="><g class="shape" ><path d="M 125 90 H 271 C 267 90 256 108 256 123 C 256 138 267 156 271 156 H 125 C 121 156 110 138 110 123 C 110 108 121 90 125 90 Z" stroke="black" fill="white" style="stroke-width:2;" /><path d="M 115 100 H 261 C 257 100 246 118 246 133 C 246 148 257 166 261 166 H 115 C 111 166 100 148 100 133 C 100 118 111 100 115 100 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="180.500000" y="138.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLnRyYW5zbWl0dGVy"><g class="shape" ><rect x="105.000000" y="287.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="180.500000" y="325.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVswXQ=="><marker id="mk-d2-4203834939-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 150.729685 167.544766 C 112.198997 214.399994 112.250000 238.699997 149.714288 284.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="112.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVsxXQ=="><path d="M 180.008264 167.999983 C 180.199997 214.399994 180.250000 238.699997 180.250000 283.500000" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="180.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVsyXQ=="><path d="M 210.262632 167.551051 C 248.399994 214.399994 248.250000 238.699997 210.785712 284.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="248.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-4203834939" maskUnits="userSpaceOnUse" x="22" y="-22" width="316" height="436">
|
||||
</defs><g class="TkVUV09SSw=="><g class="shape" ><rect x="23.000000" y="19.000000" width="314.000000" height="394.000000" stroke="black" fill="#E7E9EE" style="stroke-width:2;" /><rect x="23.000000" y="19.000000" width="314.000000" height="394.000000" class="dots-overlay" style="stroke-width:2;" /><rect x="28.000000" y="24.000000" width="304.000000" height="384.000000" stroke="black" fill="transparent" style="stroke-width:2;" /></g><text x="180.000000" y="6.000000" fill="#0A0F25" class="text-mono fill-N1" style="text-anchor:middle;font-size:28px">NETWORK</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VS"><g class="shape" ><rect x="53.000000" y="60.000000" width="254.000000" height="323.000000" stroke="black" fill="#F5F6F9" style="stroke-width:2;" /><rect x="53.000000" y="60.000000" width="254.000000" height="323.000000" class="dots-overlay" style="stroke-width:2;" /></g><text x="180.000000" y="48.000000" fill="#0A0F25" class="text-mono fill-N1" style="text-anchor:middle;font-size:24px">CELL TOWER</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLnNhdGVsbGl0ZXM="><g class="shape" ><path d="M 125 90 H 271 C 267 90 256 108 256 123 C 256 138 267 156 271 156 H 125 C 121 156 110 138 110 123 C 110 108 121 90 125 90 Z" stroke="black" fill="white" style="stroke-width:2; opacity:0.000000" /><path d="M 115 100 H 261 C 257 100 246 118 246 133 C 246 148 257 166 261 166 H 115 C 111 166 100 148 100 133 C 100 118 111 100 115 100 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="180.500000" y="138.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLnRyYW5zbWl0dGVy"><g class="shape" ><rect x="105.000000" y="287.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="180.500000" y="325.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVswXQ=="><marker id="mk-d2-4203834939-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 150.729685 167.544766 C 112.198997 214.399994 112.250000 238.699997 149.714288 284.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="112.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVsxXQ=="><path d="M 180.008264 167.999983 C 180.199997 214.399994 180.250000 238.699997 180.250000 283.500000" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="180.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="TkVUV09SSy5DRUxMIFRPV0VSLihzYXRlbGxpdGVzIC0mZ3Q7IHRyYW5zbWl0dGVyKVsyXQ=="><path d="M 210.262632 167.551051 C 248.399994 214.399994 248.250000 238.699997 210.785712 284.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-4203834939-27687146)" mask="url(#d2-4203834939)" /><text x="248.000000" y="232.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-4203834939" maskUnits="userSpaceOnUse" x="22" y="-22" width="316" height="436">
|
||||
<rect x="22" y="-22" width="316" height="436" fill="white"></rect>
|
||||
<rect x="120.000000" y="-22.000000" width="120" height="36" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="106.500000" y="24.000000" width="147" height="31" fill="rgba(0,0,0,0.75)"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 27 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-448308156 .color-AA4{color:#EDF0FD;}
|
||||
.d2-448308156 .color-AA5{color:#F7F8FE;}
|
||||
.d2-448308156 .color-AB4{color:#EDF0FD;}
|
||||
.d2-448308156 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-448308156);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-448308156);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-448308156);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-448308156);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="0.000000" y="0.000000" width="53.000000" height="66.000000" rx="26.500000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="26.500000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="113.000000" y="0.000000" width="54.000000" height="66.000000" rx="27.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="140.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="237.000000" y="-10.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="227.000000" y="0.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="283.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="409.000000" y="0.000000" width="94.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="414.000000" y="5.000000" width="84.000000" height="56.000000" rx="28.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="456.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-448308156-three-dee" maskUnits="userSpaceOnUse" x="563" y="-15" width="129" height="81">
|
||||
.d2-448308156 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-448308156);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-448308156);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-448308156);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-448308156);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-448308156);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-448308156);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="0.000000" y="0.000000" width="53.000000" height="66.000000" rx="26.500000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="26.500000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="113.000000" y="0.000000" width="54.000000" height="66.000000" rx="27.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="140.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="237.000000" y="-10.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.000000" /><rect x="227.000000" y="0.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="283.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="409.000000" y="0.000000" width="94.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="414.000000" y="5.000000" width="84.000000" height="56.000000" rx="28.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="456.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-448308156-three-dee" maskUnits="userSpaceOnUse" x="563" y="-15" width="129" height="81">
|
||||
<rect x="563" y="-15" width="129" height="81" fill="white"></rect>
|
||||
<path d="M563,0L578,-15L692,-15L692,51L677,66L563,66L563,0L677,0L677,66M677,0L692,-15" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="563.000000" y="0.000000" width="114.000000" height="66.000000" mask="url(#border-mask-d2-448308156-three-dee)" stroke="none" fill="#F7F8FE" class=" fill-B6" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-448308156-three-dee)" points="563,0 578,-15 692,-15 692,51 677,66 677,0" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><path d="M563,0 L578,-15 L692,-15 L692,51 L677,66 L563,66 L563,0 L677,0 L677,66 M677,0 L692,-15" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="620.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">three-dee</text></g><mask id="d2-448308156" maskUnits="userSpaceOnUse" x="-1" y="-17" width="695" height="84">
|
||||
<rect x="-1" y="-17" width="695" height="84" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-2886130221 .color-AA4{color:#EDF0FD;}
|
||||
.d2-2886130221 .color-AA5{color:#F7F8FE;}
|
||||
.d2-2886130221 .color-AB4{color:#EDF0FD;}
|
||||
.d2-2886130221 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-2886130221);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-2886130221);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-2886130221);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-2886130221);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="12.000000" y="19.000000" width="53.000000" height="66.000000" rx="26.500000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="38.500000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="85.000000" y="19.000000" width="54.000000" height="66.000000" rx="27.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="112.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="169.000000" y="14.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="159.000000" y="24.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="215.000000" y="62.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="301.000000" y="19.000000" width="94.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="306.000000" y="24.000000" width="84.000000" height="56.000000" rx="28.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="348.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-2886130221-three-dee" maskUnits="userSpaceOnUse" x="415" y="12" width="129" height="81">
|
||||
.d2-2886130221 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-2886130221);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-2886130221);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-2886130221);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-2886130221);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-2886130221);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-2886130221);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="12.000000" y="19.000000" width="53.000000" height="66.000000" rx="26.500000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="38.500000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="85.000000" y="19.000000" width="54.000000" height="66.000000" rx="27.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="112.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="169.000000" y="14.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.000000" /><rect x="159.000000" y="24.000000" width="112.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="215.000000" y="62.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="301.000000" y="19.000000" width="94.000000" height="66.000000" rx="33.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="306.000000" y="24.000000" width="84.000000" height="56.000000" rx="28.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="348.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-2886130221-three-dee" maskUnits="userSpaceOnUse" x="415" y="12" width="129" height="81">
|
||||
<rect x="415" y="12" width="129" height="81" fill="white"></rect>
|
||||
<path d="M415,27L430,12L544,12L544,78L529,93L415,93L415,27L529,27L529,93M529,27L544,12" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="415.000000" y="27.000000" width="114.000000" height="66.000000" mask="url(#border-mask-d2-2886130221-three-dee)" stroke="none" fill="#F7F8FE" class=" fill-B6" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2886130221-three-dee)" points="415,27 430,12 544,12 544,78 529,93 529,27" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><path d="M415,27 L430,12 L544,12 L544,78 L529,93 L415,93 L415,27 L529,27 L529,93 M529,27 L544,12" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="472.000000" y="65.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">three-dee</text></g><mask id="d2-2886130221" maskUnits="userSpaceOnUse" x="11" y="10" width="535" height="84">
|
||||
<rect x="11" y="10" width="535" height="84" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-1236460180 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1236460180 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1236460180 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1236460180 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1236460180);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1236460180);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1236460180);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1236460180);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="0.000000" y="0.000000" width="53.000000" height="66.000000" rx="4.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="26.500000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="113.000000" y="0.000000" width="54.000000" height="66.000000" rx="10.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="140.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="237.000000" y="-10.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="227.000000" y="0.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="283.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="409.000000" y="0.000000" width="94.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="414.000000" y="5.000000" width="84.000000" height="56.000000" rx="6.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="456.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-1236460180-three-dee" maskUnits="userSpaceOnUse" x="563" y="-15" width="129" height="81">
|
||||
.d2-1236460180 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1236460180);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1236460180);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1236460180);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1236460180);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1236460180);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1236460180);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="0.000000" y="0.000000" width="53.000000" height="66.000000" rx="4.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="26.500000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="113.000000" y="0.000000" width="54.000000" height="66.000000" rx="10.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="140.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="237.000000" y="-10.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.000000" /><rect x="227.000000" y="0.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="283.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="409.000000" y="0.000000" width="94.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="414.000000" y="5.000000" width="84.000000" height="56.000000" rx="6.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="456.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-1236460180-three-dee" maskUnits="userSpaceOnUse" x="563" y="-15" width="129" height="81">
|
||||
<rect x="563" y="-15" width="129" height="81" fill="white"></rect>
|
||||
<path d="M563,0L578,-15L692,-15L692,51L677,66L563,66L563,0L677,0L677,66M677,0L692,-15" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="563.000000" y="0.000000" width="114.000000" height="66.000000" mask="url(#border-mask-d2-1236460180-three-dee)" stroke="none" fill="#F7F8FE" class=" fill-B6" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1236460180-three-dee)" points="563,0 578,-15 692,-15 692,51 677,66 677,0" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><path d="M563,0 L578,-15 L692,-15 L692,51 L677,66 L563,66 L563,0 L677,0 L677,66 M677,0 L692,-15" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="620.000000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">three-dee</text></g><mask id="d2-1236460180" maskUnits="userSpaceOnUse" x="-1" y="-17" width="695" height="84">
|
||||
<rect x="-1" y="-17" width="695" height="84" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-773068003 .color-AA4{color:#EDF0FD;}
|
||||
.d2-773068003 .color-AA5{color:#F7F8FE;}
|
||||
.d2-773068003 .color-AB4{color:#EDF0FD;}
|
||||
.d2-773068003 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-773068003);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-773068003);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-773068003);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-773068003);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="12.000000" y="19.000000" width="53.000000" height="66.000000" rx="4.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="38.500000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="85.000000" y="19.000000" width="54.000000" height="66.000000" rx="10.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="112.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="169.000000" y="14.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="159.000000" y="24.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="215.000000" y="62.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="301.000000" y="19.000000" width="94.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="306.000000" y="24.000000" width="84.000000" height="56.000000" rx="6.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="348.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-773068003-three-dee" maskUnits="userSpaceOnUse" x="415" y="12" width="129" height="81">
|
||||
.d2-773068003 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-773068003);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-773068003);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-773068003);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-773068003);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-773068003);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-773068003);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="eA=="><g class="shape" ><rect x="12.000000" y="19.000000" width="53.000000" height="66.000000" rx="4.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="38.500000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">x</text></g><g class="eQ=="><g class="shape" ><rect x="85.000000" y="19.000000" width="54.000000" height="66.000000" rx="10.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="112.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">y</text></g><g class="bXVsdGlwbGUy"><g class="shape" ><rect x="169.000000" y="14.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.000000" /><rect x="159.000000" y="24.000000" width="112.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="215.000000" y="62.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">multiple2</text></g><g class="ZG91Ymxl"><g class="shape" ><rect x="301.000000" y="19.000000" width="94.000000" height="66.000000" rx="6.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /><rect x="306.000000" y="24.000000" width="84.000000" height="56.000000" rx="6.000000" stroke="#0D32B2" fill="transparent" class=" stroke-B1" style="stroke-width:2;" /></g><text x="348.000000" y="57.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">double</text></g><g class="dGhyZWUtZGVl"><g class="shape" ><defs><mask id="border-mask-d2-773068003-three-dee" maskUnits="userSpaceOnUse" x="415" y="12" width="129" height="81">
|
||||
<rect x="415" y="12" width="129" height="81" fill="white"></rect>
|
||||
<path d="M415,27L430,12L544,12L544,78L529,93L415,93L415,27L529,27L529,93M529,27L544,12" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="415.000000" y="27.000000" width="114.000000" height="66.000000" mask="url(#border-mask-d2-773068003-three-dee)" stroke="none" fill="#F7F8FE" class=" fill-B6" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-773068003-three-dee)" points="415,27 430,12 544,12 544,78 529,93 529,27" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><path d="M415,27 L430,12 L544,12 L544,78 L529,93 L415,93 L415,27 L529,27 L529,93 M529,27 L544,12" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="472.000000" y="65.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">three-dee</text></g><mask id="d2-773068003" maskUnits="userSpaceOnUse" x="11" y="10" width="535" height="84">
|
||||
<rect x="11" y="10" width="535" height="84" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
|
|
@ -103,7 +103,7 @@
|
|||
.d2-3097297157 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3097297157 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3097297157 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3097297157 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3097297157);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3097297157);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3097297157);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3097297157);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="c2F0ZWxsaXRlcw=="><g class="shape" ><path d="M 52 -10 H 198 C 194 -10 183 8 183 23 C 183 38 194 56 198 56 H 52 C 48 56 37 38 37 23 C 37 8 48 -10 52 -10 Z" stroke="black" fill="white" style="stroke-width:2;" /><path d="M 42 0 H 188 C 184 0 173 18 173 33 C 173 48 184 66 188 66 H 42 C 38 66 27 48 27 33 C 27 18 38 0 42 0 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="107.500000" y="38.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="dHJhbnNtaXR0ZXI="><g class="shape" ><rect x="32.000000" y="187.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="107.500000" y="225.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzBd"><marker id="mk-d2-3097297157-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 77.725908 67.541651 C 39.000000 114.400002 39.000000 138.699997 76.464288 184.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="39.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzFd"><path d="M 107.000000 68.000000 C 107.000000 114.400002 107.000000 138.699997 107.000000 183.500000" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="107.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzJd"><path d="M 136.274092 67.541651 C 175.000000 114.400002 175.000000 138.699997 137.535712 184.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="175.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-3097297157" maskUnits="userSpaceOnUse" x="20" y="-12" width="180" height="266">
|
||||
.d2-3097297157 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3097297157);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3097297157);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3097297157);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3097297157);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3097297157);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3097297157);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="c2F0ZWxsaXRlcw=="><g class="shape" ><path d="M 52 -10 H 198 C 194 -10 183 8 183 23 C 183 38 194 56 198 56 H 52 C 48 56 37 38 37 23 C 37 8 48 -10 52 -10 Z" stroke="black" fill="white" style="stroke-width:2; opacity:0.000000" /><path d="M 42 0 H 188 C 184 0 173 18 173 33 C 173 48 184 66 188 66 H 42 C 38 66 27 48 27 33 C 27 18 38 0 42 0 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="107.500000" y="38.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="dHJhbnNtaXR0ZXI="><g class="shape" ><rect x="32.000000" y="187.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="107.500000" y="225.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzBd"><marker id="mk-d2-3097297157-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 77.725908 67.541651 C 39.000000 114.400002 39.000000 138.699997 76.464288 184.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="39.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzFd"><path d="M 107.000000 68.000000 C 107.000000 114.400002 107.000000 138.699997 107.000000 183.500000" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="107.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzJd"><path d="M 136.274092 67.541651 C 175.000000 114.400002 175.000000 138.699997 137.535712 184.406432" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3097297157-27687146)" mask="url(#d2-3097297157)" /><text x="175.000000" y="132.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-3097297157" maskUnits="userSpaceOnUse" x="20" y="-12" width="180" height="266">
|
||||
<rect x="20" y="-12" width="180" height="266" fill="white"></rect>
|
||||
<rect x="57.500000" y="22.500000" width="100" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="52.500000" y="209.500000" width="110" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
|
@ -103,7 +103,7 @@
|
|||
.d2-3660418575 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3660418575 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3660418575 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3660418575 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3660418575);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3660418575);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3660418575);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3660418575);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="c2F0ZWxsaXRlcw=="><g class="shape" ><path d="M 37 12 H 183 C 179 12 168 30 168 45 C 168 60 179 78 183 78 H 37 C 33 78 22 60 22 45 C 22 30 33 12 37 12 Z" stroke="black" fill="white" style="stroke-width:2;" /><path d="M 27 22 H 173 C 169 22 158 40 158 55 C 158 70 169 88 173 88 H 27 C 23 88 12 70 12 55 C 12 40 23 22 27 22 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="92.500000" y="60.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="dHJhbnNtaXR0ZXI="><g class="shape" ><rect x="22.000000" y="269.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="97.500000" y="307.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzBd"><marker id="mk-d2-3660418575-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 48.005525 89.999992 L 48.488950 265.000015" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="48.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzFd"><path d="M 97.011050 89.999969 L 97.977901 265.000061" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="98.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzJd"><path d="M 146.005525 89.999992 L 146.488950 265.000015" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="146.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-3660418575" maskUnits="userSpaceOnUse" x="11" y="10" width="174" height="326">
|
||||
.d2-3660418575 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3660418575);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3660418575);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3660418575);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3660418575);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3660418575);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3660418575);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="c2F0ZWxsaXRlcw=="><g class="shape" ><path d="M 37 12 H 183 C 179 12 168 30 168 45 C 168 60 179 78 183 78 H 37 C 33 78 22 60 22 45 C 22 30 33 12 37 12 Z" stroke="black" fill="white" style="stroke-width:2; opacity:0.000000" /><path d="M 27 22 H 173 C 169 22 158 40 158 55 C 158 70 169 88 173 88 H 27 C 23 88 12 70 12 55 C 12 40 23 22 27 22 Z" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="92.500000" y="60.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">SATELLITES</text></g><g class="dHJhbnNtaXR0ZXI="><g class="shape" ><rect x="22.000000" y="269.000000" width="151.000000" height="66.000000" stroke="black" fill="white" style="stroke-width:2;" /></g><text x="97.500000" y="307.500000" fill="#0A0F25" class="text-mono-bold fill-N1" style="text-anchor:middle;font-size:16px">TRANSMITTER</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzBd"><marker id="mk-d2-3660418575-27687146" markerWidth="10.000000" markerHeight="12.000000" refX="7.000000" refY="6.000000" viewBox="0.000000 0.000000 10.000000 12.000000" orient="auto" markerUnits="userSpaceOnUse"> <polygon points="0.000000,0.000000 10.000000,6.000000 0.000000,12.000000" fill="black" class="connection" stroke-width="2" /> </marker><path d="M 48.005525 89.999992 L 48.488950 265.000015" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="48.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzFd"><path d="M 97.011050 89.999969 L 97.977901 265.000061" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="98.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><g class="KHNhdGVsbGl0ZXMgLSZndDsgdHJhbnNtaXR0ZXIpWzJd"><path d="M 146.005525 89.999992 L 146.488950 265.000015" stroke="black" fill="none" class="connection" style="stroke-width:2;" marker-end="url(#mk-d2-3660418575-27687146)" mask="url(#d2-3660418575)" /><text x="146.000000" y="184.000000" fill="#676C7E" class="text-mono-italic fill-N2" style="text-anchor:middle;font-size:16px">SEND</text></g><mask id="d2-3660418575" maskUnits="userSpaceOnUse" x="11" y="10" width="174" height="326">
|
||||
<rect x="11" y="10" width="174" height="326" fill="white"></rect>
|
||||
<rect x="42.500000" y="44.500000" width="100" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
<rect x="42.500000" y="291.500000" width="110" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
|
@ -96,21 +96,21 @@
|
|||
.d2-3863633706 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3863633706 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3863633706 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3863633706 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3863633706);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3863633706);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3863633706);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3863633706);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="10.000000" y="20.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="71.500000" y="7.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="173.000000" y="20.000000" width="128.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="237.000000" y="7.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="351.000000" y="10.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="341.000000" y="20.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="407.500000" y="-3.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n4" maskUnits="userSpaceOnUse" x="514" y="5" width="143" height="307">
|
||||
.d2-3863633706 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3863633706);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3863633706);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3863633706);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3863633706);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3863633706);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3863633706);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="10.000000" y="20.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="71.500000" y="7.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="173.000000" y="20.000000" width="128.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="237.000000" y="7.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="351.000000" y="10.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="341.000000" y="20.000000" width="123.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="407.500000" y="-3.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n4" maskUnits="userSpaceOnUse" x="514" y="5" width="143" height="307">
|
||||
<rect x="514" y="5" width="143" height="307" fill="white"></rect>
|
||||
<path d="M514,20L529,5L657,5L657,297L642,312L514,312L514,20L642,20L642,312M642,20L657,5" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="514.000000" y="20.000000" width="128.000000" height="292.000000" mask="url(#border-mask-d2-3863633706-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n4)" points="514,20 529,5 657,5 657,297 642,312 642,20" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M514,20 L529,5 L657,5 L657,297 L642,312 L514,312 L514,20 L642,20 L642,312 M642,20 L657,5" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="585.500000" y="-8.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="697.000000" y="10.000000" width="113.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="687.000000" y="20.000000" width="113.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="748.500000" y="-3.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n6" maskUnits="userSpaceOnUse" x="845" y="5" width="128" height="307">
|
||||
<path d="M514,20L529,5L657,5L657,297L642,312L514,312L514,20L642,20L642,312M642,20L657,5" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="514.000000" y="20.000000" width="128.000000" height="292.000000" mask="url(#border-mask-d2-3863633706-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n4)" points="514,20 529,5 657,5 657,297 642,312 642,20" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M514,20 L529,5 L657,5 L657,297 L642,312 L514,312 L514,20 L642,20 L642,312 M642,20 L657,5" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="585.500000" y="-8.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="697.000000" y="10.000000" width="113.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="687.000000" y="20.000000" width="113.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="748.500000" y="-3.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n6" maskUnits="userSpaceOnUse" x="845" y="5" width="128" height="307">
|
||||
<rect x="845" y="5" width="128" height="307" fill="white"></rect>
|
||||
<path d="M845,20L860,5L973,5L973,297L958,312L845,312L845,20L958,20L958,312M958,20L973,5" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="845.000000" y="20.000000" width="113.000000" height="292.000000" mask="url(#border-mask-d2-3863633706-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n6)" points="845,20 860,5 973,5 973,297 958,312 958,20" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M845,20 L860,5 L973,5 L973,297 L958,312 L845,312 L845,20 L958,20 L958,312 M958,20 L973,5" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="909.000000" y="-8.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="1018.000000" y="0.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="1008.000000" y="10.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1074.500000" y="-13.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n8" maskUnits="userSpaceOnUse" x="1171" y="-10" width="143" height="322">
|
||||
<path d="M845,20L860,5L973,5L973,297L958,312L845,312L845,20L958,20L958,312M958,20L973,5" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="845.000000" y="20.000000" width="113.000000" height="292.000000" mask="url(#border-mask-d2-3863633706-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n6)" points="845,20 860,5 973,5 973,297 958,312 958,20" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M845,20 L860,5 L973,5 L973,297 L958,312 L845,312 L845,20 L958,20 L958,312 M958,20 L973,5" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="909.000000" y="-8.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="1018.000000" y="0.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="1008.000000" y="10.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1074.500000" y="-13.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n8" maskUnits="userSpaceOnUse" x="1171" y="-10" width="143" height="322">
|
||||
<rect x="1171" y="-10" width="143" height="322" fill="white"></rect>
|
||||
<path d="M1171,5L1186,-10L1314,-10L1314,297L1299,312L1171,312L1171,5L1299,5L1299,312M1299,5L1314,-10" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1171.000000" y="5.000000" width="128.000000" height="307.000000" mask="url(#border-mask-d2-3863633706-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n8)" points="1171,5 1186,-10 1314,-10 1314,297 1299,312 1299,5" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1171,5 L1186,-10 L1314,-10 L1314,297 L1299,312 L1171,312 L1171,5 L1299,5 L1299,312 M1299,5 L1314,-10" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1242.500000" y="-23.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="1364.000000" y="0.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="1354.000000" y="10.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1420.500000" y="-13.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n10" maskUnits="userSpaceOnUse" x="1527" y="-10" width="143" height="322">
|
||||
<path d="M1171,5L1186,-10L1314,-10L1314,297L1299,312L1171,312L1171,5L1299,5L1299,312M1299,5L1314,-10" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1171.000000" y="5.000000" width="128.000000" height="307.000000" mask="url(#border-mask-d2-3863633706-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n8)" points="1171,5 1186,-10 1314,-10 1314,297 1299,312 1299,5" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1171,5 L1186,-10 L1314,-10 L1314,297 L1299,312 L1171,312 L1171,5 L1299,5 L1299,312 M1299,5 L1314,-10" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1242.500000" y="-23.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="1364.000000" y="0.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="1354.000000" y="10.000000" width="123.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1420.500000" y="-13.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n10" maskUnits="userSpaceOnUse" x="1527" y="-10" width="143" height="322">
|
||||
<rect x="1527" y="-10" width="143" height="322" fill="white"></rect>
|
||||
<path d="M1527,5L1542,-10L1670,-10L1670,297L1655,312L1527,312L1527,5L1655,5L1655,312M1655,5L1670,-10" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1527.000000" y="5.000000" width="128.000000" height="307.000000" mask="url(#border-mask-d2-3863633706-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n10)" points="1527,5 1542,-10 1670,-10 1670,297 1655,312 1655,5" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1527,5 L1542,-10 L1670,-10 L1670,297 L1655,312 L1527,312 L1527,5 L1655,5 L1655,312 M1655,5 L1670,-10" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1598.500000" y="-23.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="40.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="66.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="50.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="40.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="66.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="203.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n2.b" maskUnits="userSpaceOnUse" x="203" y="201" width="68" height="81">
|
||||
<path d="M1527,5L1542,-10L1670,-10L1670,297L1655,312L1527,312L1527,5L1655,5L1655,312M1655,5L1670,-10" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1527.000000" y="5.000000" width="128.000000" height="307.000000" mask="url(#border-mask-d2-3863633706-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n10)" points="1527,5 1542,-10 1670,-10 1670,297 1655,312 1655,5" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1527,5 L1542,-10 L1670,-10 L1670,297 L1655,312 L1527,312 L1527,5 L1655,5 L1655,312 M1655,5 L1670,-10" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1598.500000" y="-23.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="40.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="66.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="50.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="40.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="66.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="203.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n2.b" maskUnits="userSpaceOnUse" x="203" y="201" width="68" height="81">
|
||||
<rect x="203" y="201" width="68" height="81" fill="white"></rect>
|
||||
<path d="M203,216L218,201L271,201L271,267L256,282L203,282L203,216L256,216L256,282M256,216L271,201" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="203.000000" y="216.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-3863633706-n2.b)" points="203,216 218,201 271,201 271,267 256,282 256,216" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M203,216 L218,201 L271,201 L271,267 L256,282 L203,282 L203,216 L256,216 L256,282 M256,216 L271,201" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="229.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="371.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="397.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="381.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="371.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="397.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="544.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="570.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n4.b" maskUnits="userSpaceOnUse" x="544" y="201" width="68" height="81">
|
||||
<path d="M203,216L218,201L271,201L271,267L256,282L203,282L203,216L256,216L256,282M256,216L271,201" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="203.000000" y="216.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-3863633706-n2.b)" points="203,216 218,201 271,201 271,267 256,282 256,216" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M203,216 L218,201 L271,201 L271,267 L256,282 L203,282 L203,216 L256,216 L256,282 M256,216 L271,201" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="229.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="371.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="397.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="381.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="371.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="397.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="544.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="570.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n4.b" maskUnits="userSpaceOnUse" x="544" y="201" width="68" height="81">
|
||||
<rect x="544" y="201" width="68" height="81" fill="white"></rect>
|
||||
<path d="M544,216L559,201L612,201L612,267L597,282L544,282L544,216L597,216L597,282M597,216L612,201" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="544.000000" y="216.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-3863633706-n4.b)" points="544,216 559,201 612,201 612,267 597,282 597,216" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M544,216 L559,201 L612,201 L612,267 L597,282 L544,282 L544,216 L597,216 L597,282 M597,216 L612,201" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="570.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="717.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="743.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="717.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="743.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="875.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="901.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="875.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="901.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="1048.000000" y="40.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="1038.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1064.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="1038.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1064.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n8.a" maskUnits="userSpaceOnUse" x="1201" y="35" width="68" height="81">
|
||||
<path d="M544,216L559,201L612,201L612,267L597,282L544,282L544,216L597,216L597,282M597,216L612,201" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="544.000000" y="216.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-3863633706-n4.b)" points="544,216 559,201 612,201 612,267 597,282 597,216" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M544,216 L559,201 L612,201 L612,267 L597,282 L544,282 L544,216 L597,216 L597,282 M597,216 L612,201" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="570.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="717.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="743.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="717.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="743.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="875.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="901.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="875.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="901.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="1048.000000" y="40.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="1038.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1064.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="1038.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1064.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n8.a" maskUnits="userSpaceOnUse" x="1201" y="35" width="68" height="81">
|
||||
<rect x="1201" y="35" width="68" height="81" fill="white"></rect>
|
||||
<path d="M1201,50L1216,35L1269,35L1269,101L1254,116L1201,116L1201,50L1254,50L1254,116M1254,50L1269,35" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1201.000000" y="50.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n8.a)" points="1201,50 1216,35 1269,35 1269,101 1254,116 1254,50" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1201,50 L1216,35 L1269,35 L1269,101 L1254,116 L1201,116 L1201,50 L1254,50 L1254,116 M1254,50 L1269,35" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1227.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="1201.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1227.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="1394.000000" y="40.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="1384.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1410.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="1394.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="1384.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1410.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n10.a" maskUnits="userSpaceOnUse" x="1557" y="35" width="68" height="81">
|
||||
<path d="M1201,50L1216,35L1269,35L1269,101L1254,116L1201,116L1201,50L1254,50L1254,116M1254,50L1269,35" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1201.000000" y="50.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n8.a)" points="1201,50 1216,35 1269,35 1269,101 1254,116 1254,50" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1201,50 L1216,35 L1269,35 L1269,101 L1254,116 L1201,116 L1201,50 L1254,50 L1254,116 M1254,50 L1269,35" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1227.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="1201.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1227.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="1394.000000" y="40.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="1384.000000" y="50.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1410.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="1394.000000" y="206.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="1384.000000" y="216.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1410.500000" y="254.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n10.a" maskUnits="userSpaceOnUse" x="1557" y="35" width="68" height="81">
|
||||
<rect x="1557" y="35" width="68" height="81" fill="white"></rect>
|
||||
<path d="M1557,50L1572,35L1625,35L1625,101L1610,116L1557,116L1557,50L1610,50L1610,116M1610,50L1625,35" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1557.000000" y="50.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-3863633706-n10.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-3863633706-n10.a)" points="1557,50 1572,35 1625,35 1625,101 1610,116 1610,50" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1557,50 L1572,35 L1625,35 L1625,101 L1610,116 L1557,116 L1557,50 L1610,50 L1610,116 M1610,50 L1625,35" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1583.500000" y="88.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEwLmI="><g class="shape" ><defs><mask id="border-mask-d2-3863633706-n10.b" maskUnits="userSpaceOnUse" x="1557" y="201" width="68" height="81">
|
||||
<rect x="1557" y="201" width="68" height="81" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
|
@ -96,21 +96,21 @@
|
|||
.d2-2956067749 .color-AA4{color:#EDF0FD;}
|
||||
.d2-2956067749 .color-AA5{color:#F7F8FE;}
|
||||
.d2-2956067749 .color-AB4{color:#EDF0FD;}
|
||||
.d2-2956067749 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-2956067749);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-2956067749);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-2956067749);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-2956067749);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="12.000000" y="22.000000" width="163.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="93.500000" y="55.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="195.000000" y="19.000000" width="168.000000" height="317.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="279.000000" y="52.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="393.000000" y="22.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="383.000000" y="32.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="459.500000" y="65.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n4" maskUnits="userSpaceOnUse" x="566" y="19" width="168" height="317">
|
||||
.d2-2956067749 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-2956067749);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-2956067749);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-2956067749);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-2956067749);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-2956067749);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-2956067749);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="12.000000" y="22.000000" width="163.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="93.500000" y="55.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="195.000000" y="19.000000" width="168.000000" height="317.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="279.000000" y="52.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="393.000000" y="22.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="383.000000" y="32.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="459.500000" y="65.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n4" maskUnits="userSpaceOnUse" x="566" y="19" width="168" height="317">
|
||||
<rect x="566" y="19" width="168" height="317" fill="white"></rect>
|
||||
<path d="M566,34L581,19L734,19L734,321L719,336L566,336L566,34L719,34L719,336M719,34L734,19" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="566.000000" y="34.000000" width="153.000000" height="302.000000" mask="url(#border-mask-d2-2956067749-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n4)" points="566,34 581,19 734,19 734,321 719,336 719,34" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M566,34 L581,19 L734,19 L734,321 L719,336 L566,336 L566,34 L719,34 L719,336 M719,34 L734,19" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="642.500000" y="67.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="764.000000" y="27.000000" width="143.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="754.000000" y="37.000000" width="143.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="825.500000" y="70.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n6" maskUnits="userSpaceOnUse" x="927" y="27" width="153" height="302">
|
||||
<path d="M566,34L581,19L734,19L734,321L719,336L566,336L566,34L719,34L719,336M719,34L734,19" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="566.000000" y="34.000000" width="153.000000" height="302.000000" mask="url(#border-mask-d2-2956067749-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n4)" points="566,34 581,19 734,19 734,321 719,336 719,34" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M566,34 L581,19 L734,19 L734,321 L719,336 L566,336 L566,34 L719,34 L719,336 M719,34 L734,19" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="642.500000" y="67.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="764.000000" y="27.000000" width="143.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="754.000000" y="37.000000" width="143.000000" height="292.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="825.500000" y="70.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n6" maskUnits="userSpaceOnUse" x="927" y="27" width="153" height="302">
|
||||
<rect x="927" y="27" width="153" height="302" fill="white"></rect>
|
||||
<path d="M927,42L942,27L1080,27L1080,314L1065,329L927,329L927,42L1065,42L1065,329M1065,42L1080,27" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="927.000000" y="42.000000" width="138.000000" height="287.000000" mask="url(#border-mask-d2-2956067749-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n6)" points="927,42 942,27 1080,27 1080,314 1065,329 1065,42" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M927,42 L942,27 L1080,27 L1080,314 L1065,329 L927,329 L927,42 L1065,42 L1065,329 M1065,42 L1080,27" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="996.000000" y="75.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="1110.000000" y="22.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="1100.000000" y="32.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1176.500000" y="65.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n8" maskUnits="userSpaceOnUse" x="1283" y="19" width="168" height="317">
|
||||
<path d="M927,42L942,27L1080,27L1080,314L1065,329L927,329L927,42L1065,42L1065,329M1065,42L1080,27" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="927.000000" y="42.000000" width="138.000000" height="287.000000" mask="url(#border-mask-d2-2956067749-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n6)" points="927,42 942,27 1080,27 1080,314 1065,329 1065,42" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M927,42 L942,27 L1080,27 L1080,314 L1065,329 L927,329 L927,42 L1065,42 L1065,329 M1065,42 L1080,27" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="996.000000" y="75.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="1110.000000" y="22.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="1100.000000" y="32.000000" width="153.000000" height="302.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1176.500000" y="65.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n8" maskUnits="userSpaceOnUse" x="1283" y="19" width="168" height="317">
|
||||
<rect x="1283" y="19" width="168" height="317" fill="white"></rect>
|
||||
<path d="M1283,34L1298,19L1451,19L1451,321L1436,336L1283,336L1283,34L1436,34L1436,336M1436,34L1451,19" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1283.000000" y="34.000000" width="153.000000" height="302.000000" mask="url(#border-mask-d2-2956067749-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n8)" points="1283,34 1298,19 1451,19 1451,321 1436,336 1436,34" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1283,34 L1298,19 L1451,19 L1451,321 L1436,336 L1283,336 L1283,34 L1436,34 L1436,336 M1436,34 L1451,19" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1359.500000" y="67.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="1481.000000" y="17.000000" width="153.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="1471.000000" y="27.000000" width="153.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1547.500000" y="60.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n10" maskUnits="userSpaceOnUse" x="1654" y="12" width="168" height="332">
|
||||
<path d="M1283,34L1298,19L1451,19L1451,321L1436,336L1283,336L1283,34L1436,34L1436,336M1436,34L1451,19" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1283.000000" y="34.000000" width="153.000000" height="302.000000" mask="url(#border-mask-d2-2956067749-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n8)" points="1283,34 1298,19 1451,19 1451,321 1436,336 1436,34" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1283,34 L1298,19 L1451,19 L1451,321 L1436,336 L1283,336 L1283,34 L1436,34 L1436,336 M1436,34 L1451,19" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1359.500000" y="67.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="1481.000000" y="17.000000" width="153.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="1471.000000" y="27.000000" width="153.000000" height="312.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="1547.500000" y="60.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n10" maskUnits="userSpaceOnUse" x="1654" y="12" width="168" height="332">
|
||||
<rect x="1654" y="12" width="168" height="332" fill="white"></rect>
|
||||
<path d="M1654,27L1669,12L1822,12L1822,329L1807,344L1654,344L1654,27L1807,27L1807,344M1807,27L1822,12" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1654.000000" y="27.000000" width="153.000000" height="317.000000" mask="url(#border-mask-d2-2956067749-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n10)" points="1654,27 1669,12 1822,12 1822,329 1807,344 1807,27" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1654,27 L1669,12 L1822,12 L1822,329 L1807,344 L1654,344 L1654,27 L1807,27 L1807,344 M1807,27 L1822,12" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1730.500000" y="60.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="67.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="93.500000" y="110.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="72.000000" y="208.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="62.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="256.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="252.000000" y="69.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="278.500000" y="107.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n2.b" maskUnits="userSpaceOnUse" x="245" y="205" width="68" height="81">
|
||||
<path d="M1654,27L1669,12L1822,12L1822,329L1807,344L1654,344L1654,27L1807,27L1807,344M1807,27L1822,12" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1654.000000" y="27.000000" width="153.000000" height="317.000000" mask="url(#border-mask-d2-2956067749-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n10)" points="1654,27 1669,12 1822,12 1822,329 1807,344 1807,27" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M1654,27 L1669,12 L1822,12 L1822,329 L1807,344 L1654,344 L1654,27 L1807,27 L1807,344 M1807,27 L1822,12" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1730.500000" y="60.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="67.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="93.500000" y="110.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="72.000000" y="208.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="62.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="256.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="252.000000" y="69.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="278.500000" y="107.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n2.b" maskUnits="userSpaceOnUse" x="245" y="205" width="68" height="81">
|
||||
<rect x="245" y="205" width="68" height="81" fill="white"></rect>
|
||||
<path d="M245,220L260,205L313,205L313,271L298,286L245,286L245,220L298,220L298,286M298,220L313,205" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="245.000000" y="220.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-2956067749-n2.b)" points="245,220 260,205 313,205 313,271 298,286 298,220" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M245,220 L260,205 L313,205 L313,271 L298,286 L245,286 L245,220 L298,220 L298,286 M298,220 L313,205" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="271.500000" y="258.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="433.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="459.500000" y="115.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="438.000000" y="213.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="428.000000" y="223.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="454.500000" y="261.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="616.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="642.500000" y="115.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n4.b" maskUnits="userSpaceOnUse" x="608" y="213" width="68" height="81">
|
||||
<path d="M245,220L260,205L313,205L313,271L298,286L245,286L245,220L298,220L298,286M298,220L313,205" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="245.000000" y="220.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-2956067749-n2.b)" points="245,220 260,205 313,205 313,271 298,286 298,220" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M245,220 L260,205 L313,205 L313,271 L298,286 L245,286 L245,220 L298,220 L298,286 M298,220 L313,205" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="271.500000" y="258.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="433.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="459.500000" y="115.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="438.000000" y="213.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="428.000000" y="223.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="454.500000" y="261.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="616.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="642.500000" y="115.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n4.b" maskUnits="userSpaceOnUse" x="608" y="213" width="68" height="81">
|
||||
<rect x="608" y="213" width="68" height="81" fill="white"></rect>
|
||||
<path d="M608,228L623,213L676,213L676,279L661,294L608,294L608,228L661,228L661,294M661,228L676,213" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="608.000000" y="228.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-2956067749-n4.b)" points="608,228 623,213 676,213 676,279 661,294 661,228" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M608,228 L623,213 L676,213 L676,279 L661,294 L608,294 L608,228 L661,228 L661,294 M661,228 L676,213" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="634.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="799.000000" y="82.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="825.500000" y="120.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="799.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="825.500000" y="256.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="969.000000" y="84.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="995.500000" y="122.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="969.000000" y="220.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="995.500000" y="258.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="1155.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="1145.000000" y="87.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1171.500000" y="125.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="1150.000000" y="223.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1176.500000" y="261.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n8.a" maskUnits="userSpaceOnUse" x="1325" y="77" width="68" height="81">
|
||||
<path d="M608,228L623,213L676,213L676,279L661,294L608,294L608,228L661,228L661,294M661,228L676,213" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="608.000000" y="228.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-2956067749-n4.b)" points="608,228 623,213 676,213 676,279 661,294 661,228" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M608,228 L623,213 L676,213 L676,279 L661,294 L608,294 L608,228 L661,228 L661,294 M661,228 L676,213" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="634.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="799.000000" y="82.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="825.500000" y="120.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="799.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="825.500000" y="256.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="969.000000" y="84.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="995.500000" y="122.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="969.000000" y="220.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="995.500000" y="258.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="1155.000000" y="77.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="1145.000000" y="87.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1171.500000" y="125.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="1150.000000" y="223.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1176.500000" y="261.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n8.a" maskUnits="userSpaceOnUse" x="1325" y="77" width="68" height="81">
|
||||
<rect x="1325" y="77" width="68" height="81" fill="white"></rect>
|
||||
<path d="M1325,92L1340,77L1393,77L1393,143L1378,158L1325,158L1325,92L1378,92L1378,158M1378,92L1393,77" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1325.000000" y="92.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n8.a)" points="1325,92 1340,77 1393,77 1393,143 1378,158 1378,92" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1325,92 L1340,77 L1393,77 L1393,143 L1378,158 L1325,158 L1325,92 L1378,92 L1378,158 M1378,92 L1393,77" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1351.500000" y="130.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="1333.000000" y="228.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1359.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="1526.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="1516.000000" y="82.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1542.500000" y="120.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="1526.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="1516.000000" y="228.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1542.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n10.a" maskUnits="userSpaceOnUse" x="1696" y="69" width="68" height="81">
|
||||
<path d="M1325,92L1340,77L1393,77L1393,143L1378,158L1325,158L1325,92L1378,92L1378,158M1378,92L1393,77" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1325.000000" y="92.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n8.a)" points="1325,92 1340,77 1393,77 1393,143 1378,158 1378,92" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1325,92 L1340,77 L1393,77 L1393,143 L1378,158 L1325,158 L1325,92 L1378,92 L1378,158 M1378,92 L1393,77" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1351.500000" y="130.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="1333.000000" y="228.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1359.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="1526.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="1516.000000" y="82.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="1542.500000" y="120.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="1526.000000" y="218.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="1516.000000" y="228.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="1542.500000" y="266.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n10.a" maskUnits="userSpaceOnUse" x="1696" y="69" width="68" height="81">
|
||||
<rect x="1696" y="69" width="68" height="81" fill="white"></rect>
|
||||
<path d="M1696,84L1711,69L1764,69L1764,135L1749,150L1696,150L1696,84L1749,84L1749,150M1749,84L1764,69" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="1696.000000" y="84.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-2956067749-n10.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-2956067749-n10.a)" points="1696,84 1711,69 1764,69 1764,135 1749,150 1749,84" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M1696,84 L1711,69 L1764,69 L1764,135 L1749,150 L1696,150 L1696,84 L1749,84 L1749,150 M1749,84 L1764,69" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="1722.500000" y="122.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEwLmI="><g class="shape" ><defs><mask id="border-mask-d2-2956067749-n10.b" maskUnits="userSpaceOnUse" x="1696" y="220" width="68" height="81">
|
||||
<rect x="1696" y="220" width="68" height="81" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
|
@ -96,21 +96,21 @@
|
|||
.d2-1825809757 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1825809757 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1825809757 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1825809757 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1825809757);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1825809757);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1825809757);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1825809757);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="20.000000" y="56.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="153.000000" y="43.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="20.000000" y="278.000000" width="266.000000" height="141.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="153.000000" y="265.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="30.000000" y="505.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="20.000000" y="515.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="158.000000" y="492.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n4" maskUnits="userSpaceOnUse" x="20" y="737" width="281" height="156">
|
||||
.d2-1825809757 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1825809757);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1825809757);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1825809757);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1825809757);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1825809757);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1825809757);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="20.000000" y="56.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="153.000000" y="43.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="20.000000" y="278.000000" width="266.000000" height="141.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="153.000000" y="265.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="30.000000" y="505.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="20.000000" y="515.000000" width="266.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="158.000000" y="492.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n4" maskUnits="userSpaceOnUse" x="20" y="737" width="281" height="156">
|
||||
<rect x="20" y="737" width="281" height="156" fill="white"></rect>
|
||||
<path d="M20,752L35,737L301,737L301,878L286,893L20,893L20,752L286,752L286,893M286,752L301,737" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="752.000000" width="266.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n4)" points="20,752 35,737 301,737 301,878 286,893 286,752" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,752 L35,737 L301,737 L301,878 L286,893 L20,893 L20,752 L286,752 L286,893 M286,752 L301,737" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="160.500000" y="724.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="30.000000" y="979.000000" width="266.000000" height="126.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="20.000000" y="989.000000" width="266.000000" height="126.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="158.000000" y="966.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n6" maskUnits="userSpaceOnUse" x="20" y="1201" width="281" height="141">
|
||||
<path d="M20,752L35,737L301,737L301,878L286,893L20,893L20,752L286,752L286,893M286,752L301,737" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="752.000000" width="266.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n4)" points="20,752 35,737 301,737 301,878 286,893 286,752" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,752 L35,737 L301,737 L301,878 L286,893 L20,893 L20,752 L286,752 L286,893 M286,752 L301,737" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="160.500000" y="724.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="30.000000" y="979.000000" width="266.000000" height="126.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="20.000000" y="989.000000" width="266.000000" height="126.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="158.000000" y="966.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n6" maskUnits="userSpaceOnUse" x="20" y="1201" width="281" height="141">
|
||||
<rect x="20" y="1201" width="281" height="141" fill="white"></rect>
|
||||
<path d="M20,1216L35,1201L301,1201L301,1327L286,1342L20,1342L20,1216L286,1216L286,1342M286,1216L301,1201" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="1216.000000" width="266.000000" height="126.000000" mask="url(#border-mask-d2-1825809757-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n6)" points="20,1216 35,1201 301,1201 301,1327 286,1342 286,1216" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,1216 L35,1201 L301,1201 L301,1327 L286,1342 L20,1342 L20,1216 L286,1216 L286,1342 M286,1216 L301,1201" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="160.500000" y="1188.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="30.000000" y="1428.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="20.000000" y="1438.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="163.000000" y="1415.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n8" maskUnits="userSpaceOnUse" x="20" y="1660" width="296" height="156">
|
||||
<path d="M20,1216L35,1201L301,1201L301,1327L286,1342L20,1342L20,1216L286,1216L286,1342M286,1216L301,1201" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="1216.000000" width="266.000000" height="126.000000" mask="url(#border-mask-d2-1825809757-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n6)" points="20,1216 35,1201 301,1201 301,1327 286,1342 286,1216" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,1216 L35,1201 L301,1201 L301,1327 L286,1342 L20,1342 L20,1216 L286,1216 L286,1342 M286,1216 L301,1201" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="160.500000" y="1188.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="30.000000" y="1428.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="20.000000" y="1438.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="163.000000" y="1415.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n8" maskUnits="userSpaceOnUse" x="20" y="1660" width="296" height="156">
|
||||
<rect x="20" y="1660" width="296" height="156" fill="white"></rect>
|
||||
<path d="M20,1675L35,1660L316,1660L316,1801L301,1816L20,1816L20,1675L301,1675L301,1816M301,1675L316,1660" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="1675.000000" width="281.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n8)" points="20,1675 35,1660 316,1660 316,1801 301,1816 301,1675" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,1675 L35,1660 L316,1660 L316,1801 L301,1816 L20,1816 L20,1675 L301,1675 L301,1816 M301,1675 L316,1660" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="168.000000" y="1647.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="30.000000" y="1912.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="20.000000" y="1922.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="163.000000" y="1899.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n10" maskUnits="userSpaceOnUse" x="20" y="2159" width="296" height="156">
|
||||
<path d="M20,1675L35,1660L316,1660L316,1801L301,1816L20,1816L20,1675L301,1675L301,1816M301,1675L316,1660" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="1675.000000" width="281.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n8)" points="20,1675 35,1660 316,1660 316,1801 301,1816 301,1675" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,1675 L35,1660 L316,1660 L316,1801 L301,1816 L20,1816 L20,1675 L301,1675 L301,1816 M301,1675 L316,1660" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="168.000000" y="1647.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="30.000000" y="1912.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="20.000000" y="1922.000000" width="276.000000" height="136.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="163.000000" y="1899.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n10" maskUnits="userSpaceOnUse" x="20" y="2159" width="296" height="156">
|
||||
<rect x="20" y="2159" width="296" height="156" fill="white"></rect>
|
||||
<path d="M20,2174L35,2159L316,2159L316,2300L301,2315L20,2315L20,2174L301,2174L301,2315M301,2174L316,2159" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="2174.000000" width="281.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n10)" points="20,2174 35,2159 316,2159 316,2300 301,2315 301,2174" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,2174 L35,2159 L316,2159 L316,2300 L301,2315 L20,2315 L20,2174 L301,2174 L301,2315 M301,2174 L316,2159" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="168.000000" y="2146.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="203.000000" y="96.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="134.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="60.000000" y="86.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="50.000000" y="96.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="134.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="203.000000" y="323.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="361.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n2.b" maskUnits="userSpaceOnUse" x="50" y="308" width="68" height="81">
|
||||
<path d="M20,2174L35,2159L316,2159L316,2300L301,2315L20,2315L20,2174L301,2174L301,2315M301,2174L316,2159" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="20.000000" y="2174.000000" width="281.000000" height="141.000000" mask="url(#border-mask-d2-1825809757-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n10)" points="20,2174 35,2159 316,2159 316,2300 301,2315 301,2174" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M20,2174 L35,2159 L316,2159 L316,2300 L301,2315 L20,2315 L20,2174 L301,2174 L301,2315 M301,2174 L316,2159" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="168.000000" y="2146.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="203.000000" y="96.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="134.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="60.000000" y="86.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="50.000000" y="96.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="134.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="203.000000" y="323.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="361.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n2.b" maskUnits="userSpaceOnUse" x="50" y="308" width="68" height="81">
|
||||
<rect x="50" y="308" width="68" height="81" fill="white"></rect>
|
||||
<path d="M50,323L65,308L118,308L118,374L103,389L50,389L50,323L103,323L103,389M103,323L118,308" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="50.000000" y="323.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1825809757-n2.b)" points="50,323 65,308 118,308 118,374 103,389 103,323" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M50,323 L65,308 L118,308 L118,374 L103,389 L50,389 L50,323 L103,323 L103,389 M103,323 L118,308" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="361.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="203.000000" y="555.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="593.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="60.000000" y="545.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="50.000000" y="555.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="593.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="203.000000" y="797.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="835.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n4.b" maskUnits="userSpaceOnUse" x="50" y="782" width="68" height="81">
|
||||
<path d="M50,323L65,308L118,308L118,374L103,389L50,389L50,323L103,323L103,389M103,323L118,308" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="50.000000" y="323.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1825809757-n2.b)" points="50,323 65,308 118,308 118,374 103,389 103,323" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M50,323 L65,308 L118,308 L118,374 L103,389 L50,389 L50,323 L103,323 L103,389 M103,323 L118,308" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="361.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="203.000000" y="555.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="593.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="60.000000" y="545.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="50.000000" y="555.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="593.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="203.000000" y="797.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="835.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n4.b" maskUnits="userSpaceOnUse" x="50" y="782" width="68" height="81">
|
||||
<rect x="50" y="782" width="68" height="81" fill="white"></rect>
|
||||
<path d="M50,797L65,782L118,782L118,848L103,863L50,863L50,797L103,797L103,863M103,797L118,782" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="50.000000" y="797.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1825809757-n4.b)" points="50,797 65,782 118,782 118,848 103,863 103,797" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M50,797 L65,782 L118,782 L118,848 L103,863 L50,863 L50,797 L103,797 L103,863 M103,797 L118,782" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="835.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="203.000000" y="1019.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1057.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="50.000000" y="1019.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1057.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="203.000000" y="1246.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1284.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="50.000000" y="1246.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1284.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="213.000000" y="1468.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="203.000000" y="1478.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1516.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="50.000000" y="1478.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1516.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n8.a" maskUnits="userSpaceOnUse" x="203" y="1705" width="68" height="81">
|
||||
<path d="M50,797L65,782L118,782L118,848L103,863L50,863L50,797L103,797L103,863M103,797L118,782" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="50.000000" y="797.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1825809757-n4.b)" points="50,797 65,782 118,782 118,848 103,863 103,797" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M50,797 L65,782 L118,782 L118,848 L103,863 L50,863 L50,797 L103,797 L103,863 M103,797 L118,782" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="835.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="203.000000" y="1019.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1057.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="50.000000" y="1019.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1057.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="203.000000" y="1246.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1284.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="50.000000" y="1246.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1284.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="213.000000" y="1468.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="203.000000" y="1478.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="1516.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="50.000000" y="1478.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1516.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n8.a" maskUnits="userSpaceOnUse" x="203" y="1705" width="68" height="81">
|
||||
<rect x="203" y="1705" width="68" height="81" fill="white"></rect>
|
||||
<path d="M203,1720L218,1705L271,1705L271,1771L256,1786L203,1786L203,1720L256,1720L256,1786M256,1720L271,1705" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="203.000000" y="1720.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n8.a)" points="203,1720 218,1705 271,1705 271,1771 256,1786 256,1720" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M203,1720 L218,1705 L271,1705 L271,1771 L256,1786 L203,1786 L203,1720 L256,1720 L256,1786 M256,1720 L271,1705" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="229.500000" y="1758.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="50.000000" y="1720.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1758.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="213.000000" y="1952.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="203.000000" y="1962.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="2000.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="60.000000" y="1952.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="50.000000" y="1962.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="2000.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n10.a" maskUnits="userSpaceOnUse" x="203" y="2204" width="68" height="81">
|
||||
<path d="M203,1720L218,1705L271,1705L271,1771L256,1786L203,1786L203,1720L256,1720L256,1786M256,1720L271,1705" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="203.000000" y="1720.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n8.a)" points="203,1720 218,1705 271,1705 271,1771 256,1786 256,1720" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M203,1720 L218,1705 L271,1705 L271,1771 L256,1786 L203,1786 L203,1720 L256,1720 L256,1786 M256,1720 L271,1705" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="229.500000" y="1758.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="50.000000" y="1720.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="1758.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="213.000000" y="1952.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="203.000000" y="1962.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="229.500000" y="2000.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="60.000000" y="1952.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="50.000000" y="1962.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="76.500000" y="2000.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n10.a" maskUnits="userSpaceOnUse" x="203" y="2204" width="68" height="81">
|
||||
<rect x="203" y="2204" width="68" height="81" fill="white"></rect>
|
||||
<path d="M203,2219L218,2204L271,2204L271,2270L256,2285L203,2285L203,2219L256,2219L256,2285M256,2219L271,2204" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="203.000000" y="2219.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1825809757-n10.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1825809757-n10.a)" points="203,2219 218,2204 271,2204 271,2270 256,2285 256,2219" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M203,2219 L218,2204 L271,2204 L271,2270 L256,2285 L203,2285 L203,2219 L256,2219 L256,2285 M256,2219 L271,2204" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="229.500000" y="2257.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEwLmI="><g class="shape" ><defs><mask id="border-mask-d2-1825809757-n10.b" maskUnits="userSpaceOnUse" x="50" y="2204" width="68" height="81">
|
||||
<rect x="50" y="2204" width="68" height="81" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
|
@ -96,21 +96,21 @@
|
|||
.d2-1207717161 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1207717161 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1207717161 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1207717161 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1207717161);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1207717161);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1207717161);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1207717161);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="22.000000" y="12.000000" width="286.000000" height="176.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="165.000000" y="45.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="19.000000" y="208.000000" width="291.000000" height="181.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="164.500000" y="241.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="32.000000" y="409.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="22.000000" y="419.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="452.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n4" maskUnits="userSpaceOnUse" x="19" y="605" width="291" height="181">
|
||||
.d2-1207717161 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1207717161);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1207717161);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1207717161);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1207717161);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1207717161);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1207717161);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="bjE="><g class="shape" ><rect x="22.000000" y="12.000000" width="286.000000" height="176.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="165.000000" y="45.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n1</text></g><g class="bjI="><g class="shape" ><rect x="19.000000" y="208.000000" width="291.000000" height="181.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="164.500000" y="241.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n2</text></g><g class="bjM="><g class="shape" ><rect x="32.000000" y="409.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="22.000000" y="419.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="452.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n3</text></g><g class="bjQ="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n4" maskUnits="userSpaceOnUse" x="19" y="605" width="291" height="181">
|
||||
<rect x="19" y="605" width="291" height="181" fill="white"></rect>
|
||||
<path d="M19,620L34,605L310,605L310,771L295,786L19,786L19,620L295,620L295,786M295,620L310,605" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="19.000000" y="620.000000" width="276.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n4)" points="19,620 34,605 310,605 310,771 295,786 295,620" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M19,620 L34,605 L310,605 L310,771 L295,786 L19,786 L19,620 L295,620 L295,786 M295,620 L310,605" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.000000" y="653.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="37.000000" y="806.000000" width="266.000000" height="156.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="27.000000" y="816.000000" width="266.000000" height="156.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="849.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n6" maskUnits="userSpaceOnUse" x="27" y="992" width="276" height="166">
|
||||
<path d="M19,620L34,605L310,605L310,771L295,786L19,786L19,620L295,620L295,786M295,620L310,605" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="19.000000" y="620.000000" width="276.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n4)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n4)" points="19,620 34,605 310,605 310,771 295,786 295,620" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M19,620 L34,605 L310,605 L310,771 L295,786 L19,786 L19,620 L295,620 L295,786 M295,620 L310,605" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.000000" y="653.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n4</text></g><g class="bjU="><g class="shape" ><rect x="37.000000" y="806.000000" width="266.000000" height="156.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="27.000000" y="816.000000" width="266.000000" height="156.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="849.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n5</text></g><g class="bjY="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n6" maskUnits="userSpaceOnUse" x="27" y="992" width="276" height="166">
|
||||
<rect x="27" y="992" width="276" height="166" fill="white"></rect>
|
||||
<path d="M27,1007L42,992L303,992L303,1143L288,1158L27,1158L27,1007L288,1007L288,1158M288,1007L303,992" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="27.000000" y="1007.000000" width="261.000000" height="151.000000" mask="url(#border-mask-d2-1207717161-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n6)" points="27,1007 42,992 303,992 303,1143 288,1158 288,1007" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M27,1007 L42,992 L303,992 L303,1143 L288,1158 L27,1158 L27,1007 L288,1007 L288,1158 M288,1007 L303,992" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.500000" y="1040.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="32.000000" y="1178.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="22.000000" y="1188.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="1221.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n8" maskUnits="userSpaceOnUse" x="19" y="1374" width="291" height="181">
|
||||
<path d="M27,1007L42,992L303,992L303,1143L288,1158L27,1158L27,1007L288,1007L288,1158M288,1007L303,992" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="27.000000" y="1007.000000" width="261.000000" height="151.000000" mask="url(#border-mask-d2-1207717161-n6)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n6)" points="27,1007 42,992 303,992 303,1143 288,1158 288,1007" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M27,1007 L42,992 L303,992 L303,1143 L288,1158 L27,1158 L27,1007 L288,1007 L288,1158 M288,1007 L303,992" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.500000" y="1040.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n6</text></g><g class="bjc="><g class="shape" ><rect x="32.000000" y="1178.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="22.000000" y="1188.000000" width="276.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="1221.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n7</text></g><g class="bjg="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n8" maskUnits="userSpaceOnUse" x="19" y="1374" width="291" height="181">
|
||||
<rect x="19" y="1374" width="291" height="181" fill="white"></rect>
|
||||
<path d="M19,1389L34,1374L310,1374L310,1540L295,1555L19,1555L19,1389L295,1389L295,1555M295,1389L310,1374" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="19.000000" y="1389.000000" width="276.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n8)" points="19,1389 34,1374 310,1374 310,1540 295,1555 295,1389" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M19,1389 L34,1374 L310,1374 L310,1540 L295,1555 L19,1555 L19,1389 L295,1389 L295,1555 M295,1389 L310,1374" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.000000" y="1422.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="27.000000" y="1575.000000" width="286.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /><rect x="17.000000" y="1585.000000" width="286.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="1618.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n10" maskUnits="userSpaceOnUse" x="12" y="1771" width="306" height="181">
|
||||
<path d="M19,1389L34,1374L310,1374L310,1540L295,1555L19,1555L19,1389L295,1389L295,1555M295,1389L310,1374" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="19.000000" y="1389.000000" width="276.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n8)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n8)" points="19,1389 34,1374 310,1374 310,1540 295,1555 295,1389" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M19,1389 L34,1374 L310,1374 L310,1540 L295,1555 L19,1555 L19,1389 L295,1389 L295,1555 M295,1389 L310,1374" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.000000" y="1422.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n8</text></g><g class="bjk="><g class="shape" ><rect x="27.000000" y="1575.000000" width="286.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2; opacity:0.000000" /><rect x="17.000000" y="1585.000000" width="286.000000" height="166.000000" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B4" style="stroke-width:2;" /></g><text x="160.000000" y="1618.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n9</text></g><g class="bjEw"><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n10" maskUnits="userSpaceOnUse" x="12" y="1771" width="306" height="181">
|
||||
<rect x="12" y="1771" width="306" height="181" fill="white"></rect>
|
||||
<path d="M12,1786L27,1771L318,1771L318,1937L303,1952L12,1952L12,1786L303,1786L303,1952M303,1786L318,1771" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="12.000000" y="1786.000000" width="291.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n10)" points="12,1786 27,1771 318,1771 318,1937 303,1952 303,1786" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M12,1786 L27,1771 L318,1771 L318,1937 L303,1952 L12,1952 L12,1786 L303,1786 L303,1952 M303,1786 L318,1771" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.500000" y="1819.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="205.000000" y="67.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="231.500000" y="105.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="82.000000" y="62.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="72.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="98.500000" y="110.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="207.000000" y="265.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="233.500000" y="303.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n2.b" maskUnits="userSpaceOnUse" x="69" y="258" width="68" height="81">
|
||||
<path d="M12,1786L27,1771L318,1771L318,1937L303,1952L12,1952L12,1786L303,1786L303,1952M303,1786L318,1771" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="12.000000" y="1786.000000" width="291.000000" height="166.000000" mask="url(#border-mask-d2-1207717161-n10)" stroke="none" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n10)" points="12,1786 27,1771 318,1771 318,1937 303,1952 303,1786" fill="#E3E9FD" class=" fill-B3" style="stroke-width:2;" /><path d="M12,1786 L27,1771 L318,1771 L318,1937 L303,1952 L12,1952 L12,1786 L303,1786 L303,1952 M303,1786 L318,1771" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="157.500000" y="1819.000000" fill="#0A0F25" class="text fill-N1" style="text-anchor:middle;font-size:28px">n10</text></g><g class="bjEuYQ=="><g class="shape" ><rect x="205.000000" y="67.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="231.500000" y="105.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEuYg=="><g class="shape" ><rect x="82.000000" y="62.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="72.000000" y="72.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="98.500000" y="110.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjIuYQ=="><g class="shape" ><rect x="207.000000" y="265.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="233.500000" y="303.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjIuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n2.b" maskUnits="userSpaceOnUse" x="69" y="258" width="68" height="81">
|
||||
<rect x="69" y="258" width="68" height="81" fill="white"></rect>
|
||||
<path d="M69,273L84,258L137,258L137,324L122,339L69,339L69,273L122,273L122,339M122,273L137,258" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="69.000000" y="273.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1207717161-n2.b)" points="69,273 84,258 137,258 137,324 122,339 122,273" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M69,273 L84,258 L137,258 L137,324 L122,339 L69,339 L69,273 L122,273 L122,339 M122,273 L137,258" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="95.500000" y="311.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="200.000000" y="469.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="226.500000" y="507.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="77.000000" y="464.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="67.000000" y="474.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="93.500000" y="512.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="200.000000" y="670.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="226.500000" y="708.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n4.b" maskUnits="userSpaceOnUse" x="62" y="662" width="68" height="81">
|
||||
<path d="M69,273L84,258L137,258L137,324L122,339L69,339L69,273L122,273L122,339M122,273L137,258" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="69.000000" y="273.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n2.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1207717161-n2.b)" points="69,273 84,258 137,258 137,324 122,339 122,273" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M69,273 L84,258 L137,258 L137,324 L122,339 L69,339 L69,273 L122,273 L122,339 M122,273 L137,258" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="95.500000" y="311.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjMuYQ=="><g class="shape" ><rect x="200.000000" y="469.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="226.500000" y="507.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjMuYg=="><g class="shape" ><rect x="77.000000" y="464.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="67.000000" y="474.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="93.500000" y="512.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjQuYQ=="><g class="shape" ><rect x="200.000000" y="670.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="226.500000" y="708.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjQuYg=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n4.b" maskUnits="userSpaceOnUse" x="62" y="662" width="68" height="81">
|
||||
<rect x="62" y="662" width="68" height="81" fill="white"></rect>
|
||||
<path d="M62,677L77,662L130,662L130,728L115,743L62,743L62,677L115,677L115,743M115,677L130,662" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="62.000000" y="677.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1207717161-n4.b)" points="62,677 77,662 130,662 130,728 115,743 115,677" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M62,677 L77,662 L130,662 L130,728 L115,743 L62,743 L62,677 L115,677 L115,743 M115,677 L130,662" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="715.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="195.000000" y="861.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="221.500000" y="899.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="72.000000" y="861.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="98.500000" y="899.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="192.000000" y="1049.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="218.500000" y="1087.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="69.000000" y="1049.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="95.500000" y="1087.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="200.000000" y="1233.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="190.000000" y="1243.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="216.500000" y="1281.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="67.000000" y="1238.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="93.500000" y="1276.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n8.a" maskUnits="userSpaceOnUse" x="185" y="1431" width="68" height="81">
|
||||
<path d="M62,677L77,662L130,662L130,728L115,743L62,743L62,677L115,677L115,743M115,677L130,662" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="62.000000" y="677.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n4.b)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><polygon mask="url(#border-mask-d2-1207717161-n4.b)" points="62,677 77,662 130,662 130,728 115,743 115,677" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><path d="M62,677 L77,662 L130,662 L130,728 L115,743 L62,743 L62,677 L115,677 L115,743 M115,677 L130,662" stroke="#0D32B2" fill="none" class=" stroke-B2" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="715.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjUuYQ=="><g class="shape" ><rect x="195.000000" y="861.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="221.500000" y="899.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjUuYg=="><g class="shape" ><rect x="72.000000" y="861.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="98.500000" y="899.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjYuYQ=="><g class="shape" ><rect x="192.000000" y="1049.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="218.500000" y="1087.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjYuYg=="><g class="shape" ><rect x="69.000000" y="1049.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="95.500000" y="1087.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjcuYQ=="><g class="shape" ><rect x="200.000000" y="1233.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="190.000000" y="1243.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="216.500000" y="1281.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjcuYg=="><g class="shape" ><rect x="67.000000" y="1238.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="93.500000" y="1276.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjguYQ=="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n8.a" maskUnits="userSpaceOnUse" x="185" y="1431" width="68" height="81">
|
||||
<rect x="185" y="1431" width="68" height="81" fill="white"></rect>
|
||||
<path d="M185,1446L200,1431L253,1431L253,1497L238,1512L185,1512L185,1446L238,1446L238,1512M238,1446L253,1431" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="185.000000" y="1446.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n8.a)" points="185,1446 200,1431 253,1431 253,1497 238,1512 238,1446" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M185,1446 L200,1431 L253,1431 L253,1497 L238,1512 L185,1512 L185,1446 L238,1446 L238,1512 M238,1446 L253,1431" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="211.500000" y="1484.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="62.000000" y="1439.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="1477.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="205.000000" y="1630.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /><rect x="195.000000" y="1640.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="221.500000" y="1678.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="72.000000" y="1630.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /><rect x="62.000000" y="1640.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="1678.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n10.a" maskUnits="userSpaceOnUse" x="192" y="1828" width="68" height="81">
|
||||
<path d="M185,1446L200,1431L253,1431L253,1497L238,1512L185,1512L185,1446L238,1446L238,1512M238,1446L253,1431" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="185.000000" y="1446.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n8.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n8.a)" points="185,1446 200,1431 253,1431 253,1497 238,1512 238,1446" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M185,1446 L200,1431 L253,1431 L253,1497 L238,1512 L185,1512 L185,1446 L238,1446 L238,1512 M238,1446 L253,1431" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="211.500000" y="1484.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjguYg=="><g class="shape" ><rect x="62.000000" y="1439.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="1477.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjkuYQ=="><g class="shape" ><rect x="205.000000" y="1630.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2; opacity:0.000000" /><rect x="195.000000" y="1640.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B1 fill-B5" style="stroke-width:2;" /></g><text x="221.500000" y="1678.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjkuYg=="><g class="shape" ><rect x="72.000000" y="1630.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639; opacity:0.000000" /><rect x="62.000000" y="1640.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#EDF0FD" class=" stroke-B2 fill-B5" style="stroke-width:2;stroke-dasharray:10.000000,9.865639;" /></g><text x="88.500000" y="1678.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">b</text></g><g class="bjEwLmE="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n10.a" maskUnits="userSpaceOnUse" x="192" y="1828" width="68" height="81">
|
||||
<rect x="192" y="1828" width="68" height="81" fill="white"></rect>
|
||||
<path d="M192,1843L207,1828L260,1828L260,1894L245,1909L192,1909L192,1843L245,1843L245,1909M245,1843L260,1828" style="stroke-width:2;;stroke:#000;fill:none;opacity:1;"/></mask></defs><rect x="192.000000" y="1843.000000" width="53.000000" height="66.000000" mask="url(#border-mask-d2-1207717161-n10.a)" stroke="none" fill="#EDF0FD" class=" fill-B5" style="stroke-width:2;" /><polygon mask="url(#border-mask-d2-1207717161-n10.a)" points="192,1843 207,1828 260,1828 260,1894 245,1909 245,1843" fill="#E3E9FD" class=" fill-B4" style="stroke-width:2;" /><path d="M192,1843 L207,1828 L260,1828 L260,1894 L245,1909 L192,1909 L192,1843 L245,1843 L245,1909 M245,1843 L260,1828" stroke="#0D32B2" fill="none" class=" stroke-B1" style="stroke-width:2;" /></g><text x="218.500000" y="1881.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><g class="bjEwLmI="><g class="shape" ><defs><mask id="border-mask-d2-1207717161-n10.b" maskUnits="userSpaceOnUse" x="54" y="1828" width="68" height="81">
|
||||
<rect x="54" y="1828" width="68" height="81" fill="white"></rect>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-1389951319 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1389951319 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1389951319 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1389951319 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1389951319);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1389951319);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1389951319);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1389951319);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="Pw=="><g class="shape" ><path d="M 54 56 H 10 V 55 C 10 44 15 34 22 29 C 18 25 16 18 16 11 C 16 -0 23 -10 32 -10 C 41 -10 48 -0 48 11 C 48 18 46 24 41 28 C 49 33 53 43 53 54 V 55 H 54 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /><path d="M 44 66 H 0 V 65 C 0 54 5 44 12 39 C 8 35 6 28 6 21 C 6 10 13 0 22 0 C 31 0 38 10 38 21 C 38 28 36 34 31 38 C 39 43 43 53 43 64 V 65 H 44 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /></g><text x="27.000000" y="87.000000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">あ</text></g><mask id="d2-1389951319" maskUnits="userSpaceOnUse" x="-1" y="-12" width="57" height="104">
|
||||
.d2-1389951319 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1389951319);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1389951319);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1389951319);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1389951319);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1389951319);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1389951319);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="Pw=="><g class="shape" ><path d="M 54 56 H 10 V 55 C 10 44 15 34 22 29 C 18 25 16 18 16 11 C 16 -0 23 -10 32 -10 C 41 -10 48 -0 48 11 C 48 18 46 24 41 28 C 49 33 53 43 53 54 V 55 H 54 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2; opacity:0.000000" /><path d="M 44 66 H 0 V 65 C 0 54 5 44 12 39 C 8 35 6 28 6 21 C 6 10 13 0 22 0 C 31 0 38 10 38 21 C 38 28 36 34 31 38 C 39 43 43 53 43 64 V 65 H 44 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /></g><text x="27.000000" y="87.000000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">あ</text></g><mask id="d2-1389951319" maskUnits="userSpaceOnUse" x="-1" y="-12" width="57" height="104">
|
||||
<rect x="-1" y="-12" width="57" height="104" fill="white"></rect>
|
||||
<rect x="15.500000" y="71.000000" width="23" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
|
|
@ -89,7 +89,7 @@
|
|||
.d2-3688633770 .color-AA4{color:#EDF0FD;}
|
||||
.d2-3688633770 .color-AA5{color:#F7F8FE;}
|
||||
.d2-3688633770 .color-AB4{color:#EDF0FD;}
|
||||
.d2-3688633770 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3688633770);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3688633770);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3688633770);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3688633770);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="Pw=="><g class="shape" ><path d="M 66 78 H 22 V 77 C 22 66 27 56 34 51 C 30 47 28 40 28 33 C 28 22 35 12 44 12 C 53 12 60 22 60 33 C 60 40 58 46 53 50 C 61 55 65 65 65 76 V 77 H 66 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /><path d="M 56 88 H 12 V 87 C 12 76 17 66 24 61 C 20 57 18 50 18 43 C 18 32 25 22 34 22 C 43 22 50 32 50 43 C 50 50 48 56 43 60 C 51 65 55 75 55 86 V 87 H 56 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /></g><text x="39.000000" y="109.000000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">あ</text></g><mask id="d2-3688633770" maskUnits="userSpaceOnUse" x="11" y="10" width="57" height="104">
|
||||
.d2-3688633770 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-3688633770);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-3688633770);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-3688633770);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-3688633770);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-3688633770);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-3688633770);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="Pw=="><g class="shape" ><path d="M 66 78 H 22 V 77 C 22 66 27 56 34 51 C 30 47 28 40 28 33 C 28 22 35 12 44 12 C 53 12 60 22 60 33 C 60 40 58 46 53 50 C 61 55 65 65 65 76 V 77 H 66 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2; opacity:0.000000" /><path d="M 56 88 H 12 V 87 C 12 76 17 66 24 61 C 20 57 18 50 18 43 C 18 32 25 22 34 22 C 43 22 50 32 50 43 C 50 50 48 56 43 60 C 51 65 55 75 55 86 V 87 H 56 Z" stroke="#0D32B2" fill="#E3E9FD" class=" stroke-B1 fill-B3" style="stroke-width:2;" /></g><text x="39.000000" y="109.000000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">あ</text></g><mask id="d2-3688633770" maskUnits="userSpaceOnUse" x="11" y="10" width="57" height="104">
|
||||
<rect x="11" y="10" width="57" height="104" fill="white"></rect>
|
||||
<rect x="27.500000" y="93.000000" width="23" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
|
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 460 KiB After Width: | Height: | Size: 461 KiB |
|
Before Width: | Height: | Size: 460 KiB After Width: | Height: | Size: 460 KiB |
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 121 KiB After Width: | Height: | Size: 121 KiB |
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
100
e2etests/testdata/txtar/multiple_opacity/dagre/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
{
|
||||
"name": "",
|
||||
"config": {
|
||||
"sketch": false,
|
||||
"themeID": 0,
|
||||
"darkThemeID": null,
|
||||
"pad": null,
|
||||
"center": null,
|
||||
"layoutEngine": null
|
||||
},
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B6",
|
||||
"stroke": "B1",
|
||||
"animated": false,
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": true,
|
||||
"multipleOpacity": 0.5,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 8,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"animated": false,
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
95
e2etests/testdata/txtar/multiple_opacity/dagre/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" data-d2-version="v0.6.9-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 66 79"><svg class="d2-1590354040 d2-svg" width="66" height="79" viewBox="-1 -12 66 79"><rect x="-1.000000" y="-12.000000" width="66.000000" height="79.000000" rx="0.000000" fill="#FFFFFF" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-1590354040 .text-bold {
|
||||
font-family: "d2-1590354040-font-bold";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-1590354040-font-bold;
|
||||
src: url("data:application/font-woff;base64,d09GRgABAAAAAAYgAAoAAAAACtwAAguFAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAGAAAABgXxHXrmNtYXAAAAFUAAAAMAAAADAADQCYZ2x5ZgAAAYQAAADIAAAAyJ1bNpxoZWFkAAACTAAAADYAAAA2G38e1GhoZWEAAAKEAAAAJAAAACQKfwXBaG10eAAAAqgAAAAIAAAACATBAHpsb2NhAAACsAAAAAYAAAAGAGQALG1heHAAAAK4AAAAIAAAACAAGgD3bmFtZQAAAtgAAAMoAAAIKgjwVkFwb3N0AAAGAAAAAB0AAAAg/9EAMgADAioCvAAFAAACigJYAAAASwKKAlgAAAFeADIBKQAAAgsHAwMEAwICBGAAAvcAAAADAAAAAAAAAABBREJPACAAIP//Au7/BgAAA9gBESAAAZ8AAAAAAfAClAAAACAAAwAAAAEAAwABAAAADAAEACQAAAAEAAQAAQAAAGH//wAAAGH///+gAAEAAAAAAAEAAAAFAFAAAAJiApQAAwAJAA8AEgAVAAAzESERJTMnJyMHNzM3NyMXAzcnAREHUAIS/qWkJykEKSkEKiCYH3pfXwFNXgKU/WxbTWJi9l87O/6eubr+jQFzugAAAgAq//QB1AH8ABkAIwAAFyImNTQ2NyYmIyIGByc2NjMyFhURIycjBgY3MjY3NQYGFRQWvkRQhJMCIykfQCQ1L2s6X2Z4CgQfRwgZJRNOPB8MVz9OWA8hJxgVYR0kbnL+5DMcI3IXE1cKKx0YFwAAAAEAAAACC4VEp3A7Xw889QABA+gAAAAA2F2ghAAAAADdZi82/jf+xAhtA/EAAQADAAIAAAAAAAAAAQAAA9j+7wAACJj+N/43CG0AAQAAAAAAAAAAAAAAAAAAAAICsgBQAg8AKgAAACwAZAAAAAEAAAACAJAADABjAAcAAQAAAAAAAAAAAAAAAAAEAAN4nJyUz24bVRTGf05s0wrBAkVVuonugkWR6NhUSdU2K4fUikUUB48LQkJIE8/4jzKeGXkmDuEJWPMWvEVXPATPgVij+Xzs2AXRJoqSfHfu+fOdc75zgR3+ZptK9SHwRz0xXGGvfm54iwf1E8PbtOtbhqs8qf1puEZYmxuu83mtZ/gj3lZ/M/yA/epPhh+yW20b/phn1R3Dn2w7/jL8Kfu8XeAKvOBXwxV2yQxvscOPhrd5hMWsVHlE03CNz9gzXGcP6DOhIGZCwgjHkAkjrpgRkeMTMWPCkIgQR4cWMYW+JgRCjtF/fg3wKZgRKOKYAkeMT0xAztgi/iKvlHNlHOo0s7sWBWMCLuRxSUCCI2VESkLEpeIUFGS8okGDnIH4ZhTkeORMiPFImTGiQZc2p/QZMyHH0VakkplPypCCawLld2ZRdmZAREJurK5ICMXTiV8k7w6nOLpksl2PfLoR4Usc38m75JbK9is8/bo1Zpt5l2wC5upnrK7EurnWBMe6LfO2+Fa44BXuXv3ZZPL+HoX6XyjyBVeaf6hJJWKS4NwuLXwpyHePcRzp3MFXR76nQ58Turyhr3OLHj1anNGnw2v5dunh+JouZxzLoyO8uGtLMWf8gOMbOrIpY0fWn8XEIn4mM3Xn4jhTHVMy9bxk7qnWSBXefcLlDqUb6sjlM9AelZZO80u0ZwEjU0UmhlP1cqmN3PoXmiKmqqWc7e19uQ1z273lFt+QaodLtS44lZNbMHrfVL13NHOtH4+AkJQLWQxImdKg4Ea8zwm4IsZxrO6daEsKWiufMs+NVBIxFYMOieLMyPQ3MN34xn2woXtnb0ko/5Lp5aqq+2Rx6tXtjN6oe8s737ocrU2gYVNN19Q0ENfEtB9pp9b5+/LN9bqlPOWIlJjwXy/AMzya7HPAIWNlGOhmbq9DUy9Ek5ccqvpLIlkNpefIIhzg8ZwDDnjJ83f6uGTijItbcVnP3eKYI7ocflAVC/suR7xeffv/rL+LaVO1OJ6uTi/uPcUnd1DrF9qz2/eyp4mVk5hbtNutOCNgWnJxu+s1ucd4/wAAAP//AQAA///0t09ReJxiYGYAg//nGIwYsAAAAAAA//8BAAD//y8BAgMAAAA=");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-1590354040 .fill-N1{fill:#0A0F25;}
|
||||
.d2-1590354040 .fill-N2{fill:#676C7E;}
|
||||
.d2-1590354040 .fill-N3{fill:#9499AB;}
|
||||
.d2-1590354040 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-1590354040 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-1590354040 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-1590354040 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-1590354040 .fill-B1{fill:#0D32B2;}
|
||||
.d2-1590354040 .fill-B2{fill:#0D32B2;}
|
||||
.d2-1590354040 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-1590354040 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-1590354040 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-1590354040 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-1590354040 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-1590354040 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-1590354040 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-1590354040 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-1590354040 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-1590354040 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-1590354040 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-1590354040 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-1590354040 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-1590354040 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-1590354040 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-1590354040 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-1590354040 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-1590354040 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-1590354040 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-1590354040 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-1590354040 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-1590354040 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-1590354040 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-1590354040 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-1590354040 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-1590354040 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-1590354040 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-1590354040 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-1590354040 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-1590354040 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-1590354040 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-1590354040 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-1590354040 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-1590354040 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-1590354040 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-1590354040 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-1590354040 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-1590354040 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-1590354040 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-1590354040 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-1590354040 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-1590354040 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-1590354040 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-1590354040 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-1590354040 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-1590354040 .color-N1{color:#0A0F25;}
|
||||
.d2-1590354040 .color-N2{color:#676C7E;}
|
||||
.d2-1590354040 .color-N3{color:#9499AB;}
|
||||
.d2-1590354040 .color-N4{color:#CFD2DD;}
|
||||
.d2-1590354040 .color-N5{color:#DEE1EB;}
|
||||
.d2-1590354040 .color-N6{color:#EEF1F8;}
|
||||
.d2-1590354040 .color-N7{color:#FFFFFF;}
|
||||
.d2-1590354040 .color-B1{color:#0D32B2;}
|
||||
.d2-1590354040 .color-B2{color:#0D32B2;}
|
||||
.d2-1590354040 .color-B3{color:#E3E9FD;}
|
||||
.d2-1590354040 .color-B4{color:#E3E9FD;}
|
||||
.d2-1590354040 .color-B5{color:#EDF0FD;}
|
||||
.d2-1590354040 .color-B6{color:#F7F8FE;}
|
||||
.d2-1590354040 .color-AA2{color:#4A6FF3;}
|
||||
.d2-1590354040 .color-AA4{color:#EDF0FD;}
|
||||
.d2-1590354040 .color-AA5{color:#F7F8FE;}
|
||||
.d2-1590354040 .color-AB4{color:#EDF0FD;}
|
||||
.d2-1590354040 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-1590354040);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-1590354040);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-1590354040);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-1590354040);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-1590354040);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-1590354040);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-1590354040);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-1590354040);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="YQ=="><g class="shape" ><rect x="10.000000" y="-10.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.500000" /><rect x="0.000000" y="0.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="26.500000" y="38.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><mask id="d2-1590354040" maskUnits="userSpaceOnUse" x="-1" y="-12" width="66" height="79">
|
||||
<rect x="-1" y="-12" width="66" height="79" fill="white"></rect>
|
||||
<rect x="20.500000" y="22.500000" width="12" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
100
e2etests/testdata/txtar/multiple_opacity/elk/board.exp.json
generated
vendored
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
{
|
||||
"name": "",
|
||||
"config": {
|
||||
"sketch": false,
|
||||
"themeID": 0,
|
||||
"darkThemeID": null,
|
||||
"pad": null,
|
||||
"center": null,
|
||||
"layoutEngine": null
|
||||
},
|
||||
"isFolderOnly": false,
|
||||
"fontFamily": "SourceSansPro",
|
||||
"shapes": [
|
||||
{
|
||||
"id": "a",
|
||||
"type": "rectangle",
|
||||
"pos": {
|
||||
"x": 12,
|
||||
"y": 22
|
||||
},
|
||||
"width": 53,
|
||||
"height": 66,
|
||||
"opacity": 1,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 2,
|
||||
"borderRadius": 0,
|
||||
"fill": "B6",
|
||||
"stroke": "B1",
|
||||
"animated": false,
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": true,
|
||||
"multipleOpacity": 0.5,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "a",
|
||||
"fontSize": 16,
|
||||
"fontFamily": "DEFAULT",
|
||||
"language": "",
|
||||
"color": "N1",
|
||||
"italic": false,
|
||||
"bold": true,
|
||||
"underline": false,
|
||||
"labelWidth": 8,
|
||||
"labelHeight": 21,
|
||||
"labelPosition": "INSIDE_MIDDLE_CENTER",
|
||||
"zIndex": 0,
|
||||
"level": 1
|
||||
}
|
||||
],
|
||||
"connections": [],
|
||||
"root": {
|
||||
"id": "",
|
||||
"type": "",
|
||||
"pos": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"width": 0,
|
||||
"height": 0,
|
||||
"opacity": 0,
|
||||
"strokeDash": 0,
|
||||
"strokeWidth": 0,
|
||||
"borderRadius": 0,
|
||||
"fill": "N7",
|
||||
"stroke": "",
|
||||
"animated": false,
|
||||
"shadow": false,
|
||||
"3d": false,
|
||||
"multiple": false,
|
||||
"double-border": false,
|
||||
"tooltip": "",
|
||||
"link": "",
|
||||
"icon": null,
|
||||
"iconPosition": "",
|
||||
"blend": false,
|
||||
"fields": null,
|
||||
"methods": null,
|
||||
"columns": null,
|
||||
"label": "",
|
||||
"fontSize": 0,
|
||||
"fontFamily": "",
|
||||
"language": "",
|
||||
"color": "",
|
||||
"italic": false,
|
||||
"bold": false,
|
||||
"underline": false,
|
||||
"labelWidth": 0,
|
||||
"labelHeight": 0,
|
||||
"zIndex": 0,
|
||||
"level": 0
|
||||
}
|
||||
}
|
||||
95
e2etests/testdata/txtar/multiple_opacity/elk/sketch.exp.svg
vendored
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" data-d2-version="v0.6.9-HEAD" preserveAspectRatio="xMinYMin meet" viewBox="0 0 66 79"><svg class="d2-2173535777 d2-svg" width="66" height="79" viewBox="11 10 66 79"><rect x="11.000000" y="10.000000" width="66.000000" height="79.000000" rx="0.000000" fill="#FFFFFF" class=" fill-N7" stroke-width="0" /><style type="text/css"><![CDATA[
|
||||
.d2-2173535777 .text-bold {
|
||||
font-family: "d2-2173535777-font-bold";
|
||||
}
|
||||
@font-face {
|
||||
font-family: d2-2173535777-font-bold;
|
||||
src: url("data:application/font-woff;base64,d09GRgABAAAAAAYgAAoAAAAACtwAAguFAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAAGAAAABgXxHXrmNtYXAAAAFUAAAAMAAAADAADQCYZ2x5ZgAAAYQAAADIAAAAyJ1bNpxoZWFkAAACTAAAADYAAAA2G38e1GhoZWEAAAKEAAAAJAAAACQKfwXBaG10eAAAAqgAAAAIAAAACATBAHpsb2NhAAACsAAAAAYAAAAGAGQALG1heHAAAAK4AAAAIAAAACAAGgD3bmFtZQAAAtgAAAMoAAAIKgjwVkFwb3N0AAAGAAAAAB0AAAAg/9EAMgADAioCvAAFAAACigJYAAAASwKKAlgAAAFeADIBKQAAAgsHAwMEAwICBGAAAvcAAAADAAAAAAAAAABBREJPACAAIP//Au7/BgAAA9gBESAAAZ8AAAAAAfAClAAAACAAAwAAAAEAAwABAAAADAAEACQAAAAEAAQAAQAAAGH//wAAAGH///+gAAEAAAAAAAEAAAAFAFAAAAJiApQAAwAJAA8AEgAVAAAzESERJTMnJyMHNzM3NyMXAzcnAREHUAIS/qWkJykEKSkEKiCYH3pfXwFNXgKU/WxbTWJi9l87O/6eubr+jQFzugAAAgAq//QB1AH8ABkAIwAAFyImNTQ2NyYmIyIGByc2NjMyFhURIycjBgY3MjY3NQYGFRQWvkRQhJMCIykfQCQ1L2s6X2Z4CgQfRwgZJRNOPB8MVz9OWA8hJxgVYR0kbnL+5DMcI3IXE1cKKx0YFwAAAAEAAAACC4VEp3A7Xw889QABA+gAAAAA2F2ghAAAAADdZi82/jf+xAhtA/EAAQADAAIAAAAAAAAAAQAAA9j+7wAACJj+N/43CG0AAQAAAAAAAAAAAAAAAAAAAAICsgBQAg8AKgAAACwAZAAAAAEAAAACAJAADABjAAcAAQAAAAAAAAAAAAAAAAAEAAN4nJyUz24bVRTGf05s0wrBAkVVuonugkWR6NhUSdU2K4fUikUUB48LQkJIE8/4jzKeGXkmDuEJWPMWvEVXPATPgVij+Xzs2AXRJoqSfHfu+fOdc75zgR3+ZptK9SHwRz0xXGGvfm54iwf1E8PbtOtbhqs8qf1puEZYmxuu83mtZ/gj3lZ/M/yA/epPhh+yW20b/phn1R3Dn2w7/jL8Kfu8XeAKvOBXwxV2yQxvscOPhrd5hMWsVHlE03CNz9gzXGcP6DOhIGZCwgjHkAkjrpgRkeMTMWPCkIgQR4cWMYW+JgRCjtF/fg3wKZgRKOKYAkeMT0xAztgi/iKvlHNlHOo0s7sWBWMCLuRxSUCCI2VESkLEpeIUFGS8okGDnIH4ZhTkeORMiPFImTGiQZc2p/QZMyHH0VakkplPypCCawLld2ZRdmZAREJurK5ICMXTiV8k7w6nOLpksl2PfLoR4Usc38m75JbK9is8/bo1Zpt5l2wC5upnrK7EurnWBMe6LfO2+Fa44BXuXv3ZZPL+HoX6XyjyBVeaf6hJJWKS4NwuLXwpyHePcRzp3MFXR76nQ58Turyhr3OLHj1anNGnw2v5dunh+JouZxzLoyO8uGtLMWf8gOMbOrIpY0fWn8XEIn4mM3Xn4jhTHVMy9bxk7qnWSBXefcLlDqUb6sjlM9AelZZO80u0ZwEjU0UmhlP1cqmN3PoXmiKmqqWc7e19uQ1z273lFt+QaodLtS44lZNbMHrfVL13NHOtH4+AkJQLWQxImdKg4Ea8zwm4IsZxrO6daEsKWiufMs+NVBIxFYMOieLMyPQ3MN34xn2woXtnb0ko/5Lp5aqq+2Rx6tXtjN6oe8s737ocrU2gYVNN19Q0ENfEtB9pp9b5+/LN9bqlPOWIlJjwXy/AMzya7HPAIWNlGOhmbq9DUy9Ek5ccqvpLIlkNpefIIhzg8ZwDDnjJ83f6uGTijItbcVnP3eKYI7ocflAVC/suR7xeffv/rL+LaVO1OJ6uTi/uPcUnd1DrF9qz2/eyp4mVk5hbtNutOCNgWnJxu+s1ucd4/wAAAP//AQAA///0t09ReJxiYGYAg//nGIwYsAAAAAAA//8BAAD//y8BAgMAAAA=");
|
||||
}]]></style><style type="text/css"><![CDATA[.shape {
|
||||
shape-rendering: geometricPrecision;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.connection {
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
}
|
||||
.blend {
|
||||
mix-blend-mode: multiply;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.d2-2173535777 .fill-N1{fill:#0A0F25;}
|
||||
.d2-2173535777 .fill-N2{fill:#676C7E;}
|
||||
.d2-2173535777 .fill-N3{fill:#9499AB;}
|
||||
.d2-2173535777 .fill-N4{fill:#CFD2DD;}
|
||||
.d2-2173535777 .fill-N5{fill:#DEE1EB;}
|
||||
.d2-2173535777 .fill-N6{fill:#EEF1F8;}
|
||||
.d2-2173535777 .fill-N7{fill:#FFFFFF;}
|
||||
.d2-2173535777 .fill-B1{fill:#0D32B2;}
|
||||
.d2-2173535777 .fill-B2{fill:#0D32B2;}
|
||||
.d2-2173535777 .fill-B3{fill:#E3E9FD;}
|
||||
.d2-2173535777 .fill-B4{fill:#E3E9FD;}
|
||||
.d2-2173535777 .fill-B5{fill:#EDF0FD;}
|
||||
.d2-2173535777 .fill-B6{fill:#F7F8FE;}
|
||||
.d2-2173535777 .fill-AA2{fill:#4A6FF3;}
|
||||
.d2-2173535777 .fill-AA4{fill:#EDF0FD;}
|
||||
.d2-2173535777 .fill-AA5{fill:#F7F8FE;}
|
||||
.d2-2173535777 .fill-AB4{fill:#EDF0FD;}
|
||||
.d2-2173535777 .fill-AB5{fill:#F7F8FE;}
|
||||
.d2-2173535777 .stroke-N1{stroke:#0A0F25;}
|
||||
.d2-2173535777 .stroke-N2{stroke:#676C7E;}
|
||||
.d2-2173535777 .stroke-N3{stroke:#9499AB;}
|
||||
.d2-2173535777 .stroke-N4{stroke:#CFD2DD;}
|
||||
.d2-2173535777 .stroke-N5{stroke:#DEE1EB;}
|
||||
.d2-2173535777 .stroke-N6{stroke:#EEF1F8;}
|
||||
.d2-2173535777 .stroke-N7{stroke:#FFFFFF;}
|
||||
.d2-2173535777 .stroke-B1{stroke:#0D32B2;}
|
||||
.d2-2173535777 .stroke-B2{stroke:#0D32B2;}
|
||||
.d2-2173535777 .stroke-B3{stroke:#E3E9FD;}
|
||||
.d2-2173535777 .stroke-B4{stroke:#E3E9FD;}
|
||||
.d2-2173535777 .stroke-B5{stroke:#EDF0FD;}
|
||||
.d2-2173535777 .stroke-B6{stroke:#F7F8FE;}
|
||||
.d2-2173535777 .stroke-AA2{stroke:#4A6FF3;}
|
||||
.d2-2173535777 .stroke-AA4{stroke:#EDF0FD;}
|
||||
.d2-2173535777 .stroke-AA5{stroke:#F7F8FE;}
|
||||
.d2-2173535777 .stroke-AB4{stroke:#EDF0FD;}
|
||||
.d2-2173535777 .stroke-AB5{stroke:#F7F8FE;}
|
||||
.d2-2173535777 .background-color-N1{background-color:#0A0F25;}
|
||||
.d2-2173535777 .background-color-N2{background-color:#676C7E;}
|
||||
.d2-2173535777 .background-color-N3{background-color:#9499AB;}
|
||||
.d2-2173535777 .background-color-N4{background-color:#CFD2DD;}
|
||||
.d2-2173535777 .background-color-N5{background-color:#DEE1EB;}
|
||||
.d2-2173535777 .background-color-N6{background-color:#EEF1F8;}
|
||||
.d2-2173535777 .background-color-N7{background-color:#FFFFFF;}
|
||||
.d2-2173535777 .background-color-B1{background-color:#0D32B2;}
|
||||
.d2-2173535777 .background-color-B2{background-color:#0D32B2;}
|
||||
.d2-2173535777 .background-color-B3{background-color:#E3E9FD;}
|
||||
.d2-2173535777 .background-color-B4{background-color:#E3E9FD;}
|
||||
.d2-2173535777 .background-color-B5{background-color:#EDF0FD;}
|
||||
.d2-2173535777 .background-color-B6{background-color:#F7F8FE;}
|
||||
.d2-2173535777 .background-color-AA2{background-color:#4A6FF3;}
|
||||
.d2-2173535777 .background-color-AA4{background-color:#EDF0FD;}
|
||||
.d2-2173535777 .background-color-AA5{background-color:#F7F8FE;}
|
||||
.d2-2173535777 .background-color-AB4{background-color:#EDF0FD;}
|
||||
.d2-2173535777 .background-color-AB5{background-color:#F7F8FE;}
|
||||
.d2-2173535777 .color-N1{color:#0A0F25;}
|
||||
.d2-2173535777 .color-N2{color:#676C7E;}
|
||||
.d2-2173535777 .color-N3{color:#9499AB;}
|
||||
.d2-2173535777 .color-N4{color:#CFD2DD;}
|
||||
.d2-2173535777 .color-N5{color:#DEE1EB;}
|
||||
.d2-2173535777 .color-N6{color:#EEF1F8;}
|
||||
.d2-2173535777 .color-N7{color:#FFFFFF;}
|
||||
.d2-2173535777 .color-B1{color:#0D32B2;}
|
||||
.d2-2173535777 .color-B2{color:#0D32B2;}
|
||||
.d2-2173535777 .color-B3{color:#E3E9FD;}
|
||||
.d2-2173535777 .color-B4{color:#E3E9FD;}
|
||||
.d2-2173535777 .color-B5{color:#EDF0FD;}
|
||||
.d2-2173535777 .color-B6{color:#F7F8FE;}
|
||||
.d2-2173535777 .color-AA2{color:#4A6FF3;}
|
||||
.d2-2173535777 .color-AA4{color:#EDF0FD;}
|
||||
.d2-2173535777 .color-AA5{color:#F7F8FE;}
|
||||
.d2-2173535777 .color-AB4{color:#EDF0FD;}
|
||||
.d2-2173535777 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker-d2-2173535777);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker-d2-2173535777);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark-d2-2173535777);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker-d2-2173535777);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark-d2-2173535777);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal-d2-2173535777);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal-d2-2173535777);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright-d2-2173535777);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}]]></style><g class="YQ=="><g class="shape" ><rect x="22.000000" y="12.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2; opacity:0.500000" /><rect x="12.000000" y="22.000000" width="53.000000" height="66.000000" stroke="#0D32B2" fill="#F7F8FE" class=" stroke-B1 fill-B6" style="stroke-width:2;" /></g><text x="38.500000" y="60.500000" fill="#0A0F25" class="text-bold fill-N1" style="text-anchor:middle;font-size:16px">a</text></g><mask id="d2-2173535777" maskUnits="userSpaceOnUse" x="11" y="10" width="66" height="79">
|
||||
<rect x="11" y="10" width="66" height="79" fill="white"></rect>
|
||||
<rect x="32.500000" y="44.500000" width="12" height="21" fill="rgba(0,0,0,0.75)"></rect>
|
||||
</mask></svg></svg>
|
||||
|
After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 40 KiB |
|
|
@ -1190,3 +1190,11 @@ customer4: |md
|
|||
| {
|
||||
shape: c4-person
|
||||
}
|
||||
|
||||
-- multiple opacity --
|
||||
a: {
|
||||
style: {
|
||||
multiple: true
|
||||
multiple.opacity: 0.5
|
||||
}
|
||||
}
|
||||
|
|
|
|||