Skip to content
Snippets Groups Projects
Commit 9448d05a authored by Johannes Mey's avatar Johannes Mey
Browse files

Merge branch 'feature/structure-view-support' into 'develop'

Resolve "Structure View Support"

Closes #3

See merge request !5
parents a944a191 927d293e
Branches
No related tags found
1 merge request!5Resolve "Structure View Support"
Pipeline #12053 passed
Showing
with 535 additions and 25 deletions
package org.jastadd.tooling.grammar.psi.impl;
package org.jastadd.tooling.common.psi.impl;
import com.intellij.extapi.psi.ASTWrapperPsiElement;
import com.intellij.lang.ASTNode;
import com.intellij.navigation.ItemPresentation;
import com.intellij.psi.PsiReference;
import com.intellij.psi.impl.source.resolve.reference.ReferenceProvidersRegistry;
import org.jastadd.tooling.grammar.psi.GrammarNamedElement;
import org.jastadd.tooling.common.psi.NamedElement;
import org.jastadd.tooling.util.JastAddIcons;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import javax.swing.*;
public abstract class GrammarNamedElementImpl extends ASTWrapperPsiElement implements GrammarNamedElement {
public abstract class NamedElementImpl extends ASTWrapperPsiElement implements NamedElement {
protected GrammarNamedElementImpl(@NotNull ASTNode node) {
protected NamedElementImpl(@NotNull ASTNode node) {
super(node);
}
......@@ -38,11 +38,6 @@ public abstract class GrammarNamedElementImpl extends ASTWrapperPsiElement imple
return getName();
}
@Override
public String getLocationString() {
return getContainingFile().getName();
}
@Override
public Icon getIcon(boolean unused) {
return JastAddIcons.FILE;
......
......@@ -2,12 +2,13 @@ package org.jastadd.tooling.grammar.psi.impl;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import org.jastadd.tooling.common.psi.impl.NamedElementImpl;
import org.jastadd.tooling.grammar.psi.GrammarComponentName;
import org.jastadd.tooling.grammar.psi.GrammarElementFactory;
import org.jastadd.tooling.grammar.psi.GrammarNamedElement;
import org.jastadd.tooling.common.psi.NamedElement;
import org.jetbrains.annotations.NotNull;
public class GrammarComponentNameImplExtension extends GrammarNamedElementImpl implements GrammarNamedElement {
public class GrammarComponentNameImplExtension extends NamedElementImpl implements NamedElement {
public GrammarComponentNameImplExtension(@NotNull ASTNode node) {
super(node);
......
......@@ -2,13 +2,14 @@ package org.jastadd.tooling.grammar.psi.impl;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import org.jastadd.tooling.common.psi.impl.NamedElementImpl;
import org.jastadd.tooling.grammar.parser.GrammarTypes;
import org.jastadd.tooling.grammar.psi.GrammarElementFactory;
import org.jastadd.tooling.grammar.psi.GrammarNamedElement;
import org.jastadd.tooling.common.psi.NamedElement;
import org.jastadd.tooling.grammar.psi.GrammarTypeName;
import org.jetbrains.annotations.NotNull;
public class GrammarTypeDeclImplExtension extends GrammarNamedElementImpl implements GrammarNamedElement {
public class GrammarTypeDeclImplExtension extends NamedElementImpl implements NamedElement {
public GrammarTypeDeclImplExtension(@NotNull ASTNode node) {
super(node);
......@@ -16,28 +17,28 @@ public class GrammarTypeDeclImplExtension extends GrammarNamedElementImpl implem
public String getName() {
// this finds the *first* ID, which is what we want
ASTNode keyNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (keyNode != null) {
return keyNode.getText();
ASTNode nameNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (nameNode != null) {
return nameNode.getText();
} else {
return null;
}
}
public PsiElement setName(@NotNull String newName) {
ASTNode keyNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (keyNode != null) {
ASTNode nameNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (nameNode != null) {
GrammarTypeName name = GrammarElementFactory.createTypeName(getProject(), newName);
ASTNode newKeyNode = name.getNode();
getNode().replaceChild(keyNode, newKeyNode);
getNode().replaceChild(nameNode, newKeyNode);
}
return this;
}
public PsiElement getNameIdentifier() {
ASTNode keyNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (keyNode != null) {
return keyNode.getPsi();
ASTNode nameNode = getNode().findChildByType(GrammarTypes.TYPE_NAME);
if (nameNode != null) {
return nameNode.getPsi();
} else {
return null;
}
......
......@@ -2,12 +2,13 @@ package org.jastadd.tooling.grammar.psi.impl;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import org.jastadd.tooling.common.psi.impl.NamedElementImpl;
import org.jastadd.tooling.grammar.psi.GrammarElementFactory;
import org.jastadd.tooling.grammar.psi.GrammarNamedElement;
import org.jastadd.tooling.common.psi.NamedElement;
import org.jastadd.tooling.grammar.psi.GrammarTypeName;
import org.jetbrains.annotations.NotNull;
public class GrammarTypeNameImplExtension extends GrammarNamedElementImpl implements GrammarNamedElement {
public class GrammarTypeNameImplExtension extends NamedElementImpl implements NamedElement {
public GrammarTypeNameImplExtension(@NotNull ASTNode node) {
super(node);
......
package org.jastadd.tooling.util;
import com.intellij.icons.AllIcons;
import com.intellij.openapi.util.IconLoader;
import javax.swing.*;
......@@ -7,6 +8,13 @@ import javax.swing.*;
public class JastAddIcons {
public static final Icon FILE = IconLoader.getIcon("/META-INF/pluginIcon.svg", JastAddIcons.class);
public static final Icon ASPECT = AllIcons.Actions.GroupByModuleGroup;
public static final Icon ATTRIBUTE = IconLoader.getIcon("/META-INF/attributeIcon.svg", JastAddIcons.class);
public static final Icon COL_ATTRIBUTE = ATTRIBUTE;
public static final Icon INH_ATTRIBUTE = ATTRIBUTE;
public static final Icon SYN_ATTRIBUTE = ATTRIBUTE;
public static final Icon INTERTYPE_DECL = IconLoader.getIcon("/META-INF/intertypeIcon.svg", JastAddIcons.class);
public static final Icon REWRITE = IconLoader.getIcon("/META-INF/rewriteIcon.svg", JastAddIcons.class);
private JastAddIcons() {
throw new IllegalStateException("Utility class");
......
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="aspectIcon.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="1.1571627"
inkscape:cy="6.6314325"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e9830a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:13.3333px;line-height:1.25;font-family:sans-serif"
x="2.9176779"
y="11.700195"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="2.9176779"
y="11.700195"
style="font-weight:normal;font-size:13.3333px;fill:#333333">{</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="aspectIcon_dark.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="63.551222"
inkscape:cx="6.781931"
inkscape:cy="9.7716453"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781"
showguides="true"
inkscape:guide-bbox="true">
<sodipodi:guide
position="9.1343785,8.2655725"
orientation="0,-1"
id="guide38338" />
</sodipodi:namedview>
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b66e17;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:12px;line-height:1.25;font-family:sans-serif"
x="3.1542871"
y="11.505499"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="3.1542871"
y="11.505499"
style="font-weight:bold;font-size:12px;fill:#333333">{</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="attributeIcon.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="7.9888734"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e9830a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="3.4162667"
y="11.919761"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="3.4162667"
y="11.919761"
style="font-size:14.6667px;fill:#333333">a</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="attributeIcon_dark.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="7.9888734"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b66e17;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="3.4162667"
y="11.919761"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="3.4162667"
y="11.919761"
style="font-size:14.6667px;fill:#333333">a</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="intertypeIcon.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="0.95688456"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e9830a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="5.9174619"
y="13.450501"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="5.9174619"
y="13.450501"
style="font-size:14.6667px;fill:#333333">i</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="intertypeIcon_dark.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="7.9888734"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b66e17;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="5.9174619"
y="13.450501"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="5.9174619"
y="13.450501"
style="font-size:14.6667px;fill:#333333">i</tspan></text>
</svg>
......@@ -91,7 +91,8 @@
<lang.formatter language="JastAddAspect" implementationClass="org.jastadd.tooling.aspect.AspectFormattingModelBuilder"/>
<lang.foldingBuilder language="JastAddAspect" implementationClass="org.jastadd.tooling.aspect.AspectFoldingBuilder"/>
FoldingBuilder"/>
<lang.psiStructureViewFactory language="JastAddAspect" implementationClass="org.jastadd.tooling.aspect.AspectStructureViewFactory"/>
</extensions>
<actions>
......
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="rewriteIcon.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="0.95688456"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e9830a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="4.8556738"
y="12.25705"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="4.8556738"
y="12.25705"
style="font-size:14.6667px;fill:#333333">r</tspan></text>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="16"
height="16"
id="svg4781"
version="1.1"
sodipodi:docname="rewriteIcon_dark.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview9"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="44.9375"
inkscape:cx="7.9888734"
inkscape:cy="6.3421419"
inkscape:window-width="2560"
inkscape:window-height="1406"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="1"
inkscape:current-layer="svg4781" />
<defs
id="defs4783" />
<metadata
id="metadata4786">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<path
id="path4837"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#b66e17;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.481132;marker:none;enable-background:accumulate"
d="m 6.4411958,16.885559 c 0.5447722,0.109891 1.0331311,0.141756 1.3374082,-0.01044 0.3042887,-0.151859 0.3667902,-0.189484 0.491665,-0.337386 0.1248749,-0.147913 0.1782498,-0.275616 0.2292498,-0.47546 0.051105,-0.19982 0.0227,-0.943587 0.016181,-1.025785 -0.00582,-0.08219 0.054364,-0.235268 0.078577,-0.293602 0.045284,-0.109197 0.1313824,-0.22252 0.1849784,-0.25195 0.093595,-0.04144 0.179018,-0.0752 0.4369863,0.02048 0.3234851,0.09686 1.5911975,0.548998 2.2623465,0.830226 0.526052,0.22904 0.945322,0.414577 1.095073,0.462365 0.238167,0.0816 0.301402,0.128181 0.419327,0.09499 0.117906,-0.03329 0.142919,-0.148332 0.194117,-0.311901 0.05122,-0.16357 0.730751,-1.980212 0.962667,-2.554844 0.232044,-0.574572 0.26181,-0.670939 0.334264,-0.89169 0.07195,-0.22095 -0.0058,-0.423191 -0.107561,-0.528416 -0.101514,-0.105237 -0.267153,-0.119794 -0.315999,-0.119002 -0.04877,6.41e-4 -0.372891,-0.02269 -0.537217,-0.04737 -0.223686,-0.03375 -0.547752,-0.139287 -0.655527,-0.18101 -0.275058,-0.106635 -0.559974,-0.307163 -0.700787,-0.617983 -0.103021,-0.227433 -0.147644,-0.406253 -0.138157,-0.7849528 0.0082,-0.320563 0.06577,-0.6496707 0.111753,-0.8327631 C 12.186764,8.8460525 12.258533,8.637792 12.356707,8.4456194 12.54242,8.080296 12.74189,7.7669621 12.973608,7.511124 13.100031,7.3426179 13.44716,7.1847753 13.684709,7.1689781 c 0.365218,-0.033294 0.585959,0.019673 0.922203,0.1538964 0.175071,0.07008 0.464204,0.1963634 0.646853,0.2525903 0.182627,0.056226 0.326593,0.042723 0.413297,-0.0035 0.09592,-0.050524 0.173301,-0.1164123 0.204407,-0.3461854 0.03097,-0.2297968 0.04971,-0.7044425 0.07997,-1.0833743 0.03015,-0.3789203 0.02223,-0.6733955 0.04481,-1.0415361 0.02282,-0.3681173 0.0093,-0.662313 0.01444,-0.9335175 0.0046,-0.2712044 0.01181,-0.5904754 0.0093,-0.7473519 -0.0024,-0.177784 -0.01874,-0.3547997 -0.102321,-0.4510722 -0.08347,-0.096272 -0.245315,-0.081838 -0.35934,-0.084748 -0.130044,-0.0035 -0.433424,0.00232 -0.704734,-0.00582 -0.271343,-0.00698 -0.809435,0.01397 -1.204454,-0.00465 -0.395009,-0.018743 -0.836954,-0.00582 -1.169822,-0.03795 C 12.14644,2.8043284 11.85747,2.7834904 11.654553,2.7626534 11.505081,2.7471704 11.38321,2.6708044 11.316237,2.573787 11.236437,2.4579591 11.254837,2.3256805 11.288937,2.1382225 11.323157,1.950823 11.520329,1.5099716 11.585962,1.3354237 11.663252,1.1288628 11.772849,0.7310838 11.744049,0.54373065 11.715254,0.35634738 11.616991,0.19770154 11.47158,0.03201265 11.33531,-0.123269 11.147735,-0.24834184 10.995747,-0.36100515 10.795287,-0.50958144 10.618981,-0.6172972 10.427635,-0.70976316 10.241446,-0.79963299 9.9811843,-0.8837521 9.8259609,-0.92928075 9.6739738,-0.97375004 9.4242938,-1.023225 9.2406542,-1.042433 c -0.2107285,-0.022002 -0.492771,6.403e-4 -0.6949665,0.031082 -0.130486,0.0201393 -0.4029943,0.1423134 -0.5222581,0.23211342 -0.1192522,0.08987 -0.2453844,0.2265839 -0.3167215,0.36367036 -0.07136,0.13707489 -0.1828013,0.38176079 -0.2306815,0.56386366 C 7.4281814,0.33042248 7.373235,0.67471033 7.3690441,0.82353109 7.3643877,0.97239851 7.3483228,1.1769456 7.243494,1.2872108 7.1781871,1.3557772 7.0516359,1.398384 6.9653632,1.407988 6.8701383,1.4084303 6.7679637,1.3898278 6.5267003,1.3039158 6.1376174,1.1743729 5.6926915,0.99998804 5.1824936,0.80069106 4.6722959,0.60137095 4.3230955,0.462189 3.8889029,0.30507974 3.6707706,0.22638533 3.3482635,0.10279096 3.2303383,0.08061459 3.1053704,0.056983 3.0085275,0.09109163 2.9432436,0.13334902 2.9061084,0.1687383 2.8475532,0.2305529 2.8048534,0.29172723 2.7641093,0.36064298 2.7014797,0.52358454 2.6304569,0.75298557 2.5403542,1.0367392 2.1057658,2.372832 1.8911375,2.9149847 1.6765207,3.4571143 1.5722624,3.8636358 1.5043827,4.1084381 1.436515,4.3532986 1.6941922,4.4257067 1.8043292,4.4844132 c 0.1314987,0.055644 0.2980025,0.1116395 0.5826409,0.1214055 0.2846616,0.00932 0.6104399,0.043073 0.8165703,0.1289028 0.2061302,0.085795 0.3818538,0.1608344 0.5123979,0.3111105 0.083584,0.1052359 0.1947569,0.2920188 0.2314965,0.5131314 0.026658,0.2052921 0.022934,0.9584063 -0.095808,1.3582109 C 3.7646683,7.2778298 3.535244,7.6994615 3.3771103,7.918269 3.1542633,8.237377 2.9069697,8.5054732 2.6634481,8.6547947 2.4479116,8.794873 2.0926927,8.8603661 1.6940873,8.6969358 1.429041,8.6067166 1.0476877,8.444229 0.77410849,8.3665357 0.5654636,8.3014616 0.28684376,8.350471 0.21196768,8.5036689 0.14677706,8.6296496 0.12978103,8.7543849 0.11418176,8.9353935 0.08379838,9.3750109 0.08042286,11.193875 0.03071459,12.267505 c -0.04109344,0.50602 0.00698,0.673197 0.04109344,0.751625 0.04190839,0.0986 0.43035102,0.08825 0.54059301,0.08615 0.21908685,1.28e-4 0.3680706,-0.0058 0.61573666,-0.007 0.6244676,0.0046 2.977708,-0.03214 3.228296,0.03457 0.08405,0.01676 0.1714862,0.04657 0.2308213,0.08195 0.060534,0.03877 0.09895,0.08591 0.1209755,0.158286 0.032363,0.103494 -0.046098,0.321587 -0.09639,0.460641 -0.050174,0.139076 -0.1643153,0.483121 -0.3364766,0.853216 -0.1721846,0.37012 -0.1224301,0.726526 -0.074037,0.835848 0.048427,0.109306 0.1762707,0.379829 0.4415382,0.617542 0.2652791,0.237701 0.5230147,0.356639 0.856418,0.502479 0.2867221,0.125422 0.7918212,0.236444 0.8408655,0.242335 z" />
<text
xml:space="preserve"
style="font-size:14.6667px;line-height:1.25;font-family:sans-serif"
x="4.8556738"
y="12.25705"
id="text3686"><tspan
sodipodi:role="line"
id="tspan3684"
x="4.8556738"
y="12.25705"
style="font-size:14.6667px;fill:#333333">r</tspan></text>
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment